org.appng.appngizer.model.xml.Repository 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.XmlSchemaType;
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="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="remoteName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="uri" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
* <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="strict" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="published" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="mode" type="{http://www.appng.org/schema/appngizer}repositoryMode"/>
* <element name="type" type="{http://www.appng.org/schema/appngizer}repositoryType"/>
* <element ref="{http://www.appng.org/schema/appngizer}packages" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"description",
"remoteName",
"uri",
"enabled",
"strict",
"published",
"mode",
"type",
"packages"
})
@XmlRootElement(name = "repository")
public class Repository
extends Nameable
{
protected String description;
protected String remoteName;
@XmlElement(required = true)
@XmlSchemaType(name = "anyURI")
protected String uri;
protected boolean enabled;
protected boolean strict;
protected boolean published;
@XmlElement(required = true)
protected RepositoryMode mode;
@XmlElement(required = true)
protected RepositoryType type;
protected Packages packages;
/**
* 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 remoteName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRemoteName() {
return remoteName;
}
/**
* Sets the value of the remoteName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRemoteName(String value) {
this.remoteName = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUri() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUri(String value) {
this.uri = value;
}
/**
* Gets the value of the enabled property.
*
*/
public boolean isEnabled() {
return enabled;
}
/**
* Sets the value of the enabled property.
*
*/
public void setEnabled(boolean value) {
this.enabled = value;
}
/**
* Gets the value of the strict property.
*
*/
public boolean isStrict() {
return strict;
}
/**
* Sets the value of the strict property.
*
*/
public void setStrict(boolean value) {
this.strict = value;
}
/**
* Gets the value of the published property.
*
*/
public boolean isPublished() {
return published;
}
/**
* Sets the value of the published property.
*
*/
public void setPublished(boolean value) {
this.published = value;
}
/**
* Gets the value of the mode property.
*
* @return
* possible object is
* {@link RepositoryMode }
*
*/
public RepositoryMode getMode() {
return mode;
}
/**
* Sets the value of the mode property.
*
* @param value
* allowed object is
* {@link RepositoryMode }
*
*/
public void setMode(RepositoryMode value) {
this.mode = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link RepositoryType }
*
*/
public RepositoryType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link RepositoryType }
*
*/
public void setType(RepositoryType value) {
this.type = value;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy