From 1ec7ee637367ed680df9cbf2dfc14bb283ec1583 Mon Sep 17 00:00:00 2001 From: Kanagaraj Manickam k00365106 Date: Wed, 11 Oct 2017 10:51:16 +0530 Subject: Enhance validation with moco server CLI-2 Change-Id: Ie8a98a2a20137610634b3450d1076bec1790e9b1 Signed-off-by: Kanagaraj Manickam k00365106 --- .../onap/cli/fw/error/OnapCommandException.java | 1 + .../cli/fw/error/OnapCommandInvalidSample.java | 43 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 framework/src/main/java/org/onap/cli/fw/error/OnapCommandInvalidSample.java (limited to 'framework') diff --git a/framework/src/main/java/org/onap/cli/fw/error/OnapCommandException.java b/framework/src/main/java/org/onap/cli/fw/error/OnapCommandException.java index 8e99b9a1..3fecad02 100644 --- a/framework/src/main/java/org/onap/cli/fw/error/OnapCommandException.java +++ b/framework/src/main/java/org/onap/cli/fw/error/OnapCommandException.java @@ -35,6 +35,7 @@ schema 0xb00 profile 0xc00 product/service 0xd00 catalog 0xe00 +sample 0xf00 */ public class OnapCommandException extends Exception { diff --git a/framework/src/main/java/org/onap/cli/fw/error/OnapCommandInvalidSample.java b/framework/src/main/java/org/onap/cli/fw/error/OnapCommandInvalidSample.java new file mode 100644 index 00000000..8d2d7c7a --- /dev/null +++ b/framework/src/main/java/org/onap/cli/fw/error/OnapCommandInvalidSample.java @@ -0,0 +1,43 @@ +/* + * Copyright 2017 Huawei Technologies Co., Ltd. + * + * 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.fw.error; + +/** + * Command sample is invalid. + * + */ +public class OnapCommandInvalidSample extends OnapCommandException { + + private static final long serialVersionUID = -3387652326582792835L; + + private static final String ERROR_CODE = "0xf001"; + + private static final String ERROR_MSG = "Invalid command sample "; + + public OnapCommandInvalidSample(String error) { + this(ERROR_CODE, error); + } + + public OnapCommandInvalidSample(String schema, String error) { + super(ERROR_CODE, ERROR_MSG + schema + ", " + error); + } + + public OnapCommandInvalidSample(String schema, Throwable throwable) { + super(ERROR_CODE, ERROR_MSG + schema , throwable); + } + +} -- cgit 1.2.3-korg