Package gov.nasa.arc.pds.xml.generated
Class Update
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.Update
 
- 
 public class Update extends java.lang.ObjectThe Update class consists of update information.Java class for Update complex type .The following schema fragment specifies the expected content contained within this class. <complexType name="Update"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="local_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}local_identifier" minOccurs="0"/> <element name="update_purpose" type="{http://pds.nasa.gov/pds4/pds/v1}update_purpose"/> <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/> <element name="Update_Entry" type="{http://pds.nasa.gov/pds4/pds/v1}Update_Entry" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringdescriptionprotected java.lang.StringlocalIdentifierprotected java.util.List<UpdateEntry>updateEntriesprotected java.lang.StringupdatePurpose
 - 
Constructor SummaryConstructors Constructor Description Update()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the value of the description property.java.lang.StringgetLocalIdentifier()Gets the value of the localIdentifier property.java.util.List<UpdateEntry>getUpdateEntries()Gets the value of the updateEntries property.java.lang.StringgetUpdatePurpose()Gets the value of the updatePurpose property.voidsetDescription(java.lang.String value)Sets the value of the description property.voidsetLocalIdentifier(java.lang.String value)Sets the value of the localIdentifier property.voidsetUpdatePurpose(java.lang.String value)Sets the value of the updatePurpose property.
 
- 
- 
- 
Field Detail- 
localIdentifierprotected java.lang.String localIdentifier 
 - 
updatePurposeprotected java.lang.String updatePurpose 
 - 
descriptionprotected java.lang.String description 
 - 
updateEntriesprotected java.util.List<UpdateEntry> updateEntries 
 
- 
 - 
Method Detail- 
getLocalIdentifierpublic java.lang.String getLocalIdentifier() Gets the value of the localIdentifier property.- Returns:
- possible object is
     String
 
 - 
setLocalIdentifierpublic void setLocalIdentifier(java.lang.String value) Sets the value of the localIdentifier property.- Parameters:
- value- allowed object is- String
 
 - 
getUpdatePurposepublic java.lang.String getUpdatePurpose() Gets the value of the updatePurpose property.- Returns:
- possible object is
     String
 
 - 
setUpdatePurposepublic void setUpdatePurpose(java.lang.String value) Sets the value of the updatePurpose property.- Parameters:
- value- allowed object is- String
 
 - 
getDescriptionpublic java.lang.String getDescription() Gets the value of the description property.- Returns:
- possible object is
     String
 
 - 
setDescriptionpublic void setDescription(java.lang.String value) Sets the value of the description property.- Parameters:
- value- allowed object is- String
 
 - 
getUpdateEntriespublic java.util.List<UpdateEntry> getUpdateEntries() Gets the value of the updateEntries 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 setmethod for the updateEntries property.For example, to add a new item, do as follows: getUpdateEntries().add(newItem); Objects of the following type(s) are allowed in the list UpdateEntry- Returns:
- The value of the updateEntries property.
 
 
- 
 
-