28f0cf7af59e288670574d0c586cb79151966c69
[policy/apex-pdp.git] /
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      * (non-Javadoc)
44      * 
45      * @see javax.xml.bind.annotation.adapters.XmlAdapter#marshal(java.lang.Object)
46      */
47     @Override
48     public final String marshal(final AxReferenceKey key) throws Exception {
49         return key.getLocalName();
50     }
51
52     /*
53      * (non-Javadoc)
54      * 
55      * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object)
56      */
57     @Override
58     public final AxReferenceKey unmarshal(final String key) throws Exception {
59         final AxReferenceKey axReferenceKey = new AxReferenceKey();
60         axReferenceKey.setLocalName(key);
61         return axReferenceKey;
62     }
63 }