Class UsernameTokenImpl

    • Constructor Detail

      • UsernameTokenImpl

        public UsernameTokenImpl​(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 Detail

      • setUsername

        public void setUsername​(Username newUsername)
        Sets the <wsse:Username> child element.
        Specified by:
        setUsername in interface UsernameToken
        Parameters:
        newUsername - the Username child element to set.
      • 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>