Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 1 | ### |
| 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 | # |
| 24 | xacml.PAP.papEngineFactory=org.onap.policy.xacml.std.pap.StdEngineFactory |
| 25 | |
| 26 | # |
| 27 | # Where we store our PAP PDP Group/Node information |
| 28 | # |
| 29 | xacml.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 | |
| 39 | xacml.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 | # |
| 45 | xacml.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 | # |
| 52 | xacml.rest.pap.heartbeat.interval=10000 |
| 53 | # |
| 54 | # Heartbeat connection timeout (in milliseconds) |
| 55 | # |
| 56 | xacml.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: |
| 64 | xacml.rest.pap.domain=com |
| 65 | |
| 66 | # Location where all the user workspaces are located. |
| 67 | xacml.rest.pap.workspace=workspace |
| 68 | |
| 69 | # Location where the GIT repository is located |
| 70 | xacml.rest.pap.repository=repository |
| 71 | |
| 72 | # new Property Please mention your PAP-REST webapps Location here. |
| 73 | xacml.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 |
| 79 | xacml.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 |
| 85 | xacml.rest.pap.filesystem.audit=false |
| 86 | |
| 87 | # id |
| 88 | xacml.rest.pap.userid=testpap |
| 89 | # pass |
| 90 | xacml.rest.pap.password=alpha123 |
| 91 | # pdps file |
| 92 | xacml.rest.pdp.idfile=test.properties |
| 93 | |
| 94 | #Properties for db access |
| 95 | javax.persistence.jdbc.driver=org.h2.Driver |
| 96 | javax.persistence.jdbc.url=jdbc:h2:file:./sql/xacmlTest |
| 97 | javax.persistence.jdbc.user=sa |
| 98 | javax.persistence.jdbc.password= |
| 99 | |
| 100 | #Time in ms which a Policy DB transaction will wait to get the transaction lock object |
| 101 | xacml.rest.pap.transaction.waitms=1000 |
| 102 | |
| 103 | #Policy DB transaction timeout in ms after it has obtained the transaction lock object |
| 104 | xacml.rest.pap.transaction.timeoutms=500 |
| 105 | |
| 106 | #Policy Audit timeout in ms after it has obtained the transaction lock object |
| 107 | xacml.rest.pap.audit.timeoutms=5000 |