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

gov.nasa.arc.pds.xml.generated.PropertyMaps Maven / Gradle / Ivy

There is a newer version: 2.8.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.4 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.10 at 07:24:03 AM GMT 
//


package gov.nasa.arc.pds.xml.generated;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * The Property Maps class defines a collection of
 *         one or more related Property Maps.
 * 
 * 

Java class for Property_Maps complex type. * *

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

 * <complexType name="Property_Maps">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="identifier" type="{http://pds.nasa.gov/pds4/pds/v1}identifier"/>
 *         <element name="title" type="{http://pds.nasa.gov/pds4/pds/v1}title" minOccurs="0"/>
 *         <element name="namespace_id" type="{http://pds.nasa.gov/pds4/pds/v1}namespace_id"/>
 *         <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
 *         <element name="external_property_map_id" type="{http://pds.nasa.gov/pds4/pds/v1}external_property_map_id" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Property_Map" type="{http://pds.nasa.gov/pds4/pds/v1}Property_Map" maxOccurs="unbounded"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Property_Maps", propOrder = { "identifier", "title", "namespaceId", "description", "externalPropertyMapIds", "propertyMaps" }) public class PropertyMaps { @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String identifier; @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String title; @XmlElement(name = "namespace_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String namespaceId; protected String description; @XmlElement(name = "external_property_map_id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List externalPropertyMapIds; @XmlElement(name = "Property_Map", required = true) protected List propertyMaps; /** * Gets the value of the identifier property. * * @return * possible object is * {@link String } * */ public String getIdentifier() { return identifier; } /** * Sets the value of the identifier property. * * @param value * allowed object is * {@link String } * */ public void setIdentifier(String value) { this.identifier = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the namespaceId property. * * @return * possible object is * {@link String } * */ public String getNamespaceId() { return namespaceId; } /** * Sets the value of the namespaceId property. * * @param value * allowed object is * {@link String } * */ public void setNamespaceId(String value) { this.namespaceId = 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 externalPropertyMapIds property. * *

* 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 set method for the externalPropertyMapIds property. * *

* For example, to add a new item, do as follows: *

     *    getExternalPropertyMapIds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getExternalPropertyMapIds() { if (externalPropertyMapIds == null) { externalPropertyMapIds = new ArrayList(); } return this.externalPropertyMapIds; } /** * Gets the value of the propertyMaps property. * *

* 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 set method for the propertyMaps property. * *

* For example, to add a new item, do as follows: *

     *    getPropertyMaps().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PropertyMap } * * */ public List getPropertyMaps() { if (propertyMaps == null) { propertyMaps = new ArrayList(); } return this.propertyMaps; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy