blob: 9e7f92a11d65abea9b8d06ff8d7fad31331048d2 [file] [log] [blame]
Guo Ruijing073cc182017-07-31 08:47:35 +00001###
2# ============LICENSE_START=======================================================
3# ONAP-PDP
4# ================================================================================
5# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6# ================================================================================
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#
22# This is our factory that will create our engine
23#
24xacml.PAP.papEngineFactory=org.onap.policy.xacml.std.pap.StdEngineFactory
25
26#
27# Where we store our PAP PDP Group/Node information
28#
29xacml.pap.pdps=pdps
30#
31# Need the PAP's url (how PDPs will reach it) configured here
32# because we need it to generate the URLs of the Policy Files
33# sent to the PDPs in the configuration when the PAP is first brought up.
34# (In other cases, such as the PDP calling the PAP, we could generate this URL,
35# but for startup there is no other way to get it.)
36#
37#
38
39xacml.rest.pap.url=http://localhost:8070/pap/
40
41#
42# Upon startup, have the PAP servlet send latest configuration information to all
43# the PDP nodes it knows about.
44#
45xacml.rest.pap.initiate.pdp=true
46#
47# Heartbeat from PAP to PDPs
48#
49# How much time (in milliseconds) between heartbeats
50# (i.e. the time between completing the heartbeat with all PDPs and starting the next cycle)
51#
52xacml.rest.pap.heartbeat.interval=10000
53#
54# Heartbeat connection timeout (in milliseconds)
55#
56xacml.rest.pap.heartbeat.timeout=10000
57
58################################################################################################
59# Adding properties for getting properties previously used by PAP-ADMIN for creating Policies
60# THis is part of the Policy Creation API project
61################################################################################################
62
63# Set your domain here:
64xacml.rest.pap.domain=com
65
66# Location where all the user workspaces are located.
67xacml.rest.pap.workspace=workspace
68
69# Location where the GIT repository is located
70xacml.rest.pap.repository=repository
71
72# new Property Please mention your PAP-REST webapps Location here.
73xacml.rest.config.webapps=C:\\Second Tomcat\\apache-tomcat-8.0.23\\webapps\\ConfigPAP\\
74
75#Turn the audit on to synchronize the DB/file system
76#xacml.rest.pap.run.audit.flag=true
77#Turn the audit off to not synchronize the DB/file system
78#xacml.rest.pap.run.audit.flag=false
79xacml.rest.pap.run.audit.flag=false
80
81#Audit will synchronize the file system to match the contents of the DB
82#xacml.rest.pap.filesystem.audit=true
83#Audit will synchronize the DB to match the contents of the file system
84#xacml.rest.pap.filesystem.audit=false
85xacml.rest.pap.filesystem.audit=false
86
87# id
88xacml.rest.pap.userid=testpap
89# pass
90xacml.rest.pap.password=alpha123
91# pdps file
92xacml.rest.pdp.idfile=test.properties
93
94#Properties for db access
95javax.persistence.jdbc.driver=org.h2.Driver
96javax.persistence.jdbc.url=jdbc:h2:file:./sql/xacmlTest
97javax.persistence.jdbc.user=sa
98javax.persistence.jdbc.password=
99
100#Time in ms which a Policy DB transaction will wait to get the transaction lock object
101xacml.rest.pap.transaction.waitms=1000
102
103#Policy DB transaction timeout in ms after it has obtained the transaction lock object
104xacml.rest.pap.transaction.timeoutms=500
105
106#Policy Audit timeout in ms after it has obtained the transaction lock object
107xacml.rest.pap.audit.timeoutms=5000