diff options
author | Dan Timoney <dtimoney@att.com> | 2020-06-08 12:16:24 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-06-19 14:15:10 -0400 |
commit | d99e2dfa5c1db6daed4e98ea208089969a0867cf (patch) | |
tree | 9c4cdfdfff13d37f184cb4f1aa86a6d23bebf6f1 /ms/generic-resource-api/src/main/resources/svclogic.properties | |
parent | 5563f521d8ca0b38f93d51246d2aea8c6648c3a4 (diff) |
Implement GRA preload and service data objects
Implements CRUD operations and RPCs for GRA preload data, as well
as adding data object for service-data.
Change-Id: I93d268e7f1cfbcd4e839e122f72ce02928dad807
Issue-ID: SDNC-1205
Issue-ID: SDNC-1209
Issue-ID: SDNC-1210
Issue-ID: SDNC-1213
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'ms/generic-resource-api/src/main/resources/svclogic.properties')
-rw-r--r-- | ms/generic-resource-api/src/main/resources/svclogic.properties | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ms/generic-resource-api/src/main/resources/svclogic.properties b/ms/generic-resource-api/src/main/resources/svclogic.properties new file mode 100644 index 0000000..63271e5 --- /dev/null +++ b/ms/generic-resource-api/src/main/resources/svclogic.properties @@ -0,0 +1,29 @@ +### +# ============LICENSE_START======================================================= +# ONAP : CCSDK +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property. All rights +# reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +### + +org.onap.ccsdk.sli.dbtype = jdbc +org.onap.ccsdk.sli.jdbc.url=jdbc:mariadb://dbhost:3306/sdnctl +org.onap.ccsdk.sli.jdbc.driver=org.mariadb.jdbc.Driver +org.onap.ccsdk.sli.jdbc.database = sdnctl +org.onap.ccsdk.sli.jdbc.user = sdnc +org.onap.ccsdk.sli.jdbc.password = abc123 + +sliapi.serviceLogicDirectory=/opt/onap/sdnc/svclogic/graphs |