/** {@inheritDoc} */
  protected void marshallElementContent(XMLObject samlObject, Element domElement)
      throws MarshallingException {
    LocalizedURI name = (LocalizedURI) samlObject;

    if (name.getValue() != null) {
      ElementSupport.appendTextContent(domElement, name.getValue());
    }
  }