handler
Identifier:
net.bluemind.core.net.bluemind.core.handler
Since:
Blue Mind 1.0
Description:
Blue Mind core supports handlers that will respond to a web service URL. A handler with the name xxxx will handle all http content POSTed to /services/xxxx/... urls.
Configuration Markup:
<!ELEMENT extension (handler)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT handler EMPTY>
<!ATTLIST handler
implementation CDATA #REQUIRED
>
- implementation - The fully qualified name of a class implementing
net.bluemind.core.server.ISyncHandler
.
Examples:
The following is an example of the extension point:
<extension point="net.bluemind.core.handler">
<handler
implementation="net.bluemind.core.handler.host.SystemHandler">
</handler>
</extension>
API Information:
All handlers are instances of net.bluemind.core.server.ISyncHandler
Supplied Implementation:
Blue Mind itself has a number of pre-defined handlers. Particular installs may include additional handlers as required.
Copyright © Blue Mind SAS, 2012