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

gov.nasa.arc.pds.xml.generated.MissionPDS3 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 Mission PDS3 class describes an activity
 *         involved in the collection of data. This class captures the PDS3
 *         catalog Mission information.
 * 
 * 

Java class for Mission_PDS3 complex type. * *

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

 * <complexType name="Mission_PDS3">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="mission_name" type="{http://pds.nasa.gov/pds4/pds/v1}mission_name"/>
 *         <element name="mission_desc" type="{http://pds.nasa.gov/pds4/pds/v1}mission_desc"/>
 *         <element name="mission_objectives_summary" type="{http://pds.nasa.gov/pds4/pds/v1}mission_objectives_summary"/>
 *         <element name="mission_start_date" type="{http://pds.nasa.gov/pds4/pds/v1}mission_start_date"/>
 *         <element name="mission_stop_date" type="{http://pds.nasa.gov/pds4/pds/v1}mission_stop_date"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Mission_PDS3", propOrder = { "missionName", "missionDesc", "missionObjectivesSummary", "missionStartDate", "missionStopDate" }) public class MissionPDS3 { @XmlElement(name = "mission_name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String missionName; @XmlElement(name = "mission_desc", required = true) protected String missionDesc; @XmlElement(name = "mission_objectives_summary", required = true) protected String missionObjectivesSummary; @XmlElement(name = "mission_start_date", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String missionStartDate; @XmlElement(name = "mission_stop_date", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String missionStopDate; /** * Gets the value of the missionName property. * * @return * possible object is * {@link String } * */ public String getMissionName() { return missionName; } /** * Sets the value of the missionName property. * * @param value * allowed object is * {@link String } * */ public void setMissionName(String value) { this.missionName = value; } /** * Gets the value of the missionDesc property. * * @return * possible object is * {@link String } * */ public String getMissionDesc() { return missionDesc; } /** * Sets the value of the missionDesc property. * * @param value * allowed object is * {@link String } * */ public void setMissionDesc(String value) { this.missionDesc = value; } /** * Gets the value of the missionObjectivesSummary property. * * @return * possible object is * {@link String } * */ public String getMissionObjectivesSummary() { return missionObjectivesSummary; } /** * Sets the value of the missionObjectivesSummary property. * * @param value * allowed object is * {@link String } * */ public void setMissionObjectivesSummary(String value) { this.missionObjectivesSummary = value; } /** * Gets the value of the missionStartDate property. * * @return * possible object is * {@link String } * */ public String getMissionStartDate() { return missionStartDate; } /** * Sets the value of the missionStartDate property. * * @param value * allowed object is * {@link String } * */ public void setMissionStartDate(String value) { this.missionStartDate = value; } /** * Gets the value of the missionStopDate property. * * @return * possible object is * {@link String } * */ public String getMissionStopDate() { return missionStopDate; } /** * Sets the value of the missionStopDate property. * * @param value * allowed object is * {@link String } * */ public void setMissionStopDate(String value) { this.missionStopDate = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy