diff options
author | luxin <luxin7@huawei.com> | 2017-09-05 20:37:14 +0800 |
---|---|---|
committer | luxin <luxin7@huawei.com> | 2017-09-05 20:37:14 +0800 |
commit | f506493a7db60653055be3236a57732a7b994597 (patch) | |
tree | 13b1f68d3f2fc9a278ceb71121d94458b1b899b8 /ResmanagementService/service/src/main/java | |
parent | 7f1b2084e392f06c3b7771dc54b800550905bd8e (diff) |
Modify the message info
Change-Id: If0c2fe17470882b7d9456fd28b3098ceae31d95d
Issue-Id:VFC-273
Signed-off-by: luxin <luxin7@huawei.com>
Diffstat (limited to 'ResmanagementService/service/src/main/java')
-rw-r--r-- | ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/constant/ResponseConstant.java | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/constant/ResponseConstant.java b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/constant/ResponseConstant.java index 8222b5f..fd877c3 100644 --- a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/constant/ResponseConstant.java +++ b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/constant/ResponseConstant.java @@ -28,23 +28,21 @@ import org.onap.vfc.nfvo.resmanagement.common.ResourceUtil; */ public class ResponseConstant { - public static final String ADD_SUCESS_MSG = ResourceUtil.getMessage("org.openo.nfvo.resmanage.common.add.success"); + public static final String ADD_SUCESS_MSG = ResourceUtil.getMessage("add success"); - public static final String ADD_FAIL_MSG = ResourceUtil.getMessage("org.openo.nfvo.resmanage.common.add.error"); + public static final String ADD_FAIL_MSG = ResourceUtil.getMessage("add error"); - public static final String DEL_SUCESS_MSG = ResourceUtil.getMessage("org.openo.nfvo.resmanage.common.del.success"); + public static final String DEL_SUCESS_MSG = ResourceUtil.getMessage("delete success"); - public static final String DEL_FAIL_MSG = ResourceUtil.getMessage("org.openo.nfvo.resmanage.common.del.error"); + public static final String DEL_FAIL_MSG = ResourceUtil.getMessage("delete error"); - public static final String MOD_SUCESS_MSG = - ResourceUtil.getMessage("org.openo.nfvo.resmanage.common.update.success"); + public static final String MOD_SUCESS_MSG = ResourceUtil.getMessage("update success"); - public static final String MOD_FAIL_MSG = ResourceUtil.getMessage("org.openo.nfvo.resmanage.common.update.error"); + public static final String MOD_FAIL_MSG = ResourceUtil.getMessage("update error"); - public static final String QUERY_SUCESS_MSG = - ResourceUtil.getMessage("org.openo.nfvo.resmanage.common.query.success"); + public static final String QUERY_SUCESS_MSG = ResourceUtil.getMessage("query success"); - public static final String QUERY_FAIL_MSG = ResourceUtil.getMessage("org.openo.nfvo.resmanage.common.query.error"); + public static final String QUERY_FAIL_MSG = ResourceUtil.getMessage("query error"); public static final String DELSODORES_FAIL_MSG = "delete sodores error"; |