com.github.pms1.tppt.p2.jaxb.artifact.ArtifactRepository 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:17 AM UTC
//
package com.github.pms1.tppt.p2.jaxb.artifact;
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 artifactRepository complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="artifactRepository">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="properties" type="{}properties"/>
* <element name="mappings" type="{}mappings"/>
* <element name="artifacts" type="{}artifacts" minOccurs="0"/>
* </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 = "artifactRepository", propOrder = {
})
public class ArtifactRepository
implements Repository
{
@XmlElement(required = true)
protected ArtifactProperties properties;
@XmlElement(required = true)
protected Mappings mappings;
protected Artifacts artifacts;
@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 ArtifactProperties }
*
*/
public ArtifactProperties getProperties() {
return properties;
}
/**
* Sets the value of the properties property.
*
* @param value
* allowed object is
* {@link ArtifactProperties }
*
*/
public void setProperties(ArtifactProperties value) {
this.properties = value;
}
/**
* Gets the value of the mappings property.
*
* @return
* possible object is
* {@link Mappings }
*
*/
public Mappings getMappings() {
return mappings;
}
/**
* Sets the value of the mappings property.
*
* @param value
* allowed object is
* {@link Mappings }
*
*/
public void setMappings(Mappings value) {
this.mappings = value;
}
/**
* Gets the value of the artifacts property.
*
* @return
* possible object is
* {@link Artifacts }
*
*/
public Artifacts getArtifacts() {
return artifacts;
}
/**
* Sets the value of the artifacts property.
*
* @param value
* allowed object is
* {@link Artifacts }
*
*/
public void setArtifacts(Artifacts value) {
this.artifacts = 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