mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-21 07:56:03 +01:00
28 lines
683 B
C#
28 lines
683 B
C#
using XenAPI;
|
|
|
|
namespace XenAdmin.Wizards.NewSRWizard_Pages.Frontends
|
|
{
|
|
public partial class LVMoFCoE : LVMoHBA
|
|
{
|
|
public LVMoFCoE()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
#region LVMoHBA overrides
|
|
|
|
public override SR.SRTypes SrType { get { return SR.SRTypes.lvmofcoe; } }
|
|
|
|
public override bool ShowNicColumn { get { return true; } }
|
|
|
|
public override string HelpID { get { return "Location_FCOE"; } }
|
|
|
|
public override LvmOhbaSrDescriptor CreateSrDescriptor(FibreChannelDevice device)
|
|
{
|
|
return new FcoeSrDescriptor(device);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|