8b1c6e3370c9ab0b81d71c48d35104a81a4a1aaf
[aai/schema-service.git] / aai-schema-service / src / test / resources / application-test.properties
1 spring.application.name=aai-schema-service
2 spring.jersey.type=filter
3
4 server.servlet.context-path=${schema.uri.base.path}
5
6 spring.autoconfigure.exclude=\
7   org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,\
8   org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
9 #The max number of active threads in this pool
10 jetty.threadPool.maxThreads=200
11 #The minimum number of threads always kept alive
12 jetty.threadPool.minThreads=8
13 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
14 server.tomcat.max-idle-time=60000
15
16 # If you get an application startup failure that the port is already taken
17 # If thats not it, please check if the key-store file path makes sense
18 server.local.startpath=src/main/resources/
19 server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties
20
21 server.port=8452
22 security.require-ssl=false
23 server.ssl.enabled=false
24 # Server SSL Related Attributes
25 #server.ssl.enabled-protocols=TLSv1.1,TLSv1.2
26 #server.ssl.key-store=${server.local.startpath}etc/auth/aai_keystore
27 #server.ssl.key-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
28 #server.ssl.trust-store=${server.local.startpath}etc/auth/aai_keystore
29 #server.ssl.trust-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
30 #server.ssl.client-auth=want
31 #server.ssl.key-store-type=JKS
32
33 # Schema related attributes for the oxm and edges
34 # Any additional schema related attributes should start with prefix schema
35 schema.configuration.location=N/A
36 schema.source.name=onap
37 schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/
38 schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/
39 schema.ingest.file=${server.local.startpath}/application.properties
40 # Schema Version Related Attributes
41 schema.uri.base.path=/aai/schema-service
42 # Lists all of the versions in the schema
43 schema.version.list=v10,v11,v12,v13,v14,v15,v16,v17,v18,v19,v20,v20,v21,v22,v23,v24,v25,v26,v27
44 # Specifies from which version should the depth parameter to default to zero
45 schema.version.depth.start=v10
46 # Specifies from which version should the related link be displayed in response payload
47 schema.version.related.link.start=v10
48 # Specifies from which version should the client see only the uri excluding host info
49 # Before this version server base will also be included
50 schema.version.app.root.start=v11
51 # Specifies from which version should the namespace be changed
52 schema.version.namespace.change.start=v12
53 # Specifies from which version should the client start seeing the edge label in payload
54 schema.version.edge.label.start=v12
55 # Specifies the version that the application should default to
56 schema.version.api.default=v27