Update test config for schema ingest library
[aai/test-config.git] / aai-resources / appconfig / application.properties
1 # The following info parameters are being referenced by ajsc6
2 info.build.artifact=aai-resources
3 info.build.name=resources
4 info.build.description=Resources Microservice
5 info.build.version=1.2.0
6
7 spring.application.name=aai-resources
8 spring.jersey.type=filter
9
10 server.contextPath=/
11
12 spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
13
14 spring.jersey.application-path=${schema.uri.base.path}
15
16 spring.profiles.active=production,one-way-ssl,dmaap
17 #The max number of active threads in this pool
18 server.tomcat.max-threads=200
19 #The minimum number of threads always kept alive
20 server.tomcat.min-Spare-Threads=25
21 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
22 server.tomcat.max-idle-time=60000
23
24 # If you get an application startup failure that the port is already taken
25 # If thats not it, please check if the key-store file path makes sense
26 server.local.startpath=aai-resources/src/main/resources/
27 server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties
28
29 server.port=8447
30 server.ssl.enabled-protocols=TLSv1.1,TLSv1.2
31 server.ssl.key-store=${server.local.startpath}etc/auth/aai_keystore
32 server.ssl.key-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
33 server.ssl.trust-store=${server.local.startpath}etc/auth/aai_keystore
34 server.ssl.trust-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
35 server.ssl.client-auth=want
36 server.ssl.key-store-type=JKS
37
38 # JMS bind address host port
39 jms.bind.address=tcp://localhost:61647
40 dmaap.ribbon.listOfServers=mr.api.simpledemo.onap.org:3904
41
42 # Schema related attributes for the oxm and edges
43 # Any additional schema related attributes should start with prefix schema
44 schema.configuration.location=N/A
45 schema.source.name=onap
46 schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/
47 schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/
48
49 schema.ingest.file=${server.local.startpath}/application.properties
50
51 # Schema Version Related Attributes
52
53 schema.uri.base.path=/aai
54 # Lists all of the versions in the schema
55 schema.version.list=v8,v9,v10,v11,v12,v13,v14
56 # Specifies from which version should the depth parameter to default to zero
57 schema.version.depth.start=v9
58 # Specifies from which version should the related link be displayed in response payload
59 schema.version.related.link.start=v10
60 # Specifies from which version should the client see only the uri excluding host info
61 # Before this version server base will also be included
62 schema.version.app.root.start=v11
63 # Specifies from which version should the namespace be changed
64 schema.version.namespace.change.start=v12
65 # Specifies from which version should the client start seeing the edge label in payload
66 schema.version.edge.label.start=v12
67 # Specifies the version that the application should default to
68 schema.version.api.default=v14
69