Class SimpleXMLObject

java.lang.Object
org.opensaml.core.xml.AbstractXMLObject
org.opensaml.core.xml.mock.SimpleXMLObject
All Implemented Interfaces:
AttributeExtensibleXMLObject, ElementExtensibleXMLObject, XMLObject

public class SimpleXMLObject extends AbstractXMLObject implements ElementExtensibleXMLObject, AttributeExtensibleXMLObject
Simple XMLObject that can be used for testing.
  • Field Details

  • Constructor Details

    • SimpleXMLObject

      public SimpleXMLObject(@Nullable String namspaceURI, @Nonnull String localName, @Nullable String namespacePrefix)
      Constructor.
      Parameters:
      namspaceURI - namespace for the node
      localName - local name for the node
      namespacePrefix - namespace prefix for the node
  • Method Details

    • getId

      @Nullable public String getId()
      Gets the name attribute.
      Returns:
      the name attribute
    • setId

      public void setId(@Nullable String newId)
      Sets the name attribute.
      Parameters:
      newId - the name attribute
    • getValue

      @Nullable public String getValue()
      Gets the value of this object.
      Returns:
      the value of this object
    • setValue

      public void setValue(@Nullable String newValue)
      Sets the value of this object.
      Parameters:
      newValue - the value of this object
    • getSimpleXMLObjects

      @Nonnull public List<SimpleXMLObject> getSimpleXMLObjects()
      Gets the list of child SimpleXMLObjects.
      Returns:
      the list of child SimpleXMLObjects
    • 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
      Returns:
      ordered list of child elements
    • 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