Class TimestampImpl

All Implemented Interfaces:
AttributeExtensibleXMLObject, ElementExtensibleXMLObject, XMLObject, IdBearing, Timestamp, WSSecurityObject

public class TimestampImpl extends AbstractWSSecurityObject implements Timestamp
Concrete implementation of Timestamp.
  • Field Details

    • id

      private String id
      wsu:Timestamp/@wsu:Id attribute.
    • created

      private Created created
      wsu:Timestamp/wsu:Created element.
    • expires

      private Expires expires
      wsu:Timestamp/wsu:Expires element.
    • unknownAttributes

      private AttributeMap unknownAttributes
      Wildcard attributes.
    • unknownChildren

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

    • TimestampImpl

      public TimestampImpl(String namespaceURI, String elementLocalName, String namespacePrefix)
      Constructor.
      Parameters:
      namespaceURI - namespace of the element
      elementLocalName - name of the element
      namespacePrefix - namespace prefix of the element
  • Method Details

    • getCreated

      public Created getCreated()
      Returns the <wsu:Created< child element.
      Specified by:
      getCreated in interface Timestamp
      Returns:
      the Created child element or null.
    • getExpires

      public Expires getExpires()
      Returns the <wsu:Expires> child element.
      Specified by:
      getExpires in interface Timestamp
      Returns:
      the Expires child element or null.
    • setCreated

      public void setCreated(Created newCreated)
      Sets the <wsu:Created> child element.
      Specified by:
      setCreated in interface Timestamp
      Parameters:
      newCreated - the Created child element to set.
    • setExpires

      public void setExpires(Expires newExpires)
      Sets the <wsu:Expires> child element.
      Specified by:
      setExpires in interface Timestamp
      Parameters:
      newExpires - the Expires child element or null.
    • getWSUId

      public String getWSUId()
      Returns the @wsu:Id attribute value.
      Specified by:
      getWSUId in interface IdBearing
      Returns:
      The @wsu:Id attribute value or null.
    • setWSUId

      public void setWSUId(String newId)
      Sets the @wsu:Id attribute value.
      Specified by:
      setWSUId in interface IdBearing
      Parameters:
      newId - The @wsu:Id attribute value
    • getUnknownAttributes

      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

      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

      public List<XMLObject> getUnknownXMLObjects(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

      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