#include <Handler.h>
Inheritance diagram for Handler:
Public Methods | |
Handler () | |
virtual | ~Handler () |
const string & | getOption (const string &sArg) |
void | setOptionList (const map< string, string > *OptionList) |
int AXISCALL | getType () |
Protected Attributes | |
const map< string, string > * | m_pOption |
string | m_sEmpty |
|
Constructor. |
|
Destructor. |
|
Returns the value of the given option.
|
|
Gets and returns the type of the handler. The return value here is always NORMAL_HANDLER.
Implements HandlerBase. |
|
This method is automatically called by the Axis Engine when it loads a Handler. The purpose of this method is described below: For each Handler we could configure various parameters/options in the Server.wsdd or Client.wsdd. If the engine finds any such options then the engine will automaticaly call this method of each handler and will set those options to each Handler by calling this method of each Handler which those configuration options belong to. Normaly a Handler writer doesn't need to interact/deal with this method.
|
|
Used to store the options which are configured in the WSDD. |
|
Represents an empty string. |