Package de.hybris.platform.sap.sapordermgmtbol.transaction.salesdocument.backend.impl.messagemapping
Class TestImplementationMessageMappingCallback
- java.lang.Object
-
- de.hybris.platform.sap.sapordermgmtbol.transaction.salesdocument.backend.impl.messagemapping.TestImplementationMessageMappingCallback
-
- All Implemented Interfaces:
MessageMappingCallbackProcessor
public class TestImplementationMessageMappingCallback extends java.lang.Object implements MessageMappingCallbackProcessor
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringTEST_MESSAGE_MAPPING_CALLBACK_ID
-
Constructor Summary
Constructors Constructor Description TestImplementationMessageMappingCallback()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()Should return the id of the message mapping callback processor.booleanprocess(BackendMessage message)Method is called during message replacement.
-
-
-
Field Detail
-
TEST_MESSAGE_MAPPING_CALLBACK_ID
public static final java.lang.String TEST_MESSAGE_MAPPING_CALLBACK_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
process
public boolean process(BackendMessage message)
Description copied from interface:MessageMappingCallbackProcessorMethod is called during message replacement. Implement this message if you want to change the message before it gets replaced. E.g.: Replace message arguments .
It's also possible to remove messages via returning false.- Specified by:
processin interfaceMessageMappingCallbackProcessor- Parameters:
message- Back end message to evaluate- Returns:
- Do we want to keep the message?
-
getId
public java.lang.String getId()
Description copied from interface:MessageMappingCallbackProcessorShould return the id of the message mapping callback processor. Returned string must be equals to the callbackId specified in a message rule (messages.xml) in order to get called- Specified by:
getIdin interfaceMessageMappingCallbackProcessor- Returns:
- ID of callback
-
-