blob: 57e1d708b421cfc5c38f6939936823e2cd3de680 [file] [log] [blame]
Guo Ruijing073cc182017-07-31 08:47:35 +00001###
2# ============LICENSE_START=======================================================
3# ONAP-PDP-REST
4# ================================================================================
Michael Mokryc5d97e82018-02-05 09:48:59 -06005# Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Guo Ruijing073cc182017-07-31 08:47:35 +00006# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18# ============LICENSE_END=========================================================
19###
20
21# Default XACML Properties File for PDP RESTful servlet
22#
23# Standard API Factories
24#
25xacml.dataTypeFactory=com.att.research.xacml.std.StdDataTypeFactory
26xacml.pdpEngineFactory=com.att.research.xacmlatt.pdp.ATTPDPEngineFactory
27xacml.pepEngineFactory=com.att.research.xacml.std.pep.StdEngineFactory
28# NOT USED SEE BELOW xacml.pipFinderFactory=org.onap.policy.xacml.std.pip.StdPIPFinderFactory
29xacml.traceEngineFactory=com.att.research.xacml.std.trace.LoggingTraceEngineFactory
30#
31# AT&T PDP Implementation Factories
32#
33xacml.att.evaluationContextFactory=com.att.research.xacmlatt.pdp.std.StdEvaluationContextFactory
34xacml.att.combiningAlgorithmFactory=com.att.research.xacmlatt.pdp.std.StdCombiningAlgorithmFactory
35xacml.att.functionDefinitionFactory=org.onap.policy.xacml.custom.OnapFunctionDefinitionFactory
36# NOT USED SEE BELOW xacml.att.policyFinderFactory=org.onap.policy.pdp.std.StdPolicyFinderFactory
37# creteUpdate Policy Implementation Class details.
38createUpdatePolicy.impl.className=org.onap.policy.pdp.rest.api.services.CreateUpdatePolicyServiceImpl
39# AAF Implementation class details
40aafClient.impl.className=org.onap.policy.utils.AAFPolicyClientImpl
41#
42# AT&T RESTful PDP Implementation Factories
43#
44xacml.pipFinderFactory=org.onap.policy.pdp.rest.impl.XACMLPdpPIPFinderFactory
45xacml.att.policyFinderFactory=org.onap.policy.pdp.rest.XACMLPdpPolicyFinderFactory
46#
47# When set to true, this flag tells the StdPolicyFinderFactory to combined all the root policy files into
48# into one PolicySet and use the given Policy Algorithm.
49#
50xacml.att.policyFinderFactory.combineRootPolicies=urn:com:att:xacml:3.0:policy-combining-algorithm:combined-permit-overrides
51#
52# PDP RESTful API properties
53#
54# Set this to the address where the XACML-PAP-REST servlet is running
55xacml.rest.pap.url=http://localhost:8070/pap/
56
57#if multiple paps exist, the xacml.rest.pap.url can be removed and they can be defined like this:
58#xacml.rest.pap.urls=http://localhost:9090/pap/,http://localhost:9091/pap/
59
60#
61# Give the running PDP an ID for the PAP. The url that its running as is a good choice.
62# The PAP identifies PDP's using the URL of the PDP.
63#
64xacml.rest.pdp.id=http://localhost:8082/pdp/
65
66# Give the port number used for the PDP
67
68xacml.jmx.port=0
69
70
71# Notification Properties
72# Notifcation type: websocket, ueb or dmaap... if left blank websocket is the default
73NOTIFICATION_TYPE=websocket
74NOTIFICATION_SERVERS=
75NOTIFICATION_TOPIC=
76NOTIFICATION_DELAY=
77UEB_API_KEY=
78UEB_API_SECRET=
79DMAAP_AAF_LOGIN=
80DMAAP_AAF_PASSWORD=
81
82#
83# Set the directory where the PDP holds its Policy Cache and PIP Configuration
84#
85xacml.rest.pdp.config=config
86
87xacml.rest.pdp.webapps=/home/users/PolicyEngine/webapps/ConfigPAP/
88#
89# Initialize register with PAP servlet
90#
91xacml.rest.pdp.register=true
92#
93# Sleep period in seconds between register attempts
94#
95xacml.rest.pdp.register.sleep=15
96#
97# number of attempts to register. -1 means keep trying forever.
98#
99xacml.rest.pdp.register.retries=-1
100#
101# max number of bytes in a POST of a XML/JSON request
102# old value #32767
103xacml.rest.pdp.maxcontent=99999999
104#
105# Set UserID here
106xacml.rest.pdp.userid=testpdp
107# Set Password here
108xacml.rest.pdp.password=alpha456
109
110# id PAP
111xacml.rest.pap.userid=testpap
112#if multiple paps have different logins, they can be defined like this:
113#http\://localhost\:9090/pap/.xacml.rest.pap.userid=testpap
114
115# pass PAP
116xacml.rest.pap.password=alpha123
117#http\://localhost\:9090/pap/.xacml.rest.pap.password=alpha123
118
119# Delay for Notifications Don't change this. Value in milliSec.
120xacml.rest.notification.delay=30
Tej, Tarune0385922017-09-15 00:52:13 -0400121
122# Client interval to ping notification service.
123CLIENT_INTERVAL=15000
124
Guo Ruijing073cc182017-07-31 08:47:35 +0000125# Buffer Size.
Michael Mokryc5d97e82018-02-05 09:48:59 -0600126REQUEST_BUFFER_SIZE=50
Guo Ruijing073cc182017-07-31 08:47:35 +0000127
128#properties for MySql xacml database: PLEASE DO NOT REMOVE... NEEDED FOR APIs
rb714792a628e2017-09-21 13:51:10 -0400129javax.persistence.jdbc.driver=org.mariadb.jdbc.Driver
130javax.persistence.jdbc.url=jdbc:mariadb://localhost:3306/onap_sdk
Guo Ruijing073cc182017-07-31 08:47:35 +0000131javax.persistence.jdbc.user=policy_user
132javax.persistence.jdbc.password=policy_user
133
134
135#***Properties for IntegrityMonitor integration defined in XACMLRestProperties.java***
136
137#The name of the PDP. Must be unique across the system
138xacml.rest.pdp.resource.name=site_1.pdp_1
139
140#***Properties for IntegrityMonitor integration defined in IntegrityMonitorProperties.java***
141
142#Interval between forward progress counter updates in seconds
143fp_monitor_interval=30
144
145#Number of forward progress counter failures before failover
146failed_counter_threshold=3
147
148#Interval in seconds between test transactions if there is no other traffic
149test_trans_interval=10
150
151#Interval in seconds between updates of the forward progress counter in the DB
152write_fpc_interval=5
153
154#Name of the site
155site_name=site_1
156
157#Node type
158node_type=pdp_xacml
159
160#Dependency groups are groups of resources upon which a node operational state is dependent upon).
161#Each group is a comma-separated list of resource names and groups are separated by a semicolon.
162#A group may contain one or more members. Resource names must match the resource names defined
163#in the respective servers' properties files
164dependency_groups=site_1.pdplp_1;site_1.astragw_1;site_1.brmsgw_1
165
166# this can be DEVL, TEST, PROD
167ENVIRONMENT=DEVL
168xacml.rest.pep.idfile = client.properties
169
170#AAF Policy Name space
171#Not Mandatory for Open Onap
172policy.aaf.namespace =
173policy.aaf.resource =
174# Decision Response settings.
175# can be either PERMIT or DENY.
176decision.indeterminate.response=PERMIT