Class GatewayMethodMetadata
java.lang.Object
org.springframework.integration.gateway.GatewayMethodMetadata
public class GatewayMethodMetadata extends Object
Represents the metadata associated with a Gateway method. This is most useful when there are
multiple methods per Gateway interface.
The sub-element of a <gateway> element would look like this: <method name="echo" request-channel="inputA" reply-timeout="2" request-timeout="200"/>
- Since:
- 2.0
- Author:
- Oleg Zhurakousky, Gary Russell, Artem Bilan
-
Constructor Summary
Constructors Constructor Description GatewayMethodMetadata()
-
Method Summary
Modifier and Type Method Description Map<String,Expression>
getHeaderExpressions()
Expression
getPayloadExpression()
String
getReplyChannelName()
String
getReplyTimeout()
String
getRequestChannelName()
String
getRequestTimeout()
void
setHeaderExpressions(Map<String,Expression> headerExpressions)
void
setPayloadExpression(Expression payloadExpression)
void
setReplyChannelName(String replyChannelName)
void
setReplyTimeout(String replyTimeout)
void
setRequestChannelName(String requestChannelName)
void
setRequestTimeout(String requestTimeout)
-
Constructor Details
-
GatewayMethodMetadata
public GatewayMethodMetadata()
-
-
Method Details