Update traversal to use schema ingest changes
[aai/traversal.git] / aai-traversal / src / main / resources / application.properties
1 # The following info parameters are being referenced by ajsc6
2 info.build.artifact=aai-traversal
3 info.build.name=traversal
4 info.build.description=Traversal Microservice
5 info.build.version=1.1.0
6
7 spring.application.name=aai-traversal
8 spring.jersey.type=filter
9
10 server.contextPath=/
11 spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
12
13 spring.jersey.application-path=${schema.uri.base.path}
14
15 #The max number of active threads in this pool
16 jetty.threadPool.maxThreads=200
17 #The minimum number of threads always kept alive
18 jetty.threadPool.minThreads=8
19 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
20 server.tomcat.max-idle-time=60000
21
22 # If you get an application startup failure that the port is already taken
23 # If thats not it, please check if the key-store file path makes sense
24 server.local.startpath=aai-traversal/src/main/resources/
25 server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties
26
27 server.port=8446
28 server.ssl.enabled-protocols=TLSv1.1,TLSv1.2
29
30 # By default spring boot jetty will exclude the following ciphers
31 # We need to specifically add this to support tls v1.1
32 server.ssl.ciphers=^.*_(MD5|SHA|SHA1)$
33 server.ssl.client-auth=want
34 server.ssl.key-store-type=JKS
35
36 # Start of Internal Specific Properties
37 spring.profiles.active=production,one-way-ssl
38 server.ssl.key-store=${server.local.startpath}etc/auth/aai_keystore
39 server.ssl.key-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
40 server.ssl.trust-store=${server.local.startpath}etc/auth/aai_keystore
41 server.ssl.trust-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
42
43 schema.version.list=v10,v11,v12,v13,v14,v15,v16
44 # Specifies which component should the oxm be looking at
45 schema.source.name=onap
46 # End of Internal Specific Properties
47
48 # JMS bind address host port
49 jms.bind.address=tcp://localhost:61646
50
51 dmaap.ribbon.listOfServers=localhost:3904
52
53 # Schema related attributes for the oxm and edges
54 # Any additional schema related attributes should start with prefix schema
55
56 schema.configuration.location=N/A
57 # Location of where the oxm files are
58 schema.nodes.location=${server.local.startpath}/schema/${schema.source.name}/oxm/
59 # Location of where the dbedgerules files are
60 schema.edges.location=${server.local.startpath}/schema/${schema.source.name}/dbedgerules/
61 # Location of where the stored queries are
62 schema.queries.location=${server.local.startpath}/schema/${schema.source.name}/query/
63
64 schema.ingest.file=${server.local.startpath}/application.properties
65
66 # Schema Version Related Attributes
67 schema.uri.base.path=/aai
68 # Specifies from which version should the depth parameter to default to zero
69 schema.version.depth.start=v10
70 # Specifies from which version should the related link be displayed in response payload
71 schema.version.related.link.start=v10
72 # Specifies from which version should the client see only the uri excluding host info
73 # Before this version server base will also be included
74 schema.version.app.root.start=v11
75 # Specifies from which version should the namespace be changed
76 schema.version.namespace.change.start=v12
77 # Specifies from which version should the client start seeing the edge label in payload
78 schema.version.edge.label.start=v12
79 # Specifies the version that the application should default to
80 schema.version.api.default=v16
81
82 schema.translator.list=config
83 schema.service.base.url=https://localhost:8452/aai/schema-service/v1/
84 schema.service.nodes.endpoint=nodes?version=
85 schema.service.edges.endpoint=edgerules?version=
86 schema.service.versions.endpoint=versions
87 schema.service.custom.queries.endpoint=stored-queries
88
89 schema.service.ssl.key-store=${server.local.startpath}etc/auth/aai_keystore
90 schema.service.ssl.trust-store=${server.local.startpath}etc/auth/aai_keystore
91 schema.service.ssl.key-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
92 schema.service.ssl.trust-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0)
93 schema.service.versions.override=false