Merge "[CONSUL] Add limits to consul chart."
[oom.git] / kubernetes / policy / components / policy-xacml-pdp / resources / config / xacml.properties
1 {{/*
2 #
3 # Properties that the embedded PDP engine uses to configure and load
4 #
5 # Standard API Factories
6 #
7 */}}
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 #
52 javax.persistence.jdbc.driver=org.mariadb.jdbc.Driver
53 javax.persistence.jdbc.url=jdbc:mariadb://{{ .Values.db.service.name }}:{{ .Values.db.service.internalPort }}/operationshistory
54 javax.persistence.jdbc.user=${SQL_USER}
55 javax.persistence.jdbc.password=${SQL_PASSWORD}