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