Add the v16 api to schema service
[aai/schema-service.git] / aai-schema-service / src / main / resources / application.properties
1 # The following info parameters are being referenced by ajsc6                                                                                                                                                                           [4/1969]info.build.artifact=@project.artifactId@
2 info.build.name=@project.name@
3 info.build.description=@project.description@
4 info.build.version=@project.version@
5
6 spring.application.name=Schema Service Microservice
7 spring.jersey.type=filter
8
9 server.contextPath=${schema.uri.base.path}
10 spring.autoconfigure.exclude=\
11   org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,\
12   org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
13
14
15 # Add Jetty Selector and Acceptor Properties here
16 #The max number of active threads in this pool
17 jetty.threadPool.maxThreads=500
18 #The minimum number of threads always kept alive
19 jetty.threadPool.minThreads=10
20 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
21 server.tomcat.max-idle-time=60000
22
23 # If you get an application startup failure that the port is already taken
24 # If thats not it, please check if the key-store file path makes sense
25 server.local.startpath=aai-schema-service/src/main/resources/
26 server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties
27
28 server.port=8452
29 # Server SSL Related Attributes
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 # 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 schema.query.location=${server.local.startpath}/schema/${schema.source.name}/query/
45
46 schema.ingest.file=${server.local.startpath}/application.properties
47
48 # Schema Version Related Attributes
49
50 schema.uri.base.path=/aai/schema-service
51 # Lists all of the versions in the schema
52 schema.version.list=v10,v11,v12,v13,v14,v15,v16
53 # Specifies from which version should the depth parameter to default to zero
54 schema.version.depth.start=v10
55 # Specifies from which version should the related link be displayed in response payload
56 schema.version.related.link.start=v10
57 # Specifies from which version should the client see only the uri excluding host info
58 # Before this version server base will also be included
59 schema.version.app.root.start=v11
60 # Specifies from which version should the namespace be changed
61 schema.version.namespace.change.start=v12
62 # Specifies from which version should the client start seeing the edge label in payload
63 schema.version.edge.label.start=v12
64 # Specifies the version that the application should default to
65 schema.version.api.default=v16