Class EncryptionPropertyImpl
- java.lang.Object
-
- org.opensaml.core.xml.AbstractXMLObject
-
- org.opensaml.xmlsec.encryption.impl.EncryptionPropertyImpl
-
- All Implemented Interfaces:
AttributeExtensibleXMLObject
,ElementExtensibleXMLObject
,XMLObject
,EncryptionProperty
public class EncryptionPropertyImpl extends AbstractXMLObject implements EncryptionProperty
Concrete implementation ofEncryptionProperty
.
-
-
Field Summary
Fields Modifier and Type Field Description private String
id
Id attribute value.private String
target
Target attribute value.private AttributeMap
unknownAttributes
"anyAttribute" attributes.private IndexedXMLObjectChildrenList<XMLObject>
unknownChildren
Child elements from the <any> content model.-
Fields inherited from interface org.opensaml.xmlsec.encryption.EncryptionProperty
DEFAULT_ELEMENT_LOCAL_NAME, DEFAULT_ELEMENT_NAME, ID_ATTRIB_NAME, TARGET_ATTRIB_NAME, TYPE_LOCAL_NAME, TYPE_NAME
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
EncryptionPropertyImpl(String namespaceURI, String elementLocalName, String namespacePrefix)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getID()
List<XMLObject>
getOrderedChildren()
String
getTarget()
AttributeMap
getUnknownAttributes()
List<XMLObject>
getUnknownXMLObjects()
List<XMLObject>
getUnknownXMLObjects(QName typeOrName)
void
setID(String newID)
void
setTarget(String newTarget)
-
Methods inherited from class org.opensaml.core.xml.AbstractXMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, manageQualifiedAttributeNamespace, prepareAttributeValueForAssignment, prepareElementContentForAssignment, prepareForAssignment, prepareForAssignment, prepareForAssignment, registerOwnID, releaseChildrenDOM, releaseDOM, releaseParentDOM, releaseThisAndChildrenDOM, releaseThisandParentDOM, resolveID, resolveIDFromRoot, setDOM, setElementNamespacePrefix, setElementQName, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation, setSchemaType
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
target
private String target
Target attribute value.
-
id
private String id
Id attribute value.
-
unknownChildren
private final IndexedXMLObjectChildrenList<XMLObject> unknownChildren
Child elements from the <any> content model.
-
unknownAttributes
private final AttributeMap unknownAttributes
"anyAttribute" attributes.
-
-
Method Detail
-
getTarget
public String getTarget()
- Specified by:
getTarget
in interfaceEncryptionProperty
-
setTarget
public void setTarget(String newTarget)
- Specified by:
setTarget
in interfaceEncryptionProperty
-
getID
public String getID()
- Specified by:
getID
in interfaceEncryptionProperty
-
setID
public void setID(String newID)
- Specified by:
setID
in interfaceEncryptionProperty
-
getUnknownAttributes
public AttributeMap getUnknownAttributes()
- Specified by:
getUnknownAttributes
in interfaceAttributeExtensibleXMLObject
-
getUnknownXMLObjects
public List<XMLObject> getUnknownXMLObjects()
- Specified by:
getUnknownXMLObjects
in interfaceElementExtensibleXMLObject
-
getUnknownXMLObjects
public List<XMLObject> getUnknownXMLObjects(QName typeOrName)
- Specified by:
getUnknownXMLObjects
in interfaceElementExtensibleXMLObject
-
getOrderedChildren
public List<XMLObject> getOrderedChildren()
- Specified by:
getOrderedChildren
in interfaceXMLObject
-
-