xenadmin/XenAdmin/Wizards/NewSRWizard_Pages/Frontends/LVMoFCoE.cs
Mihaela Stoica f026384f37 CP-12314: FCoE in the SR wizard
- 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>
2015-06-29 14:44:35 +01:00

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
}
}