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

gov.nasa.arc.pds.xml.generated.TerminologicalEntrySKOS 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 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 terminological_entry_SKOS class provides
 *         terms and definitions for a SKOS ontology.
 * 
 * 

Java class for Terminological_Entry_SKOS complex type. * *

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

 * <complexType name="Terminological_Entry_SKOS">
 *   <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="registration_authority" type="{http://pds.nasa.gov/pds4/pds/v1}registration_authority" minOccurs="0"/>
 *         <element name="namespace_id" type="{http://pds.nasa.gov/pds4/pds/v1}namespace_id"/>
 *         <element name="steward_id" type="{http://pds.nasa.gov/pds4/pds/v1}steward_id"/>
 *         <element name="title" type="{http://pds.nasa.gov/pds4/pds/v1}title"/>
 *         <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description"/>
 *         <element name="referenced_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}referenced_identifier" minOccurs="0"/>
 *         <element name="skos_relation_name" type="{http://pds.nasa.gov/pds4/pds/v1}skos_relation_name"/>
 *         <element name="model_object_id" type="{http://pds.nasa.gov/pds4/pds/v1}model_object_id" minOccurs="0"/>
 *         <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" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Terminological_Entry_SKOS", propOrder = { "identifier", "registrationAuthority", "namespaceId", "stewardId", "title", "description", "referencedIdentifier", "skosRelationName", "modelObjectId", "modelObjectType", "instanceId" }) public class TerminologicalEntrySKOS { @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String identifier; @XmlElement(name = "registration_authority") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String registrationAuthority; @XmlElement(name = "namespace_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String namespaceId; @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 title; @XmlElement(required = true) protected String description; @XmlElement(name = "referenced_identifier") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String referencedIdentifier; @XmlElement(name = "skos_relation_name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String skosRelationName; @XmlElement(name = "model_object_id") @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 String instanceId; /** * 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 registrationAuthority property. * * @return * possible object is * {@link String } * */ public String getRegistrationAuthority() { return registrationAuthority; } /** * Sets the value of the registrationAuthority property. * * @param value * allowed object is * {@link String } * */ public void setRegistrationAuthority(String value) { this.registrationAuthority = 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 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 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 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 referencedIdentifier property. * * @return * possible object is * {@link String } * */ public String getReferencedIdentifier() { return referencedIdentifier; } /** * Sets the value of the referencedIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setReferencedIdentifier(String value) { this.referencedIdentifier = value; } /** * Gets the value of the skosRelationName property. * * @return * possible object is * {@link String } * */ public String getSkosRelationName() { return skosRelationName; } /** * Sets the value of the skosRelationName property. * * @param value * allowed object is * {@link String } * */ public void setSkosRelationName(String value) { this.skosRelationName = 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 instanceId property. * * @return * possible object is * {@link String } * */ public String getInstanceId() { return instanceId; } /** * Sets the value of the instanceId property. * * @param value * allowed object is * {@link String } * */ public void setInstanceId(String value) { this.instanceId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy