Update traversal from AJSC 2 to Spring Boot
[aai/traversal.git] / aai-traversal / src / main / resources / etc / sysprops / sys-props.properties
1 #This file is used for defining AJSC system properties for different configuration schemes and is necessary for the AJSC to run properly.
2 #The sys-props.properties file is used for running locally. The template.sys-props.properties file will be used when deployed
3 #to a SOA/CSI Cloud node.
4
5 #AJSC System Properties. The following properties are required for ALL AJSC services. If you are adding System Properties for your
6 #particular service, please add them AFTER all AJSC related System Properties. 
7
8 #For Cadi Authorization, use value="authentication-scheme-1
9 CadiAuthN=authentication-scheme-1
10
11 #For Basic Authorization, use value="authentication-scheme-1
12 authN=authentication-scheme-2
13
14 #Persistence used for AJSC meta-data storage. For most environments, "file" should be used.
15 ajscPersistence=file
16
17 # If using hawtio for local development, these properties will allow for faster server startup and usage for local development
18 hawtio.authenticationEnabled=false
19 hawtio.config.pullOnStartup=false
20
21 #Removes the extraneous restlet console output
22 org.restlet.engine.loggerFacadeClass=org.restlet.ext.slf4j.Slf4jLoggerFacade
23
24 #server.host property to be enabled for local DME2 related testing
25 #server.host=<Your network IP address> 
26
27 #Enable/disable SSL (values=true/false). This property also determines which protocol to use (https if true, http otherwise), to register services into GRM through DME2.
28 enableSSL=false
29
30 #Enable/disable csi logging (values=true/false). This can be disabled during local development
31 csiEnable=false
32
33 #Enable/disable EJB Container
34 ENABLE_EJB=false
35
36 #Enable/disable OSGI
37 isOSGIEnable=false
38
39 #Configure JMS Queue (WMQ/TIBCO)
40 JMS_BROKER=WMQ
41
42 #JMS properties needed for CSI Logging
43 JMS_TIBCO_PROVIDER_URL=ONAPserverTBD
44 JMS_LOGGER_USER_NAME=spm2
45 JMS_LOGGER_PASSWORD=its4test
46 JMS_LOGGER_AUDIT_QUEUE_BINDING=pub.m2e.audit.logger.queue
47 JMS_LOGGER_PERF_QUEUE_BINDING=log.csi.performance02
48
49 #WMQ connectivity
50 JMS_WMQ_PROVIDER_URL=aftdsc://AFTUAT/34.07/-84.28
51 JMS_WMQ_CONNECTION_FACTORY_NAME=aftdsc://AFTUAT/?service=CSILOG,version=1.0,bindingType=fusionBus,envContext=Q,Q25A=YES
52 JMS_WMQ_INITIAL_CONNECTION_FACTORY_NAME=com.att.aft.jms.FusionCtxFactory
53 JMS_WMQ_AUDIT_DESTINATION_NAME=queue:///CSILOGQL.M2E.DASHBOARD01.NOT.Q25A
54 JMS_WMQ_PERF_DESTINATION_NAME=queue:///CSILOGQL.M2E.PERFORMANCE01.NOT.Q25A
55
56
57 #CSI related variables for CSM framework
58 csm.hostname=d1a-m2e-q112m2e1.edc.cingular.net
59
60 #Enable/disable endpoint level logging (values=true/false). This can be disabled during local development
61 endpointLogging=false
62
63 #SOA_CLOUD_ENV is used to register your service with dme2 and can be turned off for local development (values=true/false).
64 SOA_CLOUD_ENV=false
65
66 #CONTINUE_ON_LISTENER_EXCEPTION will exit the application if there is a DME2 exception at the time of registration.
67 CONTINUE_ON_LISTENER_EXCEPTION=false
68
69 #Jetty Container ThreadCount Configuration Variables
70 AJSC_JETTY_ThreadCount_MIN=10
71 AJSC_JETTY_ThreadCount_MAX=500
72 AJSC_JETTY_IDLETIME_MAX=60000
73 AJSC_JETTY_BLOCKING_QUEUE_SIZE=100
74
75 #Camel Context level default threadPool Profile configuration
76 CAMEL_POOL_SIZE=10
77 CAMEL_MAX_POOL_SIZE=20
78 CAMEL_KEEP_ALIVE_TIME=60
79 CAMEL_MAX_QUEUE_SIZE=1000
80
81 #File Monitor configurations
82 ssf_filemonitor_polling_interval=5
83 ssf_filemonitor_threadpool_size=10
84
85 #GRM/DME2 System Properties
86 AFT_DME2_CONN_IDLE_TIMEOUTMS=5000
87 AJSC_ENV=SOACLOUD
88
89 SOACLOUD_NAMESPACE=com.att.ajsc
90 SOACLOUD_ENV_CONTEXT=DEV
91 SOACLOUD_PROTOCOL=http
92 SOACLOUD_ROUTE_OFFER=DEFAULT
93
94 sslport=8446
95 server.port=8083
96
97 AFT_LATITUDE=23.4
98 AFT_LONGITUDE=33.6
99 AFT_ENVIRONMENT=AFTUAT
100
101 #Restlet Component Default Properties
102 RESTLET_COMPONENT_CONTROLLER_DAEMON=true
103 RESTLET_COMPONENT_CONTROLLER_SLEEP_TIME_MS=100
104 RESTLET_COMPONENT_INBOUND_BUFFER_SIZE=8192
105 RESTLET_COMPONENT_MIN_THREADS=1
106 RESTLET_COMPONENT_MAX_THREADS=10
107 RESTLET_COMPONENT_LOW_THREADS=8
108 RESTLET_COMPONENT_MAX_QUEUED=0
109 RESTLET_COMPONENT_MAX_CONNECTIONS_PER_HOST=-1
110 RESTLET_COMPONENT_MAX_TOTAL_CONNECTIONS=-1
111 RESTLET_COMPONENT_OUTBOUND_BUFFER_SIZE=8192
112 RESTLET_COMPONENT_PERSISTING_CONNECTIONS=true
113 RESTLET_COMPONENT_PIPELINING_CONNECTIONS=false
114 RESTLET_COMPONENT_THREAD_MAX_IDLE_TIME_MS=60000
115 RESTLET_COMPONENT_USE_FORWARDED_HEADER=false
116 RESTLET_COMPONENT_REUSE_ADDRESS=true
117
118 #Externalized jar and properties file location. In CSI environments, there are a few libs that have been externalized to aid
119 #in CSTEM maintenance of the versions of these libs. The most important to the AJSC is the DME2 lib. Not only is this lib necessary
120 #for proper registration of your AJSC service on a node, but it is also necessary for running locally as well. Another framework
121 #used in CSI envs is the CSM framework. These 2 framework libs are shown as "provided" dependencies within the pom.xml. These
122 #dependencies will be copied into the target/commonLibs folder with the normal "mvn clean package" goal of the AJSC. They will
123 #then be added to the classpath via AJSC_EXTERNAL_LIB_FOLDERS system property. Any files (mainly property files) that need
124 #to be on the classpath should be added to the AJSC_EXTERNAL_PROPERTIES_FOLDERS system property. The default scenario when 
125 #testing your AJSC service locally will utilize the target/commonLibs directory for DME2 and CSM related artifacts and 2 
126 #default csm properties files will be used for local testing with anything CSM knorelated.
127 #NOTE: we are using maven-replacer-plugin to replace "(doubleUnderscore)basedir(doubleUnderscore)" with ${basedir} within the 
128 #target directory for running locally. Multiple folder locations can be separated by the pipe ("|") character.
129 #Please, NOTE: for running locally, we are setting this system property in the antBuild/build.xml "runLocal" target and in the 
130 #"runAjsc" profile within the pom.xml. This is to most effectively use maven variables (${basedir}, most specifically. Therefore,
131 #when running locally, the following 2 properties should be set within the profile(s) themselves. 
132 #Example: target/commonLibs|target/otherLibs
133 #AJSC_EXTERNAL_LIB_FOLDERS=__basedir__/target/commonLibs
134 #AJSC_EXTERNAL_PROPERTIES_FOLDERS=__basedir__/ajsc-shared-config/etc
135 #End of AJSC System Properties
136
137 #Service System Properties. Please, place any Service related System Properties below.
138 KEY_STORE_PASSWORD=OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0
139 KEY_MANAGER_PASSWORD=OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0
140 AAI_CORE_VERSION=1.2.0-SNAPSHOT