blob: d1ab3ba2c575fe8800bcafdb85efb44c2b8c5fcd [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 jakarta.xml.bind.annotation.adapters.XmlAdapter;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class MyListAdapter extends XmlAdapter<MyListType,List<Bar>> {
@Override
public List<Bar> unmarshal(MyListType v) throws Exception {
return v.entry;
}
@Override
public MyListType marshal(List<Bar> v) throws Exception {
MyListType listType = new MyListType();
listType.entry = v;
return listType;
}
}