Package jadex.platform.service.security
Class SecurityAgent.ReencryptRequestHandler
- java.lang.Object
-
- jadex.platform.service.security.SecurityAgent.ReencryptRequestHandler
-
- All Implemented Interfaces:
IMessageHandler
,IUntrustedMessageHandler
- Enclosing class:
- SecurityAgent
protected class SecurityAgent.ReencryptRequestHandler extends java.lang.Object implements IUntrustedMessageHandler
Handler dealing with remote reencryption requests.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ReencryptRequestHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handleMessage(ISecurityInfo secinfos, IMsgHeader header, java.lang.Object msg)
Handle the message.boolean
isHandling(ISecurityInfo secinfos, IMsgHeader header, java.lang.Object msg)
Test if handler should handle a message.boolean
isRemove()
Test if handler should be removed.
-
-
-
Method Detail
-
isHandling
public boolean isHandling(ISecurityInfo secinfos, IMsgHeader header, java.lang.Object msg)
Description copied from interface:IMessageHandler
Test if handler should handle a message.- Specified by:
isHandling
in interfaceIMessageHandler
- Returns:
- True if it should handle the message.
-
isRemove
public boolean isRemove()
Description copied from interface:IMessageHandler
Test if handler should be removed.- Specified by:
isRemove
in interfaceIMessageHandler
- Returns:
- True if it should be removed.
-
handleMessage
public void handleMessage(ISecurityInfo secinfos, IMsgHeader header, java.lang.Object msg)
Description copied from interface:IMessageHandler
Handle the message.- Specified by:
handleMessage
in interfaceIMessageHandler
header
- The header.msg
- The message.
-
-