From 2c9c36e7af90ef230f70ef9480435c70e98771ab Mon Sep 17 00:00:00 2001 From: slaws Date: Tue, 21 Jun 2011 16:08:48 +0000 Subject: Add a binding.ws specific policy set and capture the order in which the interceptors should be called so that this can be explicitly checked by the test. The test also looks at the result of the matchin process which is not correct at present because "appliesTo" processing is not performed for runtime resolved references. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1138071 13f79535-47bb-0310-9956-ffa450edef68 --- .../interceptors/src/main/java/helloworld/HelloWorldService.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sca-java-2.x/trunk/testing/itest/policy/interceptors/src/main/java/helloworld/HelloWorldService.java') diff --git a/sca-java-2.x/trunk/testing/itest/policy/interceptors/src/main/java/helloworld/HelloWorldService.java b/sca-java-2.x/trunk/testing/itest/policy/interceptors/src/main/java/helloworld/HelloWorldService.java index 8c3284eb84..6040132f2c 100644 --- a/sca-java-2.x/trunk/testing/itest/policy/interceptors/src/main/java/helloworld/HelloWorldService.java +++ b/sca-java-2.x/trunk/testing/itest/policy/interceptors/src/main/java/helloworld/HelloWorldService.java @@ -32,8 +32,7 @@ public class HelloWorldService implements HelloWorld { public String getGreetings(String name) { Subject subject = requestContext.getSecuritySubject(); String response = "Hello " + name; - - System.out.println("At service: " + response); + StatusImpl.appendStatus("At service", response); return response; } } -- cgit v1.2.3