org.appng.appngizer.model.xml.Application 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.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.appng.org/schema/appngizer}stringNotBlank"/>
* <element name="core" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="fileBased" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="hidden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="version" type="{http://www.appng.org/schema/appngizer}stringNotBlank"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"displayName",
"core",
"fileBased",
"hidden",
"version"
})
@XmlRootElement(name = "application")
public class Application
extends Nameable
{
@XmlElement(required = true)
protected String displayName;
protected boolean core;
protected boolean fileBased;
protected boolean hidden;
@XmlElement(required = true)
protected String version;
/**
* 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 core property.
*
*/
public boolean isCore() {
return core;
}
/**
* Sets the value of the core property.
*
*/
public void setCore(boolean value) {
this.core = value;
}
/**
* Gets the value of the fileBased property.
*
*/
public boolean isFileBased() {
return fileBased;
}
/**
* Sets the value of the fileBased property.
*
*/
public void setFileBased(boolean value) {
this.fileBased = value;
}
/**
* Gets the value of the hidden property.
*
*/
public boolean isHidden() {
return hidden;
}
/**
* Sets the value of the hidden property.
*
*/
public void setHidden(boolean value) {
this.hidden = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy