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