public class Request extends Object
Request
class represents a request. The most important
information in this Request object is the content of this request. The
content in this Request object can be an arbitrary String. This makes it
possible that high level services and applications can define their own
request XML DTDs and then embed the corresponding XML document into this
Request object as its content.RequestSet
Constructor and Description |
---|
Request(String content)
Contructs an instance of Request class with the content of the Request.
|
Modifier and Type | Method and Description |
---|---|
String |
getContent()
Gets the content of the Request.
|
String |
getDtdID()
Gets the ID of the DTD for the content of the Request
|
String |
getSessionID()
Gets the session ID of the request.
|
void |
setContent(String content)
Sets the content of the Request.
|
void |
setDtdID(String id)
Sets the ID of the DTD for the content of the Request
|
void |
setSessionID(String id)
Sets the session ID of the request.
|
public Request(String content)
content
- The content of this Request.public void setDtdID(String id)
id
- The ID of the DTD for the content of the Request.public String getDtdID()
public void setSessionID(String id)
id
- A string representing the session ID of the request.public String getSessionID()
public String getContent()
public void setContent(String content)
content
- The content of the Request in String format.Copyright © 2010–2025 Open Identity Platform Community. All rights reserved.