Add initial version of code
Initial version of rapp manager code added.
Issue-ID: NONRTRIC-872
Signed-off-by: aravind.est <aravindhan.a@est.tech>
Change-Id: I124b20a0790ba701d32089b66f81fc8b4e647e79
diff --git a/scripts/init/init-sme-spec.sh b/scripts/init/init-sme-spec.sh
new file mode 100755
index 0000000..da4a3cd
--- /dev/null
+++ b/scripts/init/init-sme-spec.sh
@@ -0,0 +1,46 @@
+#!/bin/bash
+
+# ============LICENSE_START===============================================
+# Copyright (C) 2023 Nordix Foundation. 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=================================================
+#
+
+SME_LOCATION="../sme/capifcore"
+cp ../scripts/init/getsmeswagger.go $SME_LOCATION
+cd $SME_LOCATION
+
+echo "Generating SME openapi spec..."
+
+if [ -f "getsmeswagger.go" ]; then
+ echo "Generating..."
+ go run getsmeswagger.go
+
+ echo "Copying generated specs..."
+ mkdir -p ../../rapp-manager-sme/src/main/resources/openapi
+ echo "Copying CommonData.yaml"
+ mv CommonData.yaml ../../rapp-manager-sme/src/main/resources/openapi
+ echo "Copying TS29122_CommonData.yaml"
+ mv TS29122_CommonData.yaml ../../rapp-manager-sme/src/main/resources/openapi
+ echo "Copying TS29571_CommonData.yaml"
+ mv TS29571_CommonData.yaml ../../rapp-manager-sme/src/main/resources/openapi
+ echo "Copying TS29222_CAPIF_API_Invoker_Management_API.yaml"
+ mv TS29222_CAPIF_API_Invoker_Management_API.yaml ../../rapp-manager-sme/src/main/resources/openapi
+ echo "Copying TS29222_CAPIF_API_Provider_Management_API.yaml"
+ mv TS29222_CAPIF_API_Provider_Management_API.yaml ../../rapp-manager-sme/src/main/resources/openapi
+ echo "Copying TS29222_CAPIF_Publish_Service_API.yaml"
+ mv TS29222_CAPIF_Publish_Service_API.yaml ../../rapp-manager-sme/src/main/resources/openapi
+else
+ echo "Unable to find the openapi spec generator."
+fi