Class EmbeddedImpl

All Implemented Interfaces:
AttributeExtensibleXMLObject, ElementExtensibleXMLObject, XMLObject, Embedded, WSSecurityObject

public class EmbeddedImpl extends AbstractWSSecurityObject implements Embedded
EmbeddedImpl is the concrete implementation of Embedded.
  • Field Details

    • valueType

      @Nullable private String valueType
      wsse:Embedded/@wsse:ValueType attribute.
    • unknownAttributes

      @Nonnull private final AttributeMap unknownAttributes
      Wildcard attributes.
    • unknownChildren

      @Nonnull private final IndexedXMLObjectChildrenList<XMLObject> unknownChildren
      Wildcard child elements.
  • Constructor Details

    • EmbeddedImpl

      protected EmbeddedImpl(@Nullable String namespaceURI, @Nonnull String elementLocalName, @Nullable String namespacePrefix)
      Constructor.
      Parameters:
      namespaceURI - namespace of the element
      elementLocalName - name of the element
      namespacePrefix - namespace prefix of the element
  • Method Details

    • getValueType

      @Nullable public String getValueType()
      Returns the ValueType attribute URI value.
      Specified by:
      getValueType in interface Embedded
      Returns:
      the ValueType attribute value or null.
    • setValueType

      public void setValueType(@Nullable String newValueType)
      Sets the ValueType attribute URI value.
      Specified by:
      setValueType in interface Embedded
      Parameters:
      newValueType - the ValueType attribute value.
    • getUnknownAttributes

      @Nonnull public AttributeMap getUnknownAttributes()
      Gets a mutable map of the attributes. The map key is the namespace qualified name of the attribute, the map value is the value of the attribute.
      Specified by:
      getUnknownAttributes in interface AttributeExtensibleXMLObject
      Returns:
      a map of the attributes
    • getUnknownXMLObjects

      @Nonnull public List<XMLObject> getUnknownXMLObjects()
      Gets the list of XMLObjects added to this XMLObject as part of the "any" content model.
      Specified by:
      getUnknownXMLObjects in interface ElementExtensibleXMLObject
      Returns:
      list of XMLObjects added to this XMLObject as part of the "any" content model
    • getUnknownXMLObjects

      @Nonnull public List<XMLObject> getUnknownXMLObjects(@Nonnull QName typeOrName)
      Gets the list of XMLObjects added to this XMLObject as part of the "any" content model, and which match the specified QName.
      Specified by:
      getUnknownXMLObjects in interface ElementExtensibleXMLObject
      Parameters:
      typeOrName - the QName of the statements to return
      Returns:
      list of XMLObjects added to this XMLObject as part of the "any" content model TODO: think this should be typed List<? extends XMLObject>
    • getOrderedChildren

      @Nullable public List<XMLObject> getOrderedChildren()
      Gets an unmodifiable list of child elements in the order that they will appear in the DOM.
      Specified by:
      getOrderedChildren in interface XMLObject
      Overrides:
      getOrderedChildren in class AbstractWSSecurityObject
      Returns:
      ordered list of child elements