com.github.pms1.tppt.p2.jaxb.composite.CompositeRepository Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.06.16 at 06:11:18 AM UTC
//
package com.github.pms1.tppt.p2.jaxb.composite;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.github.pms1.tppt.p2.jaxb.Repository;
import com.github.pms1.tppt.p2.jaxb.VersionAdapter;
import org.osgi.framework.Version;
/**
* Java class for compositeRepository complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="compositeRepository">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="properties" type="{}properties"/>
* <element name="children" type="{}children"/>
* </all>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="version" use="required" type="{}versionType" />
* <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "compositeRepository", propOrder = {
})
public class CompositeRepository
implements Repository
{
@XmlElement(required = true)
protected CompositeProperties properties;
@XmlElement(required = true)
protected Children children;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "type", required = true)
protected String type;
@XmlAttribute(name = "version", required = true)
@XmlJavaTypeAdapter(VersionAdapter.class)
protected Version version;
@XmlAttribute(name = "description")
protected String description;
/**
* Gets the value of the properties property.
*
* @return
* possible object is
* {@link CompositeProperties }
*
*/
public CompositeProperties getProperties() {
return properties;
}
/**
* Sets the value of the properties property.
*
* @param value
* allowed object is
* {@link CompositeProperties }
*
*/
public void setProperties(CompositeProperties value) {
this.properties = value;
}
/**
* Gets the value of the children property.
*
* @return
* possible object is
* {@link Children }
*
*/
public Children getChildren() {
return children;
}
/**
* Sets the value of the children property.
*
* @param value
* allowed object is
* {@link Children }
*
*/
public void setChildren(Children value) {
this.children = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public Version getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(Version value) {
this.version = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy