Add the queries endpoint and files
[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.contextPath=${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 # If you get an application startup failure that the port is already taken
16 # If thats not it, please check if the key-store file path makes sense
17 server.local.startpath=src/main/resources/
18 server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties
19
20 server.port=8452
21 # Server SSL Related Attributes
22 server.ssl.enabled-protocols=TLSv1.1,TLSv1.2
23 server.ssl.key-store=${server.local.startpath}etc/auth/aai_keystore
24 server.ssl.key-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
25 server.ssl.trust-store=${server.local.startpath}etc/auth/aai_keystore
26 server.ssl.trust-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
27 server.ssl.client-auth=want
28 server.ssl.key-store-type=JKS
29
30 # Schema related attributes for the oxm and edges
31 # Any additional schema related attributes should start with prefix schema
32 schema.configuration.location=N/A
33 schema.source.name=onap
34 schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/
35 schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/
36 schema.ingest.file=${server.local.startpath}/application.properties
37 # Schema Version Related Attributes
38 schema.uri.base.path=/aai/schema-service
39 # Lists all of the versions in the schema
40 schema.version.list=v10,v11,v12,v13,v14,v15
41 # Specifies from which version should the depth parameter to default to zero
42 schema.version.depth.start=v10
43 # Specifies from which version should the related link be displayed in response payload
44 schema.version.related.link.start=v10
45 # Specifies from which version should the client see only the uri excluding host info
46 # Before this version server base will also be included
47 schema.version.app.root.start=v11
48 # Specifies from which version should the namespace be changed
49 schema.version.namespace.change.start=v12
50 # Specifies from which version should the client start seeing the edge label in payload
51 schema.version.edge.label.start=v12
52 # Specifies the version that the application should default to
53 schema.version.api.default=v15