Adding customer and serive subscription handling
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / aai-simulator / src / main / java / org / onap / so / aai / simulator / utils / RequestError.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
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 package org.onap.so.aai.simulator.utils;
21
22 import javax.xml.bind.annotation.XmlAccessType;
23 import javax.xml.bind.annotation.XmlAccessorType;
24 import javax.xml.bind.annotation.XmlElement;
25 import javax.xml.bind.annotation.XmlRootElement;
26
27 /**
28  * @author waqas.ikram@ericsson.com
29  *
30  */
31 @XmlRootElement(name = "requestError")
32 @XmlAccessorType(XmlAccessType.FIELD)
33 public class RequestError {
34
35     @XmlElement(name = "serviceException")
36     private ServiceException serviceException;
37
38     /**
39      * @return the serviceException
40      */
41     public ServiceException getServiceException() {
42         return serviceException;
43     }
44
45     /**
46      * @param serviceException the serviceException to set
47      */
48     public void setServiceException(final ServiceException serviceException) {
49         this.serviceException = serviceException;
50     }
51
52     @Override
53     public String toString() {
54         return "RequestError [serviceException=" + serviceException + "]";
55     }
56
57
58
59 }