Yevgeny Zaspitsky has uploaded a new change for review. Change subject: engine: Add AddClusterOperationParameters class ......................................................................
engine: Add AddClusterOperationParameters class AddClusterOperationParameters is added in order to enable to pass managementNetworkId parameter to the command. Change-Id: I41d6bb8cc882c9aa8bb0e3193f9785a2daf1c889 Signed-off-by: Yevgeny Zaspitsky <[email protected]> --- A backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/AddClusterOperationParameters.java 1 file changed, 28 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/00/33300/11 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/AddClusterOperationParameters.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/AddClusterOperationParameters.java new file mode 100644 index 0000000..13c8277 --- /dev/null +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/AddClusterOperationParameters.java @@ -0,0 +1,28 @@ +package org.ovirt.engine.core.common.action; + +import org.ovirt.engine.core.common.businessentities.VDSGroup; +import org.ovirt.engine.core.compat.Guid; + +public class AddClusterOperationParameters extends VdsGroupOperationParameters { + + private static final long serialVersionUID = 1L; + + private Guid managementNetworkId; + + public AddClusterOperationParameters(VDSGroup cluster) { + this(cluster, null); + } + + public AddClusterOperationParameters(VDSGroup cluster, Guid managementNetworkId) { + super(cluster); + + this.managementNetworkId = managementNetworkId; + } + + public Guid getManagementNetworkId() { + return managementNetworkId; + } + + public AddClusterOperationParameters() { + } +} -- To view, visit http://gerrit.ovirt.org/33300 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I41d6bb8cc882c9aa8bb0e3193f9785a2daf1c889 Gerrit-PatchSet: 11 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Yevgeny Zaspitsky <[email protected]> Gerrit-Reviewer: Alona Kaplan <[email protected]> Gerrit-Reviewer: Moti Asayag <[email protected]> Gerrit-Reviewer: Yevgeny Zaspitsky <[email protected]> Gerrit-Reviewer: [email protected] Gerrit-Reviewer: oVirt Jenkins CI Server _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
