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 javax.xml.bind.annotation.XmlAnyElement;
import java.util.ArrayList;
import java.util.List;

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

   public List getValue()
   {
      return value;
   }
}