Split sdc into onboarding and catalog 16/94516/1
authorKanagaraj Manickam <mkr1481@gmail.com>
Thu, 29 Aug 2019 10:14:10 +0000 (15:44 +0530)
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Thu, 29 Aug 2019 10:14:10 +0000 (15:44 +0530)
Issue-ID: CLI-166

Change-Id: I25bac40b8e5ebb92fd852c27782ef56ce0c7a795
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcCatalogBasicAuthLoginCommandDublin.java [moved from products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcBasicAuthLoginCommandDublin.java with 82% similarity]
products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcOnboardingBasicAuthLoginCommandDublin.java [new file with mode: 0644]
products/onap-dublin/auth/src/main/resources/META-INF/services/org.onap.cli.fw.cmd.OnapCommand
products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-catalog-dublin.yaml [moved from products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-dublin.yaml with 95% similarity]
products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-onboarding-dublin.yaml [new file with mode: 0644]

@@ -19,6 +19,6 @@ package org.onap.cli.cmd.auth;
 import org.onap.cli.fw.http.cmd.BasicAuthLoginCommand;
 import org.onap.cli.fw.schema.OnapCommandSchema;
 
-@OnapCommandSchema(schema = "basic-login-onap-sdc-dublin.yaml")
-public class OnapSdcBasicAuthLoginCommandDublin extends BasicAuthLoginCommand {
+@OnapCommandSchema(schema = "basic-login-onap-sdc-catalog-dublin.yaml")
+public class OnapSdcCatalogBasicAuthLoginCommandDublin extends BasicAuthLoginCommand {
 }
diff --git a/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcOnboardingBasicAuthLoginCommandDublin.java b/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcOnboardingBasicAuthLoginCommandDublin.java
new file mode 100644 (file)
index 0000000..1e92bee
--- /dev/null
@@ -0,0 +1,24 @@
+/*
+ * Copyright © Intel Corporation 2019
+ *
+ * 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.
+ */
+
+package org.onap.cli.cmd.auth;
+
+import org.onap.cli.fw.http.cmd.BasicAuthLoginCommand;
+import org.onap.cli.fw.schema.OnapCommandSchema;
+
+@OnapCommandSchema(schema = "basic-login-onap-sdc-onboarding-dublin.yaml")
+public class OnapSdcOnboardingBasicAuthLoginCommandDublin extends BasicAuthLoginCommand {
+}
index 8755884..a903052 100644 (file)
@@ -14,5 +14,6 @@
 
 org.onap.cli.cmd.auth.OnapBasicAuthLoginCommandDublin
 org.onap.cli.cmd.auth.OnapBasicAuthLogoutCommandDublin
-org.onap.cli.cmd.auth.OnapSdcBasicAuthLoginCommandDublin
+org.onap.cli.cmd.auth.OnapSdcCatalogBasicAuthLoginCommandDublin
+org.onap.cli.cmd.auth.OnapSdcOnboardingBasicAuthLoginCommandDublin
 org.onap.cli.cmd.auth.OnapPolicyBasicAuthLoginCommandDublin
diff --git a/products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-onboarding-dublin.yaml b/products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-onboarding-dublin.yaml
new file mode 100644 (file)
index 0000000..dc075c0
--- /dev/null
@@ -0,0 +1,50 @@
+# Copyright © Intel Corporation 2019
+#
+# 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.
+
+open_cli_schema_version: 1.0
+
+name: sdc.onboarding-basic-login
+
+description: ONAP basic login auth command
+
+
+info:
+  product: onap-dublin
+  service: sdc-basic-auth
+  type: auth
+  author: ONAP CLI Team onap-discuss@lists.onap.org
+
+
+results:
+  direction: portrait
+  attributes:
+    - name: Authorization
+      description: Authorization
+      scope: short
+      type: string
+    - name: X-TransactionId
+      description: X-TransactionId
+      scope: short
+      type: string
+      default_value: req-$s{uuid}
+    - name: X-FromAppId
+      description: X-FromAppId
+      scope: short
+      type: string
+      default_value: ONAP CLI
+    - name: USER_ID
+      description: USER_ID for sdc
+      scope: short
+      type: string
+      default_value: ${host-username}
\ No newline at end of file