mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-20 23:46:03 +01:00
f026384f37
- show new NIC column on the Location page (visible for FCoE only) - display the summary page - resource strings for default SR name and the blurb on the first page in the wizard Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
26 lines
581 B
C#
26 lines
581 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 LvmOhbaSrDescriptor CreateSrDescriptor(FibreChannelDevice device)
|
|
{
|
|
return new FcoeSrDescriptor(device);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|