// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.01.12 at 02:07:12 PM CET // package org.visico.neighborhoodpss.plugin.domain; 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; /** * <p>Java class for plugin complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="plugin"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="className" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="author" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="jar" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="data" type="{http://www.example.org/indicatorPlugin/}data"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "plugin", propOrder = { "name", "className", "description", "author", "version", "jar", "data" }) @XmlRootElement(name="plugin") public class Plugin { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String className; @XmlElement(required = true) protected String description; @XmlElement(required = true) protected String author; @XmlElement(required = true) protected String version; @XmlElement(required = true) protected String jar; @XmlElement(required = true) protected Data data; /** * 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 className property. * * @return * possible object is * {@link String } * */ public String getClassName() { return className; } /** * Sets the value of the className property. * * @param value * allowed object is * {@link String } * */ public void setClassName(String value) { this.className = 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 author property. * * @return * possible object is * {@link String } * */ public String getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is * {@link String } * */ public void setAuthor(String value) { this.author = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the jar property. * * @return * possible object is * {@link String } * */ public String getJar() { return jar; } /** * Sets the value of the jar property. * * @param value * allowed object is * {@link String } * */ public void setJar(String value) { this.jar = value; } /** * Gets the value of the data property. * * @return * possible object is * {@link Data } * */ public Data getData() { return data; } /** * Sets the value of the data property. * * @param value * allowed object is * {@link Data } * */ public void setData(Data value) { this.data = value; } }