Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Michael Mokry | cb9087a | 2019-05-09 14:32:41 -0500 | [diff] [blame] | 2 | # |
| 3 | # Properties that the embedded PDP engine uses to configure and load |
| 4 | # |
| 5 | # Standard API Factories |
| 6 | # |
Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 7 | */}} |
Michael Mokry | cb9087a | 2019-05-09 14:32:41 -0500 | [diff] [blame] | 8 | xacml.dataTypeFactory=com.att.research.xacml.std.StdDataTypeFactory |
| 9 | xacml.pdpEngineFactory=com.att.research.xacmlatt.pdp.ATTPDPEngineFactory |
| 10 | xacml.pepEngineFactory=com.att.research.xacml.std.pep.StdEngineFactory |
| 11 | xacml.pipFinderFactory=com.att.research.xacml.std.pip.StdPIPFinderFactory |
| 12 | xacml.traceEngineFactory=com.att.research.xacml.std.trace.LoggingTraceEngineFactory |
| 13 | # |
| 14 | # AT&T PDP Implementation Factories |
| 15 | # |
| 16 | xacml.att.evaluationContextFactory=com.att.research.xacmlatt.pdp.std.StdEvaluationContextFactory |
| 17 | xacml.att.combiningAlgorithmFactory=com.att.research.xacmlatt.pdp.std.StdCombiningAlgorithmFactory |
| 18 | xacml.att.functionDefinitionFactory=com.att.research.xacmlatt.pdp.std.StdFunctionDefinitionFactory |
| 19 | # |
| 20 | # ONAP PDP Implementation Factories |
| 21 | # |
| 22 | xacml.att.policyFinderFactory=org.onap.policy.pdp.xacml.application.common.OnapPolicyFinderFactory |
| 23 | |
| 24 | # |
| 25 | # Use a root combining algorithm |
| 26 | # |
| 27 | xacml.att.policyFinderFactory.combineRootPolicies=urn:oasis:names:tc:xacml:3.0:policy-combining-algorithm:deny-overrides |
| 28 | |
| 29 | # |
| 30 | # PIP Engine Definitions |
| 31 | # |
| 32 | count-recent-operations.classname=org.onap.policy.pdp.xacml.application.common.operationshistory.CountRecentOperationsPip |
| 33 | count-recent-operations.issuer=urn:org:onap:xacml:guard:count-recent-operations |
| 34 | count-recent-operations.name=CountRecentOperations |
| 35 | count-recent-operations.description=Returns operation counts based on time window |
| 36 | count-recent-operations.persistenceunit=OperationsHistoryPU |
| 37 | |
| 38 | get-operation-outcome.classname=org.onap.policy.pdp.xacml.application.common.operationshistory.GetOperationOutcomePip |
| 39 | get-operation-outcome.issuer=urn:org:onap:xacml:guard:get-operation-outcome |
| 40 | get-operation-outcome.name=GetOperationOutcome |
| 41 | get-operation-outcome.description=Returns operation outcome |
| 42 | get-operation-outcome.persistenceunit=OperationsHistoryPU |
| 43 | |
| 44 | # |
| 45 | # Make pips available to finder |
| 46 | # |
| 47 | xacml.pip.engines=count-recent-operations,get-operation-outcome |
| 48 | |
| 49 | # |
| 50 | # JPA Properties |
| 51 | # |
Jim Hahn | 0292c08 | 2021-02-16 08:34:42 -0500 | [diff] [blame] | 52 | eclipselink.target-database=MySQL |
Michael Mokry | cb9087a | 2019-05-09 14:32:41 -0500 | [diff] [blame] | 53 | javax.persistence.jdbc.driver=org.mariadb.jdbc.Driver |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 54 | javax.persistence.jdbc.url=jdbc:mariadb://{{ .Values.db.service.name }}:{{ .Values.db.service.internalPort }}/operationshistory |
Krzysztof Opasiak | 7e31efc | 2020-04-01 00:21:45 +0200 | [diff] [blame] | 55 | javax.persistence.jdbc.user=${SQL_USER} |
Taka Cho | ebd6295 | 2020-10-08 13:50:09 -0400 | [diff] [blame] | 56 | javax.persistence.jdbc.password=${SQL_PASSWORD} |