diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2011-11-11 00:53:27 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2011-11-11 00:53:27 +0000 |
commit | c7b93dbaccd6d2aab200d2f1db8d59e56c32670b (patch) | |
tree | 0b7f06073b9313ba27e0762b535cdae1c22c0602 | |
parent | ff389604d6e9552eb162ddae885286dee2f870b8 (diff) |
Fixing refactor mismatch that was providing wrong operation selector implementation
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1200672 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-2.x/trunk/modules/binding-http-runtime/src/main/java/org/apache/tuscany/sca/binding/http/operationselector/provider/HTTPRPCOperationSelectorProviderFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/modules/binding-http-runtime/src/main/java/org/apache/tuscany/sca/binding/http/operationselector/provider/HTTPRPCOperationSelectorProviderFactory.java b/sca-java-2.x/trunk/modules/binding-http-runtime/src/main/java/org/apache/tuscany/sca/binding/http/operationselector/provider/HTTPRPCOperationSelectorProviderFactory.java index bc34a86af5..a82e8cf9f1 100644 --- a/sca-java-2.x/trunk/modules/binding-http-runtime/src/main/java/org/apache/tuscany/sca/binding/http/operationselector/provider/HTTPRPCOperationSelectorProviderFactory.java +++ b/sca-java-2.x/trunk/modules/binding-http-runtime/src/main/java/org/apache/tuscany/sca/binding/http/operationselector/provider/HTTPRPCOperationSelectorProviderFactory.java @@ -48,7 +48,7 @@ public class HTTPRPCOperationSelectorProviderFactory implements OperationSelecto return new OperationSelectorProvider(){
@Override
public Interceptor createInterceptor() {
- return new HTTPDefaultServiceOperationSelectorInterceptor(endpoint);
+ return new HTTPRPCServiceOperationSelectorInterceptor(endpoint);
}
@Override
|