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

gov.nasa.arc.pds.xml.generated.DDClassFull 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.XmlID;
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 DD_Class_Full class provides a more complete
 *         definition of a class for a data dictionary.
 * 
 * 

Java class for DD_Class_Full complex type. * *

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

 * <complexType name="DD_Class_Full">
 *   <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="version_id" type="{http://pds.nasa.gov/pds4/pds/v1}version_id"/>
 *         <element name="local_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}local_identifier"/>
 *         <element name="steward_id" type="{http://pds.nasa.gov/pds4/pds/v1}steward_id"/>
 *         <element name="type" type="{http://pds.nasa.gov/pds4/pds/v1}type"/>
 *         <element name="namespace_id" type="{http://pds.nasa.gov/pds4/pds/v1}namespace_id"/>
 *         <element name="submitter_name" type="{http://pds.nasa.gov/pds4/pds/v1}submitter_name"/>
 *         <element name="definition" type="{http://pds.nasa.gov/pds4/pds/v1}definition"/>
 *         <element name="comment" type="{http://pds.nasa.gov/pds4/pds/v1}comment" minOccurs="0"/>
 *         <element name="registered_by" type="{http://pds.nasa.gov/pds4/pds/v1}registered_by"/>
 *         <element name="registration_authority_id" type="{http://pds.nasa.gov/pds4/pds/v1}registration_authority_id"/>
 *         <element name="abstract_flag" type="{http://pds.nasa.gov/pds4/pds/v1}abstract_flag" minOccurs="0"/>
 *         <element name="element_flag" type="{http://pds.nasa.gov/pds4/pds/v1}element_flag" minOccurs="0"/>
 *         <element name="DD_Association" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Association" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Terminological_Entry" type="{http://pds.nasa.gov/pds4/pds/v1}Terminological_Entry" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DD_Class_Full", propOrder = { "name", "versionId", "localIdentifier", "stewardId", "type", "namespaceId", "submitterName", "definition", "comment", "registeredBy", "registrationAuthorityId", "abstractFlag", "elementFlag", "ddAssociations", "terminologicalEntries" }) public class DDClassFull { @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String name; @XmlElement(name = "version_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String versionId; @XmlElement(name = "local_identifier", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String localIdentifier; @XmlElement(name = "steward_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String stewardId; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String type; @XmlElement(name = "namespace_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String namespaceId; @XmlElement(name = "submitter_name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String submitterName; @XmlElement(required = true) protected String definition; protected String comment; @XmlElement(name = "registered_by", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String registeredBy; @XmlElement(name = "registration_authority_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String registrationAuthorityId; @XmlElement(name = "abstract_flag") protected Boolean abstractFlag; @XmlElement(name = "element_flag") protected Boolean elementFlag; @XmlElement(name = "DD_Association") protected List ddAssociations; @XmlElement(name = "Terminological_Entry") protected List terminologicalEntries; /** * 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 versionId property. * * @return * possible object is * {@link String } * */ public String getVersionId() { return versionId; } /** * Sets the value of the versionId property. * * @param value * allowed object is * {@link String } * */ public void setVersionId(String value) { this.versionId = value; } /** * Gets the value of the localIdentifier property. * * @return * possible object is * {@link String } * */ public String getLocalIdentifier() { return localIdentifier; } /** * Sets the value of the localIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setLocalIdentifier(String value) { this.localIdentifier = 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 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 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 submitterName property. * * @return * possible object is * {@link String } * */ public String getSubmitterName() { return submitterName; } /** * Sets the value of the submitterName property. * * @param value * allowed object is * {@link String } * */ public void setSubmitterName(String value) { this.submitterName = value; } /** * Gets the value of the definition property. * * @return * possible object is * {@link String } * */ public String getDefinition() { return definition; } /** * Sets the value of the definition property. * * @param value * allowed object is * {@link String } * */ public void setDefinition(String value) { this.definition = value; } /** * 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 registeredBy property. * * @return * possible object is * {@link String } * */ public String getRegisteredBy() { return registeredBy; } /** * Sets the value of the registeredBy property. * * @param value * allowed object is * {@link String } * */ public void setRegisteredBy(String value) { this.registeredBy = value; } /** * Gets the value of the registrationAuthorityId property. * * @return * possible object is * {@link String } * */ public String getRegistrationAuthorityId() { return registrationAuthorityId; } /** * Sets the value of the registrationAuthorityId property. * * @param value * allowed object is * {@link String } * */ public void setRegistrationAuthorityId(String value) { this.registrationAuthorityId = value; } /** * Gets the value of the abstractFlag property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAbstractFlag() { return abstractFlag; } /** * Sets the value of the abstractFlag property. * * @param value * allowed object is * {@link Boolean } * */ public void setAbstractFlag(Boolean value) { this.abstractFlag = value; } /** * Gets the value of the elementFlag property. * * @return * possible object is * {@link Boolean } * */ public Boolean isElementFlag() { return elementFlag; } /** * Sets the value of the elementFlag property. * * @param value * allowed object is * {@link Boolean } * */ public void setElementFlag(Boolean value) { this.elementFlag = value; } /** * Gets the value of the ddAssociations 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 ddAssociations property. * *

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

     *    getDDAssociations().add(newItem);
     * 
* * *

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

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

     *    getTerminologicalEntries().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy