org.plasma.runtime.Artifact 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.03.20 at 04:25:57 PM MST
//
package org.plasma.runtime;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Artifact complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Artifact">
* <complexContent>
* <extension base="{http://www.plasma.org/runtime}Configuration">
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="urn" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="namespaceUri" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Artifact")
@XmlRootElement(name = "Artifact")
public class Artifact
extends Configuration
{
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "urn", required = true)
protected String urn;
@XmlAttribute(name = "namespaceUri", required = true)
protected String namespaceUri;
/**
* 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 urn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrn() {
return urn;
}
/**
* Sets the value of the urn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrn(String value) {
this.urn = value;
}
/**
* Gets the value of the namespaceUri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespaceUri() {
return namespaceUri;
}
/**
* Sets the value of the namespaceUri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespaceUri(String value) {
this.namespaceUri = value;
}
}