Package gov.nasa.arc.pds.xml.generated
Class Organization
java.lang.Object
gov.nasa.arc.pds.xml.generated.Organization
The Organization class is a container for the
child attributes that describe an organization, institution, or
company.
Java class for Organization complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Organization">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="contributor_type" type="{http://pds.nasa.gov/pds4/pds/v1}contributor_type" minOccurs="0"/>
<element name="organization_name" type="{http://pds.nasa.gov/pds4/pds/v1}organization_name"/>
<element name="organization_rorid" type="{http://pds.nasa.gov/pds4/pds/v1}organization_rorid" minOccurs="0"/>
<element name="sequence_number" type="{http://pds.nasa.gov/pds4/pds/v1}sequence_number" minOccurs="0"/>
<element name="Parent_Organization" type="{http://pds.nasa.gov/pds4/pds/v1}Parent_Organization" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Stringprotected Stringprotected Stringprotected List<ParentOrganization>protected BigInteger -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the contributorType property.Gets the value of the organizationName property.Gets the value of the organizationRorid property.Gets the value of the parentOrganizations property.Gets the value of the sequenceNumber property.voidsetContributorType(String value) Sets the value of the contributorType property.voidsetOrganizationName(String value) Sets the value of the organizationName property.voidsetOrganizationRorid(String value) Sets the value of the organizationRorid property.voidsetSequenceNumber(BigInteger value) Sets the value of the sequenceNumber property.
-
Field Details
-
contributorType
-
organizationName
-
organizationRorid
-
sequenceNumber
-
parentOrganizations
-
-
Constructor Details
-
Organization
public Organization()
-
-
Method Details
-
getContributorType
Gets the value of the contributorType property.- Returns:
- possible object is
String
-
setContributorType
Sets the value of the contributorType property.- Parameters:
value- allowed object isString
-
getOrganizationName
Gets the value of the organizationName property.- Returns:
- possible object is
String
-
setOrganizationName
Sets the value of the organizationName property.- Parameters:
value- allowed object isString
-
getOrganizationRorid
Gets the value of the organizationRorid property.- Returns:
- possible object is
String
-
setOrganizationRorid
Sets the value of the organizationRorid property.- Parameters:
value- allowed object isString
-
getSequenceNumber
Gets the value of the sequenceNumber property.- Returns:
- possible object is
BigInteger
-
setSequenceNumber
Sets the value of the sequenceNumber property.- Parameters:
value- allowed object isBigInteger
-
getParentOrganizations
Gets the value of the parentOrganizations 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 parentOrganizations property.For example, to add a new item, do as follows:
getParentOrganizations().add(newItem);
Objects of the following type(s) are allowed in the list
ParentOrganization- Returns:
- The value of the parentOrganizations property.
-