Class AbstractMetadataValueSAMLObject

java.lang.Object
org.opensaml.core.xml.AbstractXMLObject
net.shibboleth.oidc.saml.xmlobject.impl.AbstractMetadataValueSAMLObject
All Implemented Interfaces:
XMLObject
Direct Known Subclasses:
ClientSecretImpl, ClientSecretKeyReferenceImpl, DefaultAcrValueImpl, JwksDataImpl, JwksUriImpl, PostLogoutRedirectUriImpl, RequestUriImpl

public abstract class AbstractMetadataValueSAMLObject extends AbstractXMLObject
Base implementation for all simple metadata objects containing String value inside the element.
  • Field Details

    • value

      private String value
      The value for this metadata object.
  • Constructor Details

    • AbstractMetadataValueSAMLObject

      protected AbstractMetadataValueSAMLObject(String namespaceURI, String elementLocalName, String namespacePrefix)
      Constructor.
      Parameters:
      namespaceURI - the namespace the element is in
      elementLocalName - the local name of the XML element this Object represents
      namespacePrefix - the prefix for the given namespace
  • Method Details

    • getValue

      public String getValue()
      Get the value for this metadata object.
      Returns:
      The value for this metadata object.
    • setValue

      public void setValue(String newValue)
      Set the value for this metadata object.
      Parameters:
      newValue - What to set.
    • getOrderedChildren

      public List<XMLObject> getOrderedChildren()