Class IssuerImpl
- java.lang.Object
-
- com.sun.identity.saml2.assertion.impl.NameIDTypeImpl
-
- com.sun.identity.saml2.assertion.impl.IssuerImpl
-
- All Implemented Interfaces:
Issuer
,NameIDType
,Serializable
public class IssuerImpl extends NameIDTypeImpl implements Issuer
TheIssuer
provides information about the issuer of a SAML assertion or protocol message.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ISSUER_ELEMENT
-
Fields inherited from class com.sun.identity.saml2.assertion.impl.NameIDTypeImpl
FORMAT_ATTR, NAME_ID_TYPE_ELEMENT, NAME_QUALIFIER_ATTR, SP_NAME_QUALIFIER_ATTR, SP_PROVIDED_ID_ATTR
-
-
Constructor Summary
Constructors Constructor Description IssuerImpl()
Default constructorIssuerImpl(String xml)
This constructor is used to buildIssuer
object from a XML string.IssuerImpl(Element element)
This constructor is used to buildIssuer
object from a block of existing XML that has already been built into a DOM.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toXMLString()
Returns a String representationString
toXMLString(boolean includeNSPrefix, boolean declareNS)
Returns a String representation-
Methods inherited from class com.sun.identity.saml2.assertion.impl.NameIDTypeImpl
getFormat, getNameQualifier, getSPNameQualifier, getSPProvidedID, getValue, getValueAndAttributes, isMutable, makeImmutable, setFormat, setNameQualifier, setSPNameQualifier, setSPProvidedID, setValue
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.sun.identity.saml2.assertion.NameIDType
getFormat, getNameQualifier, getSPNameQualifier, getSPProvidedID, getValue, isMutable, makeImmutable, setFormat, setNameQualifier, setSPNameQualifier, setSPProvidedID, setValue
-
-
-
-
Field Detail
-
ISSUER_ELEMENT
public static final String ISSUER_ELEMENT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IssuerImpl
public IssuerImpl()
Default constructor
-
IssuerImpl
public IssuerImpl(String xml) throws SAML2Exception
This constructor is used to buildIssuer
object from a XML string.- Parameters:
xml
- Ajava.lang.String
representing aIssuer
object- Throws:
SAML2Exception
- if it could not process the XML string
-
IssuerImpl
public IssuerImpl(Element element) throws SAML2Exception
This constructor is used to buildIssuer
object from a block of existing XML that has already been built into a DOM.- Parameters:
element
- Aorg.w3c.dom.Element
representing DOM tree forIssuer
object- Throws:
SAML2Exception
- if it could not process the Element
-
-
Method Detail
-
toXMLString
public String toXMLString(boolean includeNSPrefix, boolean declareNS) throws SAML2Exception
Returns a String representation- Specified by:
toXMLString
in interfaceNameIDType
- Specified by:
toXMLString
in classNameIDTypeImpl
- Parameters:
includeNSPrefix
- Determines whether or not the namespace qualifier is prepended to the Element when converteddeclareNS
- Determines whether or not the namespace is declared within the Element.- Returns:
- A String representation
- Throws:
SAML2Exception
- if something is wrong during conversion
-
toXMLString
public String toXMLString() throws SAML2Exception
Returns a String representation- Specified by:
toXMLString
in interfaceNameIDType
- Specified by:
toXMLString
in classNameIDTypeImpl
- Returns:
- A String representation
- Throws:
SAML2Exception
- if something is wrong during conversion
-
-