Changes for checkstyle 8.32
[policy/apex-pdp.git] / model / basic-model / src / main / java / org / onap / policy / apex / model / basicmodel / xml / AxReferenceKeyAdapter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. 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.apex.model.basicmodel.xml;
22
23 import java.io.Serializable;
24 import javax.xml.bind.annotation.XmlAccessType;
25 import javax.xml.bind.annotation.XmlAccessorType;
26 import javax.xml.bind.annotation.XmlType;
27 import javax.xml.bind.annotation.adapters.XmlAdapter;
28 import org.onap.policy.apex.model.basicmodel.concepts.AxReferenceKey;
29
30 /**
31  * This class manages marshaling and unmarshaling of Apex {@link AxReferenceKey} concepts using JAXB. The local name in
32  * reference keys must have specific handling.
33  */
34 @XmlAccessorType(XmlAccessType.PROPERTY)
35 @XmlType(namespace = "http://www.onap.org/policy/apex-pdp")
36 public class AxReferenceKeyAdapter extends XmlAdapter<String, AxReferenceKey> implements Serializable {
37
38     private static final long serialVersionUID = -3480405083900107029L;
39
40     /**
41      * {@inheritDoc}.
42      */
43     @Override
44     public final String marshal(final AxReferenceKey key) throws Exception {
45         return key.getLocalName();
46     }
47
48     /**
49      * {@inheritDoc}.
50      */
51     @Override
52     public final AxReferenceKey unmarshal(final String key) throws Exception {
53         final AxReferenceKey axReferenceKey = new AxReferenceKey();
54         axReferenceKey.setLocalName(key);
55         return axReferenceKey;
56     }
57 }