summaryrefslogtreecommitdiffstats
path: root/branches
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-05-05 07:17:51 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-05-05 07:17:51 +0000
commit7f7b5af5b56186445065f694d68bd2726e997ca3 (patch)
treeff1bb16c1a3461cc69887dda7792baa518b6420a /branches
parent888e659b96b7ff454490a52a8956f8b9fa0b220b (diff)
Fixing NPE when no operation provided when creating invoker
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@771598 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches')
-rw-r--r--branches/sca-java-1.x/modules/policy-security-http/src/main/java/org/apache/tuscany/sca/policy/security/http/LDAPRealmAuthenticationServicePolicyProvider.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/branches/sca-java-1.x/modules/policy-security-http/src/main/java/org/apache/tuscany/sca/policy/security/http/LDAPRealmAuthenticationServicePolicyProvider.java b/branches/sca-java-1.x/modules/policy-security-http/src/main/java/org/apache/tuscany/sca/policy/security/http/LDAPRealmAuthenticationServicePolicyProvider.java
index 117e9a0009..dfe72bee36 100644
--- a/branches/sca-java-1.x/modules/policy-security-http/src/main/java/org/apache/tuscany/sca/policy/security/http/LDAPRealmAuthenticationServicePolicyProvider.java
+++ b/branches/sca-java-1.x/modules/policy-security-http/src/main/java/org/apache/tuscany/sca/policy/security/http/LDAPRealmAuthenticationServicePolicyProvider.java
@@ -59,7 +59,12 @@ public class LDAPRealmAuthenticationServicePolicyProvider implements PolicyProvi
}
public Interceptor createInterceptor(Operation operation) {
- List<LDAPRealmAuthenticationPolicy> policies = findPolicies(operation);
+ List<LDAPRealmAuthenticationPolicy> policies = null;
+
+ if (operation != null) {
+ policies = findPolicies(operation);
+ }
+
if (policies == null || policies.isEmpty()) {
return null;
} else {