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

gov.nasa.arc.pds.xml.generated.PropertyMap 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 Map class defines a table
 *         consisting of a set of data elements and their values. The data
 *         elements in this table are considered to be locally defined and
 *         not subject to standards except for nomenclature
 *         rules.
 * 
 * 

Java class for Property_Map complex type. * *

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

 * <complexType name="Property_Map">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="identifier" type="{http://pds.nasa.gov/pds4/pds/v1}identifier" minOccurs="0"/>
 *         <element name="title" type="{http://pds.nasa.gov/pds4/pds/v1}title" minOccurs="0"/>
 *         <element name="model_object_id" type="{http://pds.nasa.gov/pds4/pds/v1}model_object_id"/>
 *         <element name="model_object_type" type="{http://pds.nasa.gov/pds4/pds/v1}model_object_type"/>
 *         <element name="instance_id" type="{http://pds.nasa.gov/pds4/pds/v1}instance_id" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="external_namespace_id" type="{http://pds.nasa.gov/pds4/pds/v1}external_namespace_id" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
 *         <element name="Property_Map_Entry" type="{http://pds.nasa.gov/pds4/pds/v1}Property_Map_Entry" maxOccurs="unbounded"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Property_Map", propOrder = { "identifier", "title", "modelObjectId", "modelObjectType", "instanceIds", "externalNamespaceIds", "description", "propertyMapEntries" }) public class PropertyMap { @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String identifier; @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String title; @XmlElement(name = "model_object_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String modelObjectId; @XmlElement(name = "model_object_type", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String modelObjectType; @XmlElement(name = "instance_id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List instanceIds; @XmlElement(name = "external_namespace_id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List externalNamespaceIds; protected String description; @XmlElement(name = "Property_Map_Entry", required = true) protected List propertyMapEntries; /** * 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 modelObjectId property. * * @return * possible object is * {@link String } * */ public String getModelObjectId() { return modelObjectId; } /** * Sets the value of the modelObjectId property. * * @param value * allowed object is * {@link String } * */ public void setModelObjectId(String value) { this.modelObjectId = value; } /** * Gets the value of the modelObjectType property. * * @return * possible object is * {@link String } * */ public String getModelObjectType() { return modelObjectType; } /** * Sets the value of the modelObjectType property. * * @param value * allowed object is * {@link String } * */ public void setModelObjectType(String value) { this.modelObjectType = value; } /** * Gets the value of the instanceIds 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 instanceIds property. * *

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

     *    getInstanceIds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getInstanceIds() { if (instanceIds == null) { instanceIds = new ArrayList(); } return this.instanceIds; } /** * Gets the value of the externalNamespaceIds 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 externalNamespaceIds property. * *

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

     *    getExternalNamespaceIds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getExternalNamespaceIds() { if (externalNamespaceIds == null) { externalNamespaceIds = new ArrayList(); } return this.externalNamespaceIds; } /** * 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 propertyMapEntries 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 propertyMapEntries property. * *

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

     *    getPropertyMapEntries().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy