com.sap.ip.me.api.sync
Interface InboundProcessor

All Superinterfaces:
java.io.Serializable

public interface InboundProcessor
extends java.io.Serializable

Represents an particular instance which can process inbound containers for method given in getMethodName. This interface must be implemented by each class which processes inbound containers. Before processing is "active", the given inbound processor must be registered (see inbound processor registry) for a method.
Because of registration process each class which implements this interface must also implement java.io.Serializable.

Author:
SAP

Method Summary
 java.lang.String getMethodName()
          Gets the name of the method that can be processed by this InboundProcessor object.
 void process(InboundContainer inboundContainer)
          Processes the given inbound container
 

Method Detail

getMethodName

public java.lang.String getMethodName()
Gets the name of the method that can be processed by this InboundProcessor object.

Returns:
The methodName value

process

public void process(InboundContainer inboundContainer)
Processes the given inbound container

Parameters:
inboundContainer - The inbound container to be processed


Copyright © 2005 SAP AG. All Rights Reserved.