org.ovirt.engine.sdk4.internal.containers.StepContainer 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.Date;
import java.util.List;
import org.ovirt.engine.sdk4.types.ExternalSystemType;
import org.ovirt.engine.sdk4.types.Host;
import org.ovirt.engine.sdk4.types.Job;
import org.ovirt.engine.sdk4.types.Statistic;
import org.ovirt.engine.sdk4.types.Step;
import org.ovirt.engine.sdk4.types.StepEnum;
import org.ovirt.engine.sdk4.types.StepStatus;
public class StepContainer extends IdentifiedContainer implements Step {
private Date endTime;
private Boolean external;
private ExternalSystemType externalType;
private BigInteger number;
private BigInteger progress;
private Date startTime;
private StepStatus status;
private StepEnum type;
private Host executionHost;
private Job job;
private Step parentStep;
private List statistics;
public Date endTime() {
if (endTime == null) {
return null;
}
else {
return new Date(endTime.getTime());
}
}
public void endTime(Date newEndTime) {
if (newEndTime == null) {
endTime = null;
}
else {
endTime = new Date(newEndTime.getTime());
}
}
public boolean endTimePresent() {
return endTime != null;
}
public boolean external() {
return external;
}
public void external(boolean newExternal) {
external = Boolean.valueOf(newExternal);
}
public void external(Boolean newExternal) {
external = newExternal;
}
public boolean externalPresent() {
return external != null;
}
public ExternalSystemType externalType() {
return externalType;
}
public void externalType(ExternalSystemType newExternalType) {
externalType = newExternalType;
}
public boolean externalTypePresent() {
return externalType != null;
}
public BigInteger number() {
return number;
}
public void number(BigInteger newNumber) {
number = newNumber;
}
public boolean numberPresent() {
return number != null;
}
public BigInteger progress() {
return progress;
}
public void progress(BigInteger newProgress) {
progress = newProgress;
}
public boolean progressPresent() {
return progress != null;
}
public Date startTime() {
if (startTime == null) {
return null;
}
else {
return new Date(startTime.getTime());
}
}
public void startTime(Date newStartTime) {
if (newStartTime == null) {
startTime = null;
}
else {
startTime = new Date(newStartTime.getTime());
}
}
public boolean startTimePresent() {
return startTime != null;
}
public StepStatus status() {
return status;
}
public void status(StepStatus newStatus) {
status = newStatus;
}
public boolean statusPresent() {
return status != null;
}
public StepEnum type() {
return type;
}
public void type(StepEnum newType) {
type = newType;
}
public boolean typePresent() {
return type != null;
}
public Host executionHost() {
return executionHost;
}
public void executionHost(Host newExecutionHost) {
executionHost = newExecutionHost;
}
public boolean executionHostPresent() {
return executionHost != null;
}
public Job job() {
return job;
}
public void job(Job newJob) {
job = newJob;
}
public boolean jobPresent() {
return job != null;
}
public Step parentStep() {
return parentStep;
}
public void parentStep(Step newParentStep) {
parentStep = newParentStep;
}
public boolean parentStepPresent() {
return parentStep != null;
}
public List statistics() {
return makeUnmodifiableList(statistics);
}
public void statistics(List newStatistics) {
statistics = makeArrayList(newStatistics);
}
public boolean statisticsPresent() {
return statistics != null && !statistics.isEmpty();
}
}