blob: be9a3faa4523bcafeac91f8d6f8bf1abf4ff3961 [file] [log] [blame]
Michael Mokrycb9087a2019-05-09 14:32:41 -05001#
2# Properties that the embedded PDP engine uses to configure and load
3#
4# Standard API Factories
5#
6xacml.dataTypeFactory=com.att.research.xacml.std.StdDataTypeFactory
7xacml.pdpEngineFactory=com.att.research.xacmlatt.pdp.ATTPDPEngineFactory
8xacml.pepEngineFactory=com.att.research.xacml.std.pep.StdEngineFactory
9xacml.pipFinderFactory=com.att.research.xacml.std.pip.StdPIPFinderFactory
10xacml.traceEngineFactory=com.att.research.xacml.std.trace.LoggingTraceEngineFactory
11#
12# AT&T PDP Implementation Factories
13#
14xacml.att.evaluationContextFactory=com.att.research.xacmlatt.pdp.std.StdEvaluationContextFactory
15xacml.att.combiningAlgorithmFactory=com.att.research.xacmlatt.pdp.std.StdCombiningAlgorithmFactory
16xacml.att.functionDefinitionFactory=com.att.research.xacmlatt.pdp.std.StdFunctionDefinitionFactory
17#
18# ONAP PDP Implementation Factories
19#
20xacml.att.policyFinderFactory=org.onap.policy.pdp.xacml.application.common.OnapPolicyFinderFactory
21
22#
23# Use a root combining algorithm
24#
25xacml.att.policyFinderFactory.combineRootPolicies=urn:oasis:names:tc:xacml:3.0:policy-combining-algorithm:deny-overrides
26
27#
28# PIP Engine Definitions
29#
30count-recent-operations.classname=org.onap.policy.pdp.xacml.application.common.operationshistory.CountRecentOperationsPip
31count-recent-operations.issuer=urn:org:onap:xacml:guard:count-recent-operations
32count-recent-operations.name=CountRecentOperations
33count-recent-operations.description=Returns operation counts based on time window
34count-recent-operations.persistenceunit=OperationsHistoryPU
35
36get-operation-outcome.classname=org.onap.policy.pdp.xacml.application.common.operationshistory.GetOperationOutcomePip
37get-operation-outcome.issuer=urn:org:onap:xacml:guard:get-operation-outcome
38get-operation-outcome.name=GetOperationOutcome
39get-operation-outcome.description=Returns operation outcome
40get-operation-outcome.persistenceunit=OperationsHistoryPU
41
42#
43# Make pips available to finder
44#
45xacml.pip.engines=count-recent-operations,get-operation-outcome
46
47#
48# JPA Properties
49#
50javax.persistence.jdbc.driver=org.mariadb.jdbc.Driver
51javax.persistence.jdbc.url=jdbc:mariadb://{{ .Values.global.mariadb.nameOverride }}:3306/operationshistory
52javax.persistence.jdbc.user=policy_user
jhh59ce22d2019-05-14 17:59:36 -050053javax.persistence.jdbc.password=cG9saWN5X3VzZXI=