org.ovirt.engine.sdk4.internal.containers.ExternalHostProviderContainer 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.util.List;
import org.ovirt.engine.sdk4.types.Certificate;
import org.ovirt.engine.sdk4.types.ExternalComputeResource;
import org.ovirt.engine.sdk4.types.ExternalDiscoveredHost;
import org.ovirt.engine.sdk4.types.ExternalHostGroup;
import org.ovirt.engine.sdk4.types.ExternalHostProvider;
import org.ovirt.engine.sdk4.types.Host;
public class ExternalHostProviderContainer extends ExternalProviderContainer implements ExternalHostProvider {
private List certificates;
private List computeResources;
private List discoveredHosts;
private List hostGroups;
private List hosts;
public List certificates() {
return makeUnmodifiableList(certificates);
}
public void certificates(List newCertificates) {
certificates = makeArrayList(newCertificates);
}
public boolean certificatesPresent() {
return certificates != null && !certificates.isEmpty();
}
public List computeResources() {
return makeUnmodifiableList(computeResources);
}
public void computeResources(List newComputeResources) {
computeResources = makeArrayList(newComputeResources);
}
public boolean computeResourcesPresent() {
return computeResources != null && !computeResources.isEmpty();
}
public List discoveredHosts() {
return makeUnmodifiableList(discoveredHosts);
}
public void discoveredHosts(List newDiscoveredHosts) {
discoveredHosts = makeArrayList(newDiscoveredHosts);
}
public boolean discoveredHostsPresent() {
return discoveredHosts != null && !discoveredHosts.isEmpty();
}
public List hostGroups() {
return makeUnmodifiableList(hostGroups);
}
public void hostGroups(List newHostGroups) {
hostGroups = makeArrayList(newHostGroups);
}
public boolean hostGroupsPresent() {
return hostGroups != null && !hostGroups.isEmpty();
}
public List hosts() {
return makeUnmodifiableList(hosts);
}
public void hosts(List newHosts) {
hosts = makeArrayList(newHosts);
}
public boolean hostsPresent() {
return hosts != null && !hosts.isEmpty();
}
}