From 8e80ed629dc934e105835c653cd988f488e4e6fe Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam Date: Thu, 29 Aug 2019 15:44:10 +0530 Subject: Split sdc into onboarding and catalog Issue-ID: CLI-166 Change-Id: I25bac40b8e5ebb92fd852c27782ef56ce0c7a795 Signed-off-by: Kanagaraj Manickam k00365106 --- .../auth/OnapSdcBasicAuthLoginCommandDublin.java | 24 ----------- .../OnapSdcCatalogBasicAuthLoginCommandDublin.java | 24 +++++++++++ ...apSdcOnboardingBasicAuthLoginCommandDublin.java | 24 +++++++++++ .../services/org.onap.cli.fw.cmd.OnapCommand | 3 +- .../basic-login-onap-sdc-catalog-dublin.yaml | 50 ++++++++++++++++++++++ .../basic-login-onap-sdc-dublin.yaml | 50 ---------------------- .../basic-login-onap-sdc-onboarding-dublin.yaml | 50 ++++++++++++++++++++++ 7 files changed, 150 insertions(+), 75 deletions(-) delete mode 100644 products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcBasicAuthLoginCommandDublin.java create mode 100644 products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcCatalogBasicAuthLoginCommandDublin.java create mode 100644 products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcOnboardingBasicAuthLoginCommandDublin.java create mode 100644 products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-catalog-dublin.yaml delete mode 100644 products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-dublin.yaml create mode 100644 products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-onboarding-dublin.yaml (limited to 'products/onap-dublin') diff --git a/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcBasicAuthLoginCommandDublin.java b/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcBasicAuthLoginCommandDublin.java deleted file mode 100644 index 942523b3..00000000 --- a/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcBasicAuthLoginCommandDublin.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * 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-dublin.yaml") -public class OnapSdcBasicAuthLoginCommandDublin extends BasicAuthLoginCommand { -} diff --git a/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcCatalogBasicAuthLoginCommandDublin.java b/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcCatalogBasicAuthLoginCommandDublin.java new file mode 100644 index 00000000..5cd96981 --- /dev/null +++ b/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcCatalogBasicAuthLoginCommandDublin.java @@ -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-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 index 00000000..1e92bee9 --- /dev/null +++ b/products/onap-dublin/auth/src/main/java/org/onap/cli/cmd/auth/OnapSdcOnboardingBasicAuthLoginCommandDublin.java @@ -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 { +} diff --git a/products/onap-dublin/auth/src/main/resources/META-INF/services/org.onap.cli.fw.cmd.OnapCommand b/products/onap-dublin/auth/src/main/resources/META-INF/services/org.onap.cli.fw.cmd.OnapCommand index 87558847..a9030521 100644 --- a/products/onap-dublin/auth/src/main/resources/META-INF/services/org.onap.cli.fw.cmd.OnapCommand +++ b/products/onap-dublin/auth/src/main/resources/META-INF/services/org.onap.cli.fw.cmd.OnapCommand @@ -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-catalog-dublin.yaml b/products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-catalog-dublin.yaml new file mode 100644 index 00000000..3a5872bc --- /dev/null +++ b/products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-catalog-dublin.yaml @@ -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.catalog-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 diff --git a/products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-dublin.yaml b/products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-dublin.yaml deleted file mode 100644 index 4ddec702..00000000 --- a/products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-dublin.yaml +++ /dev/null @@ -1,50 +0,0 @@ -# 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-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 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 index 00000000..dc075c0b --- /dev/null +++ b/products/onap-dublin/auth/src/main/resources/open-cli-schema/basic-login-onap-sdc-onboarding-dublin.yaml @@ -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 -- cgit 1.2.3-korg