Michael Arrastia | c05416c | 2018-11-29 11:35:51 +0000 | [diff] [blame] | 1 | # |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # org.onap.aai |
| 4 | # ================================================================================ |
| 5 | # Copyright © 2018 AT&T Intellectual Property. All rights reserved. |
| 6 | # Copyright © 2018 Amdocs |
| 7 | # ================================================================================ |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | # you may not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | # ============LICENSE_END========================================================= |
| 20 | # |
| 21 | |
| 22 | ####################################### |
| 23 | # Schema Version Related Attributes |
| 24 | ####################################### |
Michael Arrastia | c05416c | 2018-11-29 11:35:51 +0000 | [diff] [blame] | 25 | schema.uri.base.path=/aai |
| 26 | # Lists all of the versions in the schema |
Michael Arrastia | 320bf2f | 2018-12-20 10:48:24 +0000 | [diff] [blame] | 27 | schema.version.list=v10,v11,v12,v13,v14,v15 |
Michael Arrastia | c05416c | 2018-11-29 11:35:51 +0000 | [diff] [blame] | 28 | # Specifies from which version should the depth parameter to default to zero |
Michael Arrastia | 320bf2f | 2018-12-20 10:48:24 +0000 | [diff] [blame] | 29 | schema.version.depth.start=v10 |
Michael Arrastia | c05416c | 2018-11-29 11:35:51 +0000 | [diff] [blame] | 30 | # Specifies from which version should the related link be displayed in response payload |
| 31 | schema.version.related.link.start=v10 |
| 32 | # Specifies from which version should the client see only the uri excluding host info |
| 33 | # Before this version server base will also be included |
| 34 | schema.version.app.root.start=v11 |
| 35 | # Specifies from which version should the namespace be changed |
Michael Arrastia | 320bf2f | 2018-12-20 10:48:24 +0000 | [diff] [blame] | 36 | schema.version.namespace.change.start=v11 |
Michael Arrastia | c05416c | 2018-11-29 11:35:51 +0000 | [diff] [blame] | 37 | # Specifies from which version should the client start seeing the edge label in payload |
| 38 | schema.version.edge.label.start=v12 |
| 39 | # Specifies the version that the application should default to |
Michael Arrastia | 320bf2f | 2018-12-20 10:48:24 +0000 | [diff] [blame] | 40 | schema.version.api.default=v15 |
Michael Arrastia | c05416c | 2018-11-29 11:35:51 +0000 | [diff] [blame] | 41 | |
| 42 | ####################################### |
| 43 | # Schema Location Related Attributes |
| 44 | ####################################### |
Michael Arrastia | c05416c | 2018-11-29 11:35:51 +0000 | [diff] [blame] | 45 | schema.configuration.location=NA |
| 46 | schema.nodes.location=/opt/app/spike/bundleconfig/etc/onap/oxm |
| 47 | schema.edges.location=/opt/app/spike/bundleconfig/etc/onap/dbedgerules |
Michael Arrastia | 320bf2f | 2018-12-20 10:48:24 +0000 | [diff] [blame] | 48 | |
| 49 | ############################################################################### |
| 50 | # Schema Service Related Attributes |
| 51 | ############################################################################### |
| 52 | # Specifies whether to use the schema service (schema-service) or local schema files (config) |
| 53 | schema.translator.list=config |
| 54 | |
| 55 | schema.service.base.url=https://<host>:8452/aai/schema-service/v1/ |
| 56 | schema.service.nodes.endpoint=nodes?version= |
| 57 | schema.service.edges.endpoint=edgerules?version= |
| 58 | schema.service.versions.endpoint=versions |
| 59 | |
| 60 | #Default rest client is the two-way-ssl |
| 61 | schema.service.client=two-way-ssl |
| 62 | #Replace the below with the A&AI client key store |
| 63 | schema.service.ssl.key-store=${CONFIG_HOME}/auth/client-cert.p12 |
| 64 | #Replace the below with the A&AI tomcat trust store |
| 65 | schema.service.ssl.trust-store=${CONFIG_HOME}/auth/tomcat_keystore |