Package network.oxalis.peppol.sbdh.jaxb
Class Scope
- java.lang.Object
-
- network.oxalis.peppol.sbdh.jaxb.Scope
-
public class Scope extends Object
Java class for Scope complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Scope"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <group ref="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}ScopeAttributes"/> <element ref="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}ScopeInformation" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidentifierprotected StringinstanceIdentifierprotected List<jakarta.xml.bind.JAXBElement<?>>scopeInformationprotected Stringtype
-
Constructor Summary
Constructors Constructor Description Scope()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetIdentifier()Gets the value of the identifier property.StringgetInstanceIdentifier()Gets the value of the instanceIdentifier property.List<jakarta.xml.bind.JAXBElement<?>>getScopeInformation()Gets the value of the scopeInformation property.StringgetType()Gets the value of the type property.voidsetIdentifier(String value)Sets the value of the identifier property.voidsetInstanceIdentifier(String value)Sets the value of the instanceIdentifier property.voidsetType(String value)Sets the value of the type property.
-
-
-
Method Detail
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getInstanceIdentifier
public String getInstanceIdentifier()
Gets the value of the instanceIdentifier property.- Returns:
- possible object is
String
-
setInstanceIdentifier
public void setInstanceIdentifier(String value)
Sets the value of the instanceIdentifier property.- Parameters:
value- allowed object isString
-
getIdentifier
public String getIdentifier()
Gets the value of the identifier property.- Returns:
- possible object is
String
-
setIdentifier
public void setIdentifier(String value)
Sets the value of the identifier property.- Parameters:
value- allowed object isString
-
getScopeInformation
public List<jakarta.xml.bind.JAXBElement<?>> getScopeInformation()
Gets the value of the scopeInformation 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 scopeInformation property.For example, to add a new item, do as follows:
getScopeInformation().add(newItem);
Objects of the following type(s) are allowed in the list
JAXBElement<Object>JAXBElement<BusinessService>JAXBElement<CorrelationInformation>- Returns:
- The value of the scopeInformation property.
-
-