summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/pomba/contextbuilder/sdnc/AAIClientCertCondition.java
diff options
context:
space:
mode:
authorGeora Basky <georab@amdocs.com>2018-11-13 16:13:31 -0500
committerGeora Basky <georab@amdocs.com>2018-11-13 16:19:34 -0500
commit794fe767942bbdc3f21c46fa2da841817106105b (patch)
tree8e666156d30dac1c292bcdea255f2a4cbd7a3bdd /src/main/java/org/onap/pomba/contextbuilder/sdnc/AAIClientCertCondition.java
parent46116d2c304dc3df4de06cee353da52daa9ce8ab (diff)
Adding client cert SSL support for AAI Rest client
Change-Id: I6fd32c777d610c3f4e222fa0c55552968342b43a Issue-ID: LOG-808 Signed-off-by: Geora Basky <georab@amdocs.com>
Diffstat (limited to 'src/main/java/org/onap/pomba/contextbuilder/sdnc/AAIClientCertCondition.java')
-rw-r--r--src/main/java/org/onap/pomba/contextbuilder/sdnc/AAIClientCertCondition.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/java/org/onap/pomba/contextbuilder/sdnc/AAIClientCertCondition.java b/src/main/java/org/onap/pomba/contextbuilder/sdnc/AAIClientCertCondition.java
new file mode 100644
index 0000000..113ba31
--- /dev/null
+++ b/src/main/java/org/onap/pomba/contextbuilder/sdnc/AAIClientCertCondition.java
@@ -0,0 +1,32 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 Amdocs
+ * ============================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=====================================================
+ */
+package org.onap.pomba.contextbuilder.sdnc;
+
+import org.springframework.context.annotation.Condition;
+import org.springframework.context.annotation.ConditionContext;
+import org.springframework.core.type.AnnotatedTypeMetadata;
+
+public class AAIClientCertCondition implements Condition {
+
+ @Override
+ public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata)
+ {
+ String authenticionMode = conditionContext.getEnvironment().getProperty("aai.authentication");
+ return authenticionMode.equalsIgnoreCase("client_cert");
+ }
+}