org.ovirt.engine.sdk.entities.KatelloErratum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ovirt-engine-sdk-java Show documentation
Show all versions of ovirt-engine-sdk-java Show documentation
This is Java SDK for the oVirt virtualization
//
// Copyright (c) 2012 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.
//
// *********************************************************************
// ********************* GENERATED CODE - DO NOT MODIFY ****************
// *********************************************************************
package org.ovirt.engine.sdk.entities;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for KatelloErratum complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="KatelloErratum">
* <complexContent>
* <extension base="{}BaseResource">
* <sequence>
* <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="issued" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="severity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="solution" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="summary" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element ref="{}packages" minOccurs="0"/>
* <element ref="{}host" minOccurs="0"/>
* <element ref="{}vm" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KatelloErratum", propOrder = {
"title",
"type",
"issued",
"severity",
"solution",
"summary",
"packages",
"host",
"vm"
})
public class KatelloErratum
extends BaseResource
{
protected String title;
protected String type;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar issued;
protected String severity;
protected String solution;
protected String summary;
protected Packages packages;
protected Host host;
protected VM vm;
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
public boolean isSetTitle() {
return (this.title!= null);
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
public boolean isSetType() {
return (this.type!= null);
}
/**
* Gets the value of the issued property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getIssued() {
return issued;
}
/**
* Sets the value of the issued property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setIssued(XMLGregorianCalendar value) {
this.issued = value;
}
public boolean isSetIssued() {
return (this.issued!= null);
}
/**
* Gets the value of the severity property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSeverity() {
return severity;
}
/**
* Sets the value of the severity property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSeverity(String value) {
this.severity = value;
}
public boolean isSetSeverity() {
return (this.severity!= null);
}
/**
* Gets the value of the solution property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSolution() {
return solution;
}
/**
* Sets the value of the solution property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSolution(String value) {
this.solution = value;
}
public boolean isSetSolution() {
return (this.solution!= null);
}
/**
* Gets the value of the summary property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSummary() {
return summary;
}
/**
* Sets the value of the summary property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSummary(String value) {
this.summary = value;
}
public boolean isSetSummary() {
return (this.summary!= null);
}
/**
* Gets the value of the packages property.
*
* @return
* possible object is
* {@link Packages }
*
*/
public Packages getPackages() {
return packages;
}
/**
* Sets the value of the packages property.
*
* @param value
* allowed object is
* {@link Packages }
*
*/
public void setPackages(Packages value) {
this.packages = value;
}
public boolean isSetPackages() {
return (this.packages!= null);
}
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link Host }
*
*/
public Host getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link Host }
*
*/
public void setHost(Host value) {
this.host = value;
}
public boolean isSetHost() {
return (this.host!= null);
}
/**
* Gets the value of the vm property.
*
* @return
* possible object is
* {@link VM }
*
*/
public VM getVm() {
return vm;
}
/**
* Sets the value of the vm property.
*
* @param value
* allowed object is
* {@link VM }
*
*/
public void setVm(VM value) {
this.vm = value;
}
public boolean isSetVm() {
return (this.vm!= null);
}
}