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