All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.appng.appngizer.model.xml.SchemaVersion Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.07.28 at 12:11:00 PM CEST 
//


package org.appng.appngizer.model.xml;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for schemaVersion complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="schemaVersion">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="state" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="checksum" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="installed" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "schemaVersion") public class SchemaVersion { @XmlAttribute(name = "version") protected String version; @XmlAttribute(name = "state") protected String state; @XmlAttribute(name = "description") protected String description; @XmlAttribute(name = "checksum") protected Integer checksum; @XmlAttribute(name = "installed") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar installed; /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the checksum property. * * @return * possible object is * {@link Integer } * */ public Integer getChecksum() { return checksum; } /** * Sets the value of the checksum property. * * @param value * allowed object is * {@link Integer } * */ public void setChecksum(Integer value) { this.checksum = value; } /** * Gets the value of the installed property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getInstalled() { return installed; } /** * Sets the value of the installed property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setInstalled(XMLGregorianCalendar value) { this.installed = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy