diff options
Diffstat (limited to 'packages/base/src/files/install/servers/pdp')
-rw-r--r-- | packages/base/src/files/install/servers/pdp/bin/config/policyLogger.properties | 44 | ||||
-rw-r--r-- | packages/base/src/files/install/servers/pdp/bin/xacml.pdp.properties | 125 |
2 files changed, 169 insertions, 0 deletions
diff --git a/packages/base/src/files/install/servers/pdp/bin/config/policyLogger.properties b/packages/base/src/files/install/servers/pdp/bin/config/policyLogger.properties new file mode 100644 index 000000000..0deb1b3d6 --- /dev/null +++ b/packages/base/src/files/install/servers/pdp/bin/config/policyLogger.properties @@ -0,0 +1,44 @@ +### +# ============LICENSE_START======================================================= +# ECOMP Policy Engine +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +### + +################################### Set concurrentHashMap and timer info ####################### +#Timer initial delay and the delay between in milliseconds before task is to be execute. +timer.delay.time=1000 +#Timer scheduleAtFixedRate period - time in milliseconds between successive task executions. +check.interval= 30000 +#Longest time an event info can be stored in the concurrentHashMap for logging - in seconds. +event.expired.time=86400 +#Size of the concurrentHashMap which stores the event starting time, etc - when its size reaches this limit, the Timer gets executed +#to remove all expired records from this concurrentHashMap. +concurrentHashMap.limit=5000 +#Size of the concurrentHashMap - when its size drops to this point, stop the Timer +stop.check.point=2500 +################################### Set logging format ############################################# +# set EELF for EELF logging format, set LOG4J for using log4j, set SYSTEMOUT for using system.out.println +logger.type=EELF +#################################### Set level for EELF or SYSTEMOUT logging ################################## +# Set level for debug file. Set DEBUG to enable .info, .warn and .debug; set INFO for enable .info and .warn; set OFF to disable all +debugLogger.level=INFO +# Set level for metrics file. Set OFF to disable; set ON to enable +metricsLogger.level=ON +# Set level for error file. Set OFF to disable; set ON to enable +error.level=ON +# Set level for audit file. Set OFF to disable; set ON to enable +audit.level=ON diff --git a/packages/base/src/files/install/servers/pdp/bin/xacml.pdp.properties b/packages/base/src/files/install/servers/pdp/bin/xacml.pdp.properties new file mode 100644 index 000000000..860107ff9 --- /dev/null +++ b/packages/base/src/files/install/servers/pdp/bin/xacml.pdp.properties @@ -0,0 +1,125 @@ +### +# ============LICENSE_START======================================================= +# ECOMP Policy Engine +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +### + +# Default XACML Properties File for PDP RESTful servlet +# +# Standard API Factories +# +xacml.dataTypeFactory=com.att.research.xacml.std.StdDataTypeFactory +xacml.pdpEngineFactory=com.att.research.xacmlatt.pdp.ATTPDPEngineFactory +xacml.pepEngineFactory=com.att.research.xacml.std.pep.StdEngineFactory +# NOT USED SEE BELOW xacml.pipFinderFactory=com.att.research.xacml.std.pip.StdPIPFinderFactory +xacml.traceEngineFactory=com.att.research.xacml.std.trace.LoggingTraceEngineFactory +# +# AT&T PDP Implementation Factories +# +xacml.att.evaluationContextFactory=com.att.research.xacmlatt.pdp.std.StdEvaluationContextFactory +xacml.att.combiningAlgorithmFactory=com.att.research.xacmlatt.pdp.std.StdCombiningAlgorithmFactory +xacml.att.functionDefinitionFactory=org.openecomp.policy.xacml.custom.EcompFunctionDefinitionFactory +# NOT USED SEE BELOW xacml.att.policyFinderFactory=com.att.research.xacmlatt.pdp.std.StdPolicyFinderFactory + +# +# AT&T RESTful PDP Implementation Factories +# +xacml.pipFinderFactory=org.openecomp.policy.pdp.rest.impl.XACMLPdpPIPFinderFactory +xacml.att.policyFinderFactory=org.openecomp.policy.pdp.rest.XACMLPdpPolicyFinderFactory +# +# When set to true, this flag tells the StdPolicyFinderFactory to combined all the root policy files into +# into one PolicySet and use the given Policy Algorithm. +# +xacml.att.policyFinderFactory.combineRootPolicies=urn:com:att:xacml:3.0:policy-combining-algorithm:combined-deny-overrides +# +# PDP RESTful API properties +# +# Set this to the address where the XACML-PAP-REST servlet is running +# http://localhost:9090/pap/ +xacml.rest.pap.url=${{REST_PAP_URL}} +#if multiple paps exist, the xacml.rest.pap.url can be removed and they can be defined like this: +#xacml.rest.pap.urls=http://localhost:9090/pap/,http://localhost:9091/pap/ +# +# Give the running PDP an ID for the PAP. The url that its running as is a good choice. +# The PAP identifies PDP's using the URL of the PDP. +# +xacml.rest.pdp.id=${{REST_PDP_ID}} +# +# Give the JMX port number used for the PDP +xacml.jmx.port=${{TOMCAT_JMX_PORT}} +# +# Notifcation type: websocket or ueb +# +xacml.notification.type=websocket,UEB +xacml.ueb.cluster=${{UEB_CLUSTER}} +# +# Set the directory where the PDP holds its Policy Cache and PIP Configuration +# +xacml.rest.pdp.config=${{REST_PDP_CONFIG}} + +xacml.rest.pdp.webapps=${{REST_PDP_WEBAPPS}} +# +# Initialize register with PAP servlet +# +xacml.rest.pdp.register=${{REST_PDP_REGISTER}} +# +# Sleep period in seconds between register attempts +# +xacml.rest.pdp.register.sleep=${{REST_PDP_REGISTER_SLEEP}} +# +# number of attempts to register. -1 means keep trying forever. +# +xacml.rest.pdp.register.retries=${{REST_PDP_REGISTER_RETRIES}} +# +# max number of bytes in a POST of a XML/JSON request +# +xacml.rest.pdp.maxcontent=${{REST_PDP_MAXCONTENT}} +# +# Set UserID here +xacml.rest.pdp.userid=${{PDP_HTTP_USER_ID}} +# Set Password here +xacml.rest.pdp.password=${{PDP_HTTP_PASSWORD}} +# id PAP +xacml.rest.pap.userid=${{PDP_PAP_PDP_HTTP_USER_ID}} +# pass PAP +xacml.rest.pap.password=${{PDP_PAP_PDP_HTTP_PASSWORD}} +# Delay for Notifications Don't change this. Value in milliSec. +xacml.rest.notification.delay=30 +# Request Buffer Size. +REQUEST_BUFFER_SIZE=5 +#***Properties for IntegrityMonitor integration defined in XACMLRestProperties.java*** +#The name of the PDP. Must be unique across the system +xacml.rest.pdp.resource.name=${{resource_name}} + +#***Properties for IntegrityMonitor integration defined in IntegrityMonitorProperties.java*** +site_name=${{site_name}} +node_type=${{node_type}} +dependency_groups=${{dependency_groups}} +fp_monitor_interval=${{fp_monitor_interval}} +failed_counter_threshold=${{failed_counter_threshold}} +test_trans_interval=${{test_trans_interval}} +write_fpc_interval=${{write_fpc_interval}} +max_fpc_update_interval=${{max_fpc_update_interval}} +test_via_jmx=${{test_via_jmx}} + +#database properties needed by IntegrityMonitor +javax.persistence.jdbc.driver=${{JDBC_DRIVER}} +javax.persistence.jdbc.url=${{JDBC_URL}} +javax.persistence.jdbc.user=${{JDBC_USER}} +javax.persistence.jdbc.password=${{JDBC_PASSWORD}} +# Environment should be Set either DEV, TEST or PROD +ENVIRONMENT=${{ENVIRONMENT}} |