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

gov.nasa.arc.pds.xml.generated.IngestLDD 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.XmlRootElement;
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 Ingest_LDD class provides a form for
 *         collecting class and attribute definitions.
 * 
 * 

Java class for Ingest_LDD complex type. * *

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

 * <complexType name="Ingest_LDD">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://pds.nasa.gov/pds4/pds/v1}name"/>
 *         <element name="ldd_version_id" type="{http://pds.nasa.gov/pds4/pds/v1}ldd_version_id"/>
 *         <element name="dictionary_type" type="{http://pds.nasa.gov/pds4/pds/v1}dictionary_type"/>
 *         <element name="full_name" type="{http://pds.nasa.gov/pds4/pds/v1}full_name"/>
 *         <element name="steward_id" type="{http://pds.nasa.gov/pds4/pds/v1}steward_id"/>
 *         <element name="namespace_id" type="{http://pds.nasa.gov/pds4/pds/v1}namespace_id"/>
 *         <element name="external_property_maps_id" type="{http://pds.nasa.gov/pds4/pds/v1}external_property_maps_id" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="comment" type="{http://pds.nasa.gov/pds4/pds/v1}comment" minOccurs="0"/>
 *         <element name="last_modification_date_time" type="{http://pds.nasa.gov/pds4/pds/v1}last_modification_date_time"/>
 *         <element name="DD_Attribute" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Attribute" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="DD_Class" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Class" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="DD_Rule" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Rule" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Property_Maps" type="{http://pds.nasa.gov/pds4/pds/v1}Property_Maps" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Ingest_LDD", propOrder = { "name", "lddVersionId", "dictionaryType", "fullName", "stewardId", "namespaceId", "externalPropertyMapsIds", "comment", "lastModificationDateTime", "ddAttributes", "ddClasses", "ddRules", "propertyMaps" }) @XmlRootElement(name = "Ingest_LDD") public class IngestLDD { @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String name; @XmlElement(name = "ldd_version_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String lddVersionId; @XmlElement(name = "dictionary_type", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String dictionaryType; @XmlElement(name = "full_name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String fullName; @XmlElement(name = "steward_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String stewardId; @XmlElement(name = "namespace_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String namespaceId; @XmlElement(name = "external_property_maps_id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List externalPropertyMapsIds; protected String comment; @XmlElement(name = "last_modification_date_time", required = true) protected String lastModificationDateTime; @XmlElement(name = "DD_Attribute") protected List ddAttributes; @XmlElement(name = "DD_Class") protected List ddClasses; @XmlElement(name = "DD_Rule") protected List ddRules; @XmlElement(name = "Property_Maps") protected List propertyMaps; /** * 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 lddVersionId property. * * @return * possible object is * {@link String } * */ public String getLddVersionId() { return lddVersionId; } /** * Sets the value of the lddVersionId property. * * @param value * allowed object is * {@link String } * */ public void setLddVersionId(String value) { this.lddVersionId = value; } /** * Gets the value of the dictionaryType property. * * @return * possible object is * {@link String } * */ public String getDictionaryType() { return dictionaryType; } /** * Sets the value of the dictionaryType property. * * @param value * allowed object is * {@link String } * */ public void setDictionaryType(String value) { this.dictionaryType = value; } /** * Gets the value of the fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = value; } /** * Gets the value of the stewardId property. * * @return * possible object is * {@link String } * */ public String getStewardId() { return stewardId; } /** * Sets the value of the stewardId property. * * @param value * allowed object is * {@link String } * */ public void setStewardId(String value) { this.stewardId = 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 externalPropertyMapsIds 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 externalPropertyMapsIds property. * *

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

     *    getExternalPropertyMapsIds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getExternalPropertyMapsIds() { if (externalPropertyMapsIds == null) { externalPropertyMapsIds = new ArrayList(); } return this.externalPropertyMapsIds; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the lastModificationDateTime property. * * @return * possible object is * {@link String } * */ public String getLastModificationDateTime() { return lastModificationDateTime; } /** * Sets the value of the lastModificationDateTime property. * * @param value * allowed object is * {@link String } * */ public void setLastModificationDateTime(String value) { this.lastModificationDateTime = value; } /** * Gets the value of the ddAttributes 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 ddAttributes property. * *

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

     *    getDDAttributes().add(newItem);
     * 
* * *

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

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

     *    getDDClasses().add(newItem);
     * 
* * *

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

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

     *    getDDRules().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DDRule } * * */ public List getDDRules() { if (ddRules == null) { ddRules = new ArrayList(); } return this.ddRules; } /** * 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 PropertyMaps } * * */ public List getPropertyMaps() { if (propertyMaps == null) { propertyMaps = new ArrayList(); } return this.propertyMaps; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy