All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.resteasy.plugins.providers.jaxb.JaxbCollection Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.plugins.providers.jaxb;

import java.util.ArrayList;
import java.util.List;

import jakarta.xml.bind.annotation.XmlAnyElement;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public class JaxbCollection {
    @XmlAnyElement
    private List value = new ArrayList();

    public List getValue() {
        return value;
    }
}