blob: bb40cad812e480adc407edc40ca74b4c4646a9c5 [file] [log] [blame]
/*
* Copyright (c) 2015, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Martin Vojtek - 2.6.0 - initial implementation
package org.eclipse.persistence.testing.jaxb.rs.model;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;
public final class MyMapAdapter extends XmlAdapter<MyMapType,Map<String, String>> {
@Override
public MyMapType marshal(Map<String, String> arg0) throws Exception {
MyMapType myMapType = new MyMapType();
for(Entry<String, String> entry : arg0.entrySet()) {
MyMapEntryType myMapEntryType =
new MyMapEntryType();
myMapEntryType.key = entry.getKey();
myMapEntryType.value = entry.getValue();
myMapType.entry.add(myMapEntryType);
}
return myMapType;
}
@Override
public Map<String, String> unmarshal(MyMapType arg0) throws Exception {
HashMap<String, String> hashMap = new HashMap<String, String>();
for(MyMapEntryType myEntryType : arg0.entry) {
hashMap.put(myEntryType.key, myEntryType.value);
}
return hashMap;
}
}