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

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

There is a newer version: 1.24.5
Show newest version
//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://www.appng.org/schema/appngizer}nameable">
 *       <sequence>
 *         <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="release" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="snapshot" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="installed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="type" type="{http://www.appng.org/schema/appngizer}packageType"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "displayName", "version", "timestamp", "release", "snapshot", "installed", "type" }) @XmlRootElement(name = "package") public class Package extends Nameable { @XmlElement(required = true) protected String displayName; protected String version; protected String timestamp; protected String release; protected String snapshot; protected boolean installed; @XmlElement(required = true) protected PackageType type; /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * 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 timestamp property. * * @return * possible object is * {@link String } * */ public String getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value * allowed object is * {@link String } * */ public void setTimestamp(String value) { this.timestamp = value; } /** * Gets the value of the release property. * * @return * possible object is * {@link String } * */ public String getRelease() { return release; } /** * Sets the value of the release property. * * @param value * allowed object is * {@link String } * */ public void setRelease(String value) { this.release = value; } /** * Gets the value of the snapshot property. * * @return * possible object is * {@link String } * */ public String getSnapshot() { return snapshot; } /** * Sets the value of the snapshot property. * * @param value * allowed object is * {@link String } * */ public void setSnapshot(String value) { this.snapshot = value; } /** * Gets the value of the installed property. * */ public boolean isInstalled() { return installed; } /** * Sets the value of the installed property. * */ public void setInstalled(boolean value) { this.installed = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link PackageType } * */ public PackageType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link PackageType } * */ public void setType(PackageType value) { this.type = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy