Package com.sun.identity.saml2.protocol
Interface GetComplete
-
@SupportedAll public interface GetComplete
This interface contains methods for theGetComplete
Element in the SAMLv2 Protocol Schema.GetComplete
Element specifies a URI which resolves to the complete IDPList.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getValue()
Returns the value of theGetComplete
URI.boolean
isMutable()
Returns true if object is mutable.void
makeImmutable()
Makes this object immutable.void
setValue(String value)
Sets the value of theGetComplete
URI.String
toXMLString()
Returns a String representation of this Object.String
toXMLString(boolean includeNSPrefix, boolean declareNS)
Returns a String representation of this Object.
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of theGetComplete
URI.- Returns:
- value of the
GetComplete
URI. - See Also:
setValue(String)
-
setValue
void setValue(String value) throws SAML2Exception
Sets the value of theGetComplete
URI.- Parameters:
value
- new value of theGetComplete
URI.- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getValue()
-
toXMLString
String toXMLString() throws SAML2Exception
Returns a String representation of this Object.- Returns:
- a String representation of this Object.
- Throws:
SAML2Exception
- if cannot convert to String.
-
toXMLString
String toXMLString(boolean includeNSPrefix, boolean declareNS) throws SAML2Exception
Returns a String representation of this Object.- Parameters:
includeNSPrefix
- determines whether or not the namespace qualifier is prepended to the Element when converted.declareNS
- determines whether or not the namespace is declared. within the Element.- Returns:
- String representation of this object.
- Throws:
SAML2Exception
- if cannot convert to String.
-
makeImmutable
void makeImmutable()
Makes this object immutable.
-
isMutable
boolean isMutable()
Returns true if object is mutable.- Returns:
- true if object is mutable.
-
-