Interface ShDataExtension
-
public interface ShDataExtension
Interface for tSh-Data-Extension complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tSh-Data-Extension"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="RegisteredIdentities" type="{}tPublicIdentity" minOccurs="0"/> <element name="ImplicitIdentities" type="{}tPublicIdentity" minOccurs="0"/> <element name="AllIdentities" type="{}tPublicIdentity" minOccurs="0"/> <element name="AliasIdentities" type="{}tPublicIdentity" minOccurs="0"/> <element name="Extension" type="{}tSh-Data-Extension2" minOccurs="0"/> <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- Author:
- OpenCloud
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PublicIdentity
getAliasIdentities()
Gets the value of the aliasIdentities property.PublicIdentity
getAllIdentities()
Gets the value of the allIdentities property.List
getAny()
Gets the value of the any property.ShDataExtension2
getExtension()
Gets the value of the extension property.PublicIdentity
getImplicitIdentities()
Gets the value of the implicitIdentities property.PublicIdentity
getRegisteredIdentities()
Gets the value of the registeredIdentities property.void
setAliasIdentities(PublicIdentity value)
Sets the value of the aliasIdentities property.void
setAllIdentities(PublicIdentity value)
Sets the value of the allIdentities property.void
setExtension(ShDataExtension2 value)
Sets the value of the extension property.void
setImplicitIdentities(PublicIdentity value)
Sets the value of the implicitIdentities property.void
setRegisteredIdentities(PublicIdentity value)
Sets the value of the registeredIdentities property.
-
-
-
Method Detail
-
getRegisteredIdentities
PublicIdentity getRegisteredIdentities()
Gets the value of the registeredIdentities property.- Returns:
- possible object is
PublicIdentity
-
setRegisteredIdentities
void setRegisteredIdentities(PublicIdentity value)
Sets the value of the registeredIdentities property.- Parameters:
value
- allowed object isPublicIdentity
-
getImplicitIdentities
PublicIdentity getImplicitIdentities()
Gets the value of the implicitIdentities property.- Returns:
- possible object is
PublicIdentity
-
setImplicitIdentities
void setImplicitIdentities(PublicIdentity value)
Sets the value of the implicitIdentities property.- Parameters:
value
- allowed object isPublicIdentity
-
getAllIdentities
PublicIdentity getAllIdentities()
Gets the value of the allIdentities property.- Returns:
- possible object is
PublicIdentity
-
setAllIdentities
void setAllIdentities(PublicIdentity value)
Sets the value of the allIdentities property.- Parameters:
value
- allowed object isPublicIdentity
-
getAliasIdentities
PublicIdentity getAliasIdentities()
Gets the value of the aliasIdentities property.- Returns:
- possible object is
PublicIdentity
-
setAliasIdentities
void setAliasIdentities(PublicIdentity value)
Sets the value of the aliasIdentities property.- Parameters:
value
- allowed object isPublicIdentity
-
getExtension
ShDataExtension2 getExtension()
Gets the value of the extension property.- Returns:
- possible object is
ShDataExtension2
-
setExtension
void setExtension(ShDataExtension2 value)
Sets the value of the extension property.- Parameters:
value
- allowed object isShDataExtension2
-
getAny
List getAny()
Gets the value of the any 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
set
method for the any property.For example, to add a new item, do as follows:
getAny().add(newItem);
Objects of the following type(s) are allowed in the list
Element
Object
-
-