NextApp Echo2
v2.1.1

nextapp.echo2.webrender.service
Interface SynchronizeService.ClientMessagePartProcessor

All Known Implementing Classes:
ClientAnalyzerProcessor
Enclosing class:
SynchronizeService

public static interface SynchronizeService.ClientMessagePartProcessor

An interface describing a ClientMessage MessagePart Processor. Implementations registered with the registerClientMessagePartProcessor() method will have their process() methods invoked when a matching message part is provided in a ClientMessage.


Method Summary
 java.lang.String getName()
          Returns the name of the ClientMessagePartProcessor.
 void process(UserInstance userInstance, org.w3c.dom.Element messagePartElement)
          Processes a MessagePart of a ClientMessage
 

Method Detail

getName

java.lang.String getName()
Returns the name of the ClientMessagePartProcessor. The processor will be invoked when a message part with its name is found within the ClientMessage.

Returns:
the name of the processor

process

void process(UserInstance userInstance,
             org.w3c.dom.Element messagePartElement)
Processes a MessagePart of a ClientMessage

Parameters:
userInstance - the relevant UserInstance
messagePartElement - the message part element to process

NextApp Echo2
v2.1.1