Tomas Jelinek has uploaded a new change for review. Change subject: WIP: Added missing parts for the instance types ......................................................................
WIP: Added missing parts for the instance types WIP Change-Id: Ia78d33c5d91217884568a87e22868749ce4a9316 Signed-off-by: Tomas Jelinek <[email protected]> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/InstanceType.java 1 file changed, 23 insertions(+), 4 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/73/24473/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/InstanceType.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/InstanceType.java index bcfaf19..81d6fb4 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/InstanceType.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/InstanceType.java @@ -1,18 +1,17 @@ package org.ovirt.engine.core.common.businessentities; -import java.util.List; - import org.ovirt.engine.core.common.businessentities.network.VmNetworkInterface; import org.ovirt.engine.core.compat.Guid; + +import java.util.List; /** * This interface describe InstanceType * when creating an instance from instance type * the instance type fields override the vm fields. - * + * <p/> * NOTE: the following devices are part of instance type and not represented here: * Smart card, Payload, Balloon, Sound card - * */ public interface InstanceType extends BusinessEntity<Guid>, Nameable { @@ -70,6 +69,26 @@ void setTunnelMigration(Boolean value); + void setSingleQxlPci(boolean value); + + boolean getSingleQxlPci(); + + boolean isSmartcardEnabled(); + + void setSmartcardEnabled(boolean smartcardEnabled); + + public SsoMethod getSsoMethod(); + + public void setSsoMethod(SsoMethod ssoMethod); + + public MigrationSupport getMigrationSupport(); + + public void setMigrationSupport(MigrationSupport migrationSupport); + + public void setMigrationDowntime(Integer migrationDowntime); + + public Integer getMigrationDowntime(); + // TODO: these should be add as well // userdefined_properties // predefined_properties -- To view, visit http://gerrit.ovirt.org/24473 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ia78d33c5d91217884568a87e22868749ce4a9316 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Tomas Jelinek <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
