#include <xmltooling/io/GenericRequest.h>
Inheritance diagram for xmltooling::GenericRequest:
Public Member Functions | |
virtual const char * | getScheme () const =0 |
Returns the URL scheme of the request (http, https, ftp, ldap, etc. | |
virtual bool | isSecure () const =0 |
Returns true iff the request is over a confidential channel. | |
virtual const char * | getHostname () const =0 |
Returns hostname of service that received request. | |
virtual int | getPort () const =0 |
Returns incoming port. | |
virtual std::string | getContentType () const =0 |
Returns the MIME type of the request, if known. | |
virtual long | getContentLength () const =0 |
Returns the length of the request body, if known. | |
virtual const char * | getRequestBody () const =0 |
Returns the raw request body. | |
virtual const char * | getParameter (const char *name) const =0 |
Returns a decoded named parameter value from the request. | |
virtual std::vector< const char * >::size_type | getParameters (const char *name, std::vector< const char * > &values) const =0 |
Returns all of the decoded values of a named parameter from the request. | |
virtual std::string | getRemoteUser () const =0 |
Returns the transport-authenticated identity associated with the request, if authentication is solely handled by the transport. | |
virtual std::string | getAuthType () const |
Gets the authentication type associated with the request. | |
virtual std::string | getRemoteAddr () const =0 |
Returns the IP address of the client. | |
virtual const std::vector< XSECCryptoX509 * > & | getClientCertificates () const =0 |
Returns the chain of certificates sent by the client. |
This interface need not be threadsafe.
virtual std::string xmltooling::GenericRequest::getAuthType | ( | ) | const [inline, virtual] |
Gets the authentication type associated with the request.
virtual const std::vector<XSECCryptoX509*>& xmltooling::GenericRequest::getClientCertificates | ( | ) | const [pure virtual] |
Returns the chain of certificates sent by the client.
They are not guaranteed to be valid according to any particular definition.
virtual long xmltooling::GenericRequest::getContentLength | ( | ) | const [pure virtual] |
Returns the length of the request body, if known.
virtual std::string xmltooling::GenericRequest::getContentType | ( | ) | const [pure virtual] |
Returns the MIME type of the request, if known.
virtual const char* xmltooling::GenericRequest::getHostname | ( | ) | const [pure virtual] |
Returns hostname of service that received request.
virtual const char* xmltooling::GenericRequest::getParameter | ( | const char * | name | ) | const [pure virtual] |
Returns a decoded named parameter value from the request.
If a parameter has multiple values, only one will be returned.
name | the name of the parameter to return |
virtual std::vector<const char*>::size_type xmltooling::GenericRequest::getParameters | ( | const char * | name, | |
std::vector< const char * > & | values | |||
) | const [pure virtual] |
Returns all of the decoded values of a named parameter from the request.
All values found will be returned.
name | the name of the parameter to return | |
values | a vector in which to return pointers to the decoded values |
virtual int xmltooling::GenericRequest::getPort | ( | ) | const [pure virtual] |
Returns incoming port.
virtual std::string xmltooling::GenericRequest::getRemoteAddr | ( | ) | const [pure virtual] |
Returns the IP address of the client.
virtual std::string xmltooling::GenericRequest::getRemoteUser | ( | ) | const [pure virtual] |
Returns the transport-authenticated identity associated with the request, if authentication is solely handled by the transport.
virtual const char* xmltooling::GenericRequest::getRequestBody | ( | ) | const [pure virtual] |
Returns the raw request body.
virtual const char* xmltooling::GenericRequest::getScheme | ( | ) | const [pure virtual] |
Returns the URL scheme of the request (http, https, ftp, ldap, etc.
)
virtual bool xmltooling::GenericRequest::isSecure | ( | ) | const [pure virtual] |
Returns true iff the request is over a confidential channel.
Implemented in xmltooling::HTTPRequest.