@Deprecated public class FSRequest extends Request
Request
.
It extends from the abstract base class AbstractRequest
.Modifier | Constructor and Description |
---|---|
protected |
FSRequest()
Deprecated.
|
|
FSRequest(Element root)
Deprecated.
Constructor creates a
FSRequest object from
a XML Document Element. |
|
FSRequest(String requestId,
List contents)
Deprecated.
Constructor creates
Request object. |
|
FSRequest(String requestId,
Query query)
Deprecated.
Constructor creates
Request object. |
Modifier and Type | Method and Description |
---|---|
String |
getID()
Deprecated.
Returns the value of
id attribute. |
int |
getMinorVersion()
Deprecated.
Returns the
MinorVersion . |
static Request |
parseXML(String xml)
Deprecated.
Parses the
XML Document String to construct a
Request object. |
void |
setID(String id)
Deprecated.
Sets the value of
id attribute. |
void |
setMinorVersion(int version)
Deprecated.
Sets the
MinorVersion . |
String |
toXMLString()
Deprecated.
Creates a String representation of the
<samlp:Request>
element. |
String |
toXMLString(boolean includeNS,
boolean declareNS)
Deprecated.
Creates a String representation of the
<samlp:Request>
element. |
String |
toXMLString(boolean includeNS,
boolean declareNS,
boolean includeHeader)
Deprecated.
Creates a String representation of the
<samlp:Request>
element. |
getAssertionArtifact, getAssertionIDReference, getContentType, getQuery, setSignature, signXML, toString, toString, toString
addRespondWith, getIssueInstant, getMajorVersion, getRequestID, getRespondWith, getSignature, isSignatureValid, isSigned, setIssueInstant, setMajorVersion, setRequestID
protected FSRequest()
public FSRequest(String requestId, Query query) throws SAMLException
Request
object. This
shall only be used at the client side to construct a
Request
object.
NOTE: The content here is just the body for the Request. The
constructor will add MajorVersion
,
MinorVersion
, etc. to form a complete Request.requestId
- the request identifier, if this
value is null then one will be generated.query
- AuthenticationQuery
to be included in
the Request.SAMLException
- on error.public FSRequest(String requestId, List contents) throws SAMLException
Request
object. This
shall only be used at the client side to construct a
Request
object.
NOTE: The content here is just the body for the Request. The
constructor will add MajorVersion
,
MinorVersion
, etc. to form a complete Request.requestId
- the request identifier, if this
value is null then one will be generated.contents
- a List
of objects that are the contents
of Request that the client wants to send to the server.
It could be an :
AuthenticationQuery
,
AuthorizationDecisionQuery
,
AttributeQuery
, 1 or more
AssertionIDReference
, or 1 or more of
AssertionArtifact
.SAMLException
- throws errors on exception.public FSRequest(Element root) throws SAMLException
FSRequest
object from
a XML
Document Element.root
- the XML
Document Element.SAMLException
- on error.public String getID()
id
attribute.id
attribute.FSRequest.setID(String)
public void setID(String id)
id
attribute.id
- the value of id
attribute.FSRequest.getID()
public int getMinorVersion()
MinorVersion
.getMinorVersion
in class AbstractRequest
MinorVersion
.FSRequest.setMinorVersion(int)
public void setMinorVersion(int version)
MinorVersion
.setMinorVersion
in class AbstractRequest
version
- the MinorVersion
.FSRequest.getMinorVersion()
public static Request parseXML(String xml) throws SAMLException
XML
Document String to construct a
Request
object. This method shall only be used at the server
side to reconstruct a Request object based on the XML document
received from client.xml
- the XML
Document string.Request
object.SAMLException
- on error.public String toXMLString()
<samlp:Request>
element.XML
String representing the request.public String toXMLString(boolean includeNS, boolean declareNS)
<samlp:Request>
element.includeNS
- Determines whether or not the names pace qualifier
is prepended to the Element when converteddeclareNS
- Determines whether or not the name space is declared
within the Element.public String toXMLString(boolean includeNS, boolean declareNS, boolean includeHeader)
<samlp:Request>
element.includeNS
- Determines whether or not the name space qualifier
is prepended to the Element when converteddeclareNS
- Determines whether or not the name space is declared
within the Element.includeHeader
- Determines whether the output include the XML
declaration header.Copyright © 2010-2018, ForgeRock All Rights Reserved.