org.appng.appngizer.model.xml.Site 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="host" type="{http://www.appng.org/schema/appngizer}stringNotBlank"/>
* <element name="domain" type="{http://www.appng.org/schema/appngizer}stringNotBlank"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="createRepositoryPath" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"host",
"domain",
"description",
"active",
"createRepositoryPath"
})
@XmlRootElement(name = "site")
public class Site
extends Nameable
{
@XmlElement(required = true)
protected String host;
@XmlElement(required = true)
protected String domain;
protected String description;
protected boolean active;
protected boolean createRepositoryPath;
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHost(String value) {
this.host = value;
}
/**
* Gets the value of the domain property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDomain() {
return domain;
}
/**
* Sets the value of the domain property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDomain(String value) {
this.domain = 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 active property.
*
*/
public boolean isActive() {
return active;
}
/**
* Sets the value of the active property.
*
*/
public void setActive(boolean value) {
this.active = value;
}
/**
* Gets the value of the createRepositoryPath property.
*
*/
public boolean isCreateRepositoryPath() {
return createRepositoryPath;
}
/**
* Sets the value of the createRepositoryPath property.
*
*/
public void setCreateRepositoryPath(boolean value) {
this.createRepositoryPath = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy