/* * The MIT License (MIT) * * Copyright (c) 2001-2015 Aspose Pty Ltd. * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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.09.26 at 03:01:37 PM PKT // package com.aspose.maven.apis.artifacts; import javax.xml.bind.annotation.*; import java.util.ArrayList; import java.util.List; /** * <p>Java class for anonymous complex type. * <p/> * <p>The following schema fragment specifies the expected content contained within this class. * <p/> * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="groupId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="artifactId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="versioning"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="latest" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="release" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="versions"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="lastUpdated" type="{http://www.w3.org/2001/XMLSchema}long"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "groupId", "artifactId", "version", "versioning", "classifier" }) @XmlRootElement(name = "metadata") public class Metadata { @XmlElement(required = true) protected String groupId; @XmlElement(required = true) protected String artifactId; @XmlElement(required = true) protected String version; @XmlElement(required = true) protected Metadata.Versioning versioning; protected String classifier; /** * Gets the value of the groupId property. * * @return possible object is * {@link String } */ public String getGroupId() { return groupId; } /** * Sets the value of the groupId property. * * @param value allowed object is * {@link String } */ public void setGroupId(String value) { this.groupId = value; } /** * Gets the value of the artifactId property. * * @return possible object is * {@link String } */ public String getArtifactId() { return artifactId; } /** * Sets the value of the artifactId property. * * @param value allowed object is * {@link String } */ public void setArtifactId(String value) { this.artifactId = 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 versioning property. * * @return possible object is * {@link Metadata.Versioning } */ public Metadata.Versioning getVersioning() { return versioning; } /** * Sets the value of the versioning property. * * @param value allowed object is * {@link Metadata.Versioning } */ public void setVersioning(Metadata.Versioning value) { this.versioning = value; } /** * <p>Java class for anonymous complex type. * <p/> * <p>The following schema fragment specifies the expected content contained within this class. * <p/> * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="latest" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="release" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="versions"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="lastUpdated" type="{http://www.w3.org/2001/XMLSchema}long"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "latest", "release", "versions", "lastUpdated" }) public static class Versioning { @XmlElement(required = true) protected String latest; @XmlElement(required = true) protected String release; @XmlElement(required = true) protected Metadata.Versioning.Versions versions; protected long lastUpdated; /** * Gets the value of the latest property. * * @return possible object is * {@link String } */ public String getLatest() { return latest; } /** * Sets the value of the latest property. * * @param value allowed object is * {@link String } */ public void setLatest(String value) { this.latest = value; } /** * Gets the value of the release property. * * @return possible object is * {@link String } */ public String getRelease() { return release; } /** * Sets the value of the release property. * * @param value allowed object is * {@link String } */ public void setRelease(String value) { this.release = value; } /** * Gets the value of the versions property. * * @return possible object is * {@link Metadata.Versioning.Versions } */ public Metadata.Versioning.Versions getVersions() { return versions; } /** * Sets the value of the versions property. * * @param value allowed object is * {@link Metadata.Versioning.Versions } */ public void setVersions(Metadata.Versioning.Versions value) { this.versions = value; } /** * Gets the value of the lastUpdated property. */ public long getLastUpdated() { return lastUpdated; } /** * Sets the value of the lastUpdated property. */ public void setLastUpdated(long value) { this.lastUpdated = value; } /** * <p>Java class for anonymous complex type. * <p/> * <p>The following schema fragment specifies the expected content contained within this class. * <p/> * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "version" }) public static class Versions { protected List<String> version; /** * Gets the value of the version property. * <p/> * <p/> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the version property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getVersion().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link String } */ public List<String> getVersion() { if (version == null) { version = new ArrayList<String>(); } return this.version; } } } /** * Gets the value of the classifier property. * * @return possible object is * {@link String } */ public String getClassifier() { return classifier; } /** * Sets the value of the version property. * * @param value allowed object is * {@link String } */ public void setClassifier(String value) { this.classifier = value; } }