public interface RequestHandler<R extends Request<?,?,?>>
A request handler is able to process a request on behalf of the managed object repository represented by a
MOServer.- Version:
- 1.0
- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisSupported(int pduType) Checks whether the supplied PDU type is supported by this request handler.voidprocessPdu(R request, MOServer server) Processes a request on behalf of the suppliedMOServer.
-
Method Details
-
isSupported
boolean isSupported(int pduType) Checks whether the supplied PDU type is supported by this request handler.- Parameters:
pduType- a PDU type as defined byPDU.- Returns:
trueif the PDU type is supported.
-
processPdu
Processes a request on behalf of the suppliedMOServer.- Parameters:
request- aRequestinstance.server- aMOServercontaining the managed objects accessible by the request.
-