org.ovirt.engine.sdk4.internal.containers.VmPoolContainer Maven / Gradle / Ivy
/*
Copyright (c) 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.ovirt.engine.sdk4.internal.containers;
import java.lang.Boolean;
import java.math.BigInteger;
import java.util.List;
import org.ovirt.engine.sdk4.types.Cluster;
import org.ovirt.engine.sdk4.types.Display;
import org.ovirt.engine.sdk4.types.InstanceType;
import org.ovirt.engine.sdk4.types.Permission;
import org.ovirt.engine.sdk4.types.RngDevice;
import org.ovirt.engine.sdk4.types.Template;
import org.ovirt.engine.sdk4.types.Vm;
import org.ovirt.engine.sdk4.types.VmPool;
import org.ovirt.engine.sdk4.types.VmPoolType;
public class VmPoolContainer extends IdentifiedContainer implements VmPool {
private Display display;
private BigInteger maxUserVms;
private BigInteger prestartedVms;
private RngDevice rngDevice;
private BigInteger size;
private Boolean soundcardEnabled;
private Boolean stateful;
private VmPoolType type;
private Boolean useLatestTemplateVersion;
private Cluster cluster;
private InstanceType instanceType;
private List permissions;
private Template template;
private Vm vm;
public Display display() {
return display;
}
public void display(Display newDisplay) {
display = newDisplay;
}
public boolean displayPresent() {
return display != null;
}
public BigInteger maxUserVms() {
return maxUserVms;
}
public void maxUserVms(BigInteger newMaxUserVms) {
maxUserVms = newMaxUserVms;
}
public boolean maxUserVmsPresent() {
return maxUserVms != null;
}
public BigInteger prestartedVms() {
return prestartedVms;
}
public void prestartedVms(BigInteger newPrestartedVms) {
prestartedVms = newPrestartedVms;
}
public boolean prestartedVmsPresent() {
return prestartedVms != null;
}
public RngDevice rngDevice() {
return rngDevice;
}
public void rngDevice(RngDevice newRngDevice) {
rngDevice = newRngDevice;
}
public boolean rngDevicePresent() {
return rngDevice != null;
}
public BigInteger size() {
return size;
}
public void size(BigInteger newSize) {
size = newSize;
}
public boolean sizePresent() {
return size != null;
}
public boolean soundcardEnabled() {
return soundcardEnabled;
}
public void soundcardEnabled(boolean newSoundcardEnabled) {
soundcardEnabled = Boolean.valueOf(newSoundcardEnabled);
}
public void soundcardEnabled(Boolean newSoundcardEnabled) {
soundcardEnabled = newSoundcardEnabled;
}
public boolean soundcardEnabledPresent() {
return soundcardEnabled != null;
}
public boolean stateful() {
return stateful;
}
public void stateful(boolean newStateful) {
stateful = Boolean.valueOf(newStateful);
}
public void stateful(Boolean newStateful) {
stateful = newStateful;
}
public boolean statefulPresent() {
return stateful != null;
}
public VmPoolType type() {
return type;
}
public void type(VmPoolType newType) {
type = newType;
}
public boolean typePresent() {
return type != null;
}
public boolean useLatestTemplateVersion() {
return useLatestTemplateVersion;
}
public void useLatestTemplateVersion(boolean newUseLatestTemplateVersion) {
useLatestTemplateVersion = Boolean.valueOf(newUseLatestTemplateVersion);
}
public void useLatestTemplateVersion(Boolean newUseLatestTemplateVersion) {
useLatestTemplateVersion = newUseLatestTemplateVersion;
}
public boolean useLatestTemplateVersionPresent() {
return useLatestTemplateVersion != null;
}
public Cluster cluster() {
return cluster;
}
public void cluster(Cluster newCluster) {
cluster = newCluster;
}
public boolean clusterPresent() {
return cluster != null;
}
public InstanceType instanceType() {
return instanceType;
}
public void instanceType(InstanceType newInstanceType) {
instanceType = newInstanceType;
}
public boolean instanceTypePresent() {
return instanceType != null;
}
public List permissions() {
return makeUnmodifiableList(permissions);
}
public void permissions(List newPermissions) {
permissions = makeArrayList(newPermissions);
}
public boolean permissionsPresent() {
return permissions != null && !permissions.isEmpty();
}
public Template template() {
return template;
}
public void template(Template newTemplate) {
template = newTemplate;
}
public boolean templatePresent() {
return template != null;
}
public Vm vm() {
return vm;
}
public void vm(Vm newVm) {
vm = newVm;
}
public boolean vmPresent() {
return vm != null;
}
}