Catalog alignment
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / servlets / exception / ConstraintViolationExceptionMapper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.servlets.exception;
22
23 import org.openecomp.sdc.be.config.ErrorInfo;
24 import org.springframework.stereotype.Component;
25
26 import javax.validation.ConstraintViolation;
27 import javax.validation.ConstraintViolationException;
28 import javax.ws.rs.core.Response;
29 import javax.ws.rs.ext.ExceptionMapper;
30 import javax.ws.rs.ext.Provider;
31 import java.util.Set;
32
33 import static javax.ws.rs.core.Response.Status.BAD_REQUEST;
34
35 @Component
36 @Provider
37 public class ConstraintViolationExceptionMapper implements ExceptionMapper<ConstraintViolationException> {
38
39     @Override
40     public Response toResponse(ConstraintViolationException exception) {
41         Set<ConstraintViolation<?>> constraintViolations = exception.getConstraintViolations();
42         ErrorInfo error = new ErrorInfo();
43         error.setCode(500);
44         error.setMessage(constraintViolations.toString());
45         return Response.status(BAD_REQUEST)
46                 .entity(error)
47                 .build();
48     }
49 }