562c0e917ba2f1a3e3200ace8f354644685867e3
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / rest / serialization / XacmlXmlExceptionMapper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pdpx.main.rest.serialization;
22
23 import javax.ws.rs.Produces;
24 import javax.ws.rs.ext.Provider;
25
26 /**
27  * Catches IOException when decoding/encoding a REST xacml request/response and converts them from an HTTP 500
28  * error code to an HTTP 400 error code.
29  *
30  * @author Chenfei Gao (cgao@research.att.com)
31  */
32 @Provider
33 @Produces(XacmlXmlMessageBodyHandler.APPLICATION_XACML_XML)
34 public class XacmlXmlExceptionMapper extends XacmlExceptionMapper {
35
36     public XacmlXmlExceptionMapper() {
37         this.invalidRequest = "invalid XML xacml request";
38         this.invalidResponse = "invalid XML xacml response";
39     }
40
41     @Override
42     public boolean isInvalidRequest(String message) {
43         return message.contains("dom request");
44     }
45
46     @Override
47     public boolean isInvalidResponse(String message) {
48         return message.contains("dom response");
49     }
50 }