public class SimplePublisherMetadataSource extends Object
PublisherMetadataSource that allows for
 configuration of a single channel name, payload expression, and
 array of header key=value expressions.| Modifier and Type | Field and Description | 
|---|---|
static String | 
ARGUMENT_MAP_VARIABLE_NAME  | 
static String | 
EXCEPTION_VARIABLE_NAME  | 
static ExpressionParser | 
EXPRESSION_PARSER  | 
static String | 
METHOD_NAME_VARIABLE_NAME  | 
static Expression | 
RETURN_VALUE_EXPRESSION  | 
static String | 
RETURN_VALUE_VARIABLE_NAME  | 
| Constructor and Description | 
|---|
SimplePublisherMetadataSource()  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getChannelName(Method method)
Returns the channel name to which Messages should be published
 for this particular method invocation. 
 | 
Expression | 
getExpressionForPayload(Method method)
Returns the SpEL expression to be evaluated for creating the Message
 payload. 
 | 
Map<String,Expression> | 
getExpressionsForHeaders(Method method)
Returns the map of expression strings to be evaluated for any headers
 that should be set on the published Message. 
 | 
void | 
setChannelName(String channelName)  | 
void | 
setHeaderExpressions(Map<String,String> headerExpressions)  | 
void | 
setPayloadExpression(String payloadExpression)  | 
public static final String METHOD_NAME_VARIABLE_NAME
public static final String ARGUMENT_MAP_VARIABLE_NAME
public static final String RETURN_VALUE_VARIABLE_NAME
public static final String EXCEPTION_VARIABLE_NAME
public static final ExpressionParser EXPRESSION_PARSER
public static final Expression RETURN_VALUE_EXPRESSION
public void setChannelName(String channelName)
public String getChannelName(Method method)
method - The Method.public void setPayloadExpression(String payloadExpression)
public Expression getExpressionForPayload(Method method)
method - the Method.public Map<String,Expression> getExpressionsForHeaders(Method method)
method - The Method.