org.ovirt.engine.sdk4.internal.containers.ApiContainer 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.Date;
import org.ovirt.engine.sdk4.types.Api;
import org.ovirt.engine.sdk4.types.ApiSummary;
import org.ovirt.engine.sdk4.types.ProductInfo;
import org.ovirt.engine.sdk4.types.SpecialObjects;
public class ApiContainer extends Container implements Api {
private ProductInfo productInfo;
private SpecialObjects specialObjects;
private ApiSummary summary;
private Date time;
public ProductInfo productInfo() {
return productInfo;
}
public void productInfo(ProductInfo newProductInfo) {
productInfo = newProductInfo;
}
public boolean productInfoPresent() {
return productInfo != null;
}
public SpecialObjects specialObjects() {
return specialObjects;
}
public void specialObjects(SpecialObjects newSpecialObjects) {
specialObjects = newSpecialObjects;
}
public boolean specialObjectsPresent() {
return specialObjects != null;
}
public ApiSummary summary() {
return summary;
}
public void summary(ApiSummary newSummary) {
summary = newSummary;
}
public boolean summaryPresent() {
return summary != null;
}
public Date time() {
if (time == null) {
return null;
}
else {
return new Date(time.getTime());
}
}
public void time(Date newTime) {
if (newTime == null) {
time = null;
}
else {
time = new Date(newTime.getTime());
}
}
public boolean timePresent() {
return time != null;
}
}