summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/modules/policy-security
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-03-19 06:54:15 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-03-19 06:54:15 +0000
commit6b0891e66b9af360d39556f994fc41408f07def0 (patch)
treeab361d4f25fe00879458ac7e21090b22ad73e2eb /branches/sca-java-1.x/modules/policy-security
parentaebfad596fc190f05539520471d7d45392db28c1 (diff)
Removing system.out debug message
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@755851 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/modules/policy-security')
-rw-r--r--branches/sca-java-1.x/modules/policy-security/src/main/java/org/apache/tuscany/sca/policy/security/jaas/JaasAuthenticationInterceptor.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/branches/sca-java-1.x/modules/policy-security/src/main/java/org/apache/tuscany/sca/policy/security/jaas/JaasAuthenticationInterceptor.java b/branches/sca-java-1.x/modules/policy-security/src/main/java/org/apache/tuscany/sca/policy/security/jaas/JaasAuthenticationInterceptor.java
index 9b30ff13c8..ea7e12cfaf 100644
--- a/branches/sca-java-1.x/modules/policy-security/src/main/java/org/apache/tuscany/sca/policy/security/jaas/JaasAuthenticationInterceptor.java
+++ b/branches/sca-java-1.x/modules/policy-security/src/main/java/org/apache/tuscany/sca/policy/security/jaas/JaasAuthenticationInterceptor.java
@@ -19,6 +19,7 @@
package org.apache.tuscany.sca.policy.security.jaas;
+import java.security.Principal;
import java.util.List;
import javax.security.auth.Subject;
@@ -65,9 +66,6 @@ public class JaasAuthenticationInterceptor implements Interceptor {
CallbackHandler callbackHandler = (CallbackHandler)policy.getCallbackHandlerClass().newInstance();
LoginContext lc = new LoginContext(policy.getConfigurationName(), callbackHandler);
lc.login();
- //
- Subject subject = lc.getSubject();
- System.out.println(">>> Security subject:" + subject.toString());
}
} catch (Exception e) {
throw new ServiceRuntimeException(e);