From 6cc3acdc6d3140a8f702939568ab4c7cda06beaa Mon Sep 17 00:00:00 2001 From: shrikantawachar Date: Fri, 23 Mar 2018 16:20:09 +0530 Subject: Enhance Activity Spec Update error messages Updating error messages Change-Id: I5660e5ba773141db3df440eb94e0b6aa521dbc73 Issue-ID: SDC-1048 Signed-off-by: shrikantawachar --- .../errors/ActivitySpecErrorResponse.java | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/errors/ActivitySpecErrorResponse.java (limited to 'services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/errors/ActivitySpecErrorResponse.java') diff --git a/services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/errors/ActivitySpecErrorResponse.java b/services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/errors/ActivitySpecErrorResponse.java new file mode 100644 index 0000000000..8a7bd76347 --- /dev/null +++ b/services/activity-spec/activity-spec-web/activity-spec-service/src/main/java/org/openecomp/activityspec/errors/ActivitySpecErrorResponse.java @@ -0,0 +1,36 @@ +/* + * Copyright © 2016-2018 European Support Limited + * + * 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.openecomp.activityspec.errors; + +import javax.ws.rs.core.Response; + +@lombok.Data +public class ActivitySpecErrorResponse { + private Response.Status status; + private String errorCode; + private String message; + + public ActivitySpecErrorResponse() { + //default constructor + } + + public ActivitySpecErrorResponse(Response.Status status, String errorCode, String message) { + this.status = status; + this.errorCode = errorCode; + this.message = message; + } +} -- cgit 1.2.3-korg