2016-03-24 19:24:12 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Wizards.PatchingWizard.PlanActions
|
|
|
|
|
{
|
|
|
|
|
public class PoolPatchMapping
|
|
|
|
|
{
|
2016-08-18 12:30:50 +02:00
|
|
|
|
public XenServerPatch XenServerPatch { get; private set; }
|
|
|
|
|
public Pool_patch Pool_patch { get; private set; }
|
2016-10-04 15:58:54 +02:00
|
|
|
|
public Pool_update Pool_update { get; private set; }
|
2016-08-18 12:30:50 +02:00
|
|
|
|
public Host MasterHost { get; private set; }
|
|
|
|
|
|
2016-10-04 15:58:54 +02:00
|
|
|
|
public PoolPatchMapping(XenServerPatch xenServerPatch, Pool_update pool_update, Host masterHost)
|
|
|
|
|
{
|
|
|
|
|
if (xenServerPatch == null)
|
|
|
|
|
throw new ArgumentNullException("xenServerPatch");
|
|
|
|
|
|
|
|
|
|
if (pool_update == null)
|
|
|
|
|
throw new ArgumentNullException("pool_update");
|
|
|
|
|
|
|
|
|
|
if (masterHost == null)
|
|
|
|
|
throw new ArgumentNullException("masterHost");
|
|
|
|
|
|
|
|
|
|
this.XenServerPatch = xenServerPatch;
|
|
|
|
|
this.Pool_update = pool_update;
|
|
|
|
|
this.MasterHost = masterHost;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-18 12:30:50 +02:00
|
|
|
|
public PoolPatchMapping(XenServerPatch xenServerPatch, Pool_patch pool_patch, Host masterHost)
|
|
|
|
|
{
|
|
|
|
|
if (xenServerPatch == null)
|
|
|
|
|
throw new ArgumentNullException("xenServerPatch");
|
|
|
|
|
|
|
|
|
|
if (pool_patch == null)
|
|
|
|
|
throw new ArgumentNullException("pool_patch");
|
|
|
|
|
|
|
|
|
|
if (masterHost == null)
|
|
|
|
|
throw new ArgumentNullException("masterHost");
|
|
|
|
|
|
|
|
|
|
this.XenServerPatch = xenServerPatch;
|
|
|
|
|
this.Pool_patch = pool_patch;
|
|
|
|
|
this.MasterHost = masterHost;
|
|
|
|
|
}
|
2016-04-28 16:56:45 +02:00
|
|
|
|
|
|
|
|
|
public override bool Equals(object obj)
|
|
|
|
|
{
|
|
|
|
|
var that = obj as PoolPatchMapping;
|
|
|
|
|
|
2016-08-18 18:55:44 +02:00
|
|
|
|
if (that == null)
|
|
|
|
|
return false;
|
|
|
|
|
|
2016-04-28 16:56:45 +02:00
|
|
|
|
return
|
2016-08-18 18:55:44 +02:00
|
|
|
|
this.XenServerPatch != null && this.XenServerPatch.Equals(that.XenServerPatch)
|
2016-10-04 15:58:54 +02:00
|
|
|
|
&& (this.Pool_patch != null && this.Pool_patch.Equals(that.Pool_patch) || this.Pool_update != null && this.Pool_update.Equals(that.Pool_update))
|
2016-08-18 18:55:44 +02:00
|
|
|
|
&& this.MasterHost != null && that.MasterHost != null & this.MasterHost.uuid == that.MasterHost.uuid;
|
2016-04-28 16:56:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int GetHashCode()
|
|
|
|
|
{
|
2016-08-02 15:30:20 +02:00
|
|
|
|
return XenServerPatch.GetHashCode() ^ Pool_patch.GetHashCode() ^ MasterHost.GetHashCode();
|
2016-04-28 16:56:45 +02:00
|
|
|
|
}
|
2016-03-24 19:24:12 +01:00
|
|
|
|
}
|
|
|
|
|
}
|