All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.pms1.tppt.p2.jaxb.metadata.MetadataRepository 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.metadata;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import com.github.pms1.tppt.p2.jaxb.Repository;


/**
 * 

Java class for metadataRepository complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="metadataRepository">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="properties" type="{}properties" minOccurs="0"/>
 *         <element name="references" type="{}references" minOccurs="0"/>
 *         <element name="units" type="{}units" 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="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "metadataRepository", propOrder = { }) public class MetadataRepository implements Repository { protected MetadataProperties properties; protected References references; protected Units units; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "type", required = true) protected String type; @XmlAttribute(name = "version", required = true) protected String version; @XmlAttribute(name = "description") protected String description; /** * Gets the value of the properties property. * * @return * possible object is * {@link MetadataProperties } * */ public MetadataProperties getProperties() { return properties; } /** * Sets the value of the properties property. * * @param value * allowed object is * {@link MetadataProperties } * */ public void setProperties(MetadataProperties value) { this.properties = value; } /** * Gets the value of the references property. * * @return * possible object is * {@link References } * */ public References getReferences() { return references; } /** * Sets the value of the references property. * * @param value * allowed object is * {@link References } * */ public void setReferences(References value) { this.references = value; } /** * Gets the value of the units property. * * @return * possible object is * {@link Units } * */ public Units getUnits() { return units; } /** * Sets the value of the units property. * * @param value * allowed object is * {@link Units } * */ public void setUnits(Units value) { this.units = 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 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 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