Class AbstractMetadataValueSAMLObject

java.lang.Object
org.opensaml.core.xml.AbstractXMLObject
net.shibboleth.oidc.saml.xmlobject.impl.AbstractMetadataValueSAMLObject
All Implemented Interfaces:
XMLObject

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

    • value

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

    • AbstractMetadataValueSAMLObject

      protected AbstractMetadataValueSAMLObject(@Nullable String namespaceURI, @Nonnull String elementLocalName, @Nullable 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

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

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

      @Nullable @Unmodifiable @NotLive public List<XMLObject> getOrderedChildren()