Commit 9f4c893e by Tuomas Riihimäki

Add missing ArrayListWrapper

1 parent 8441bf57
package fi.codecrew.moya.rest;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
@XmlRootElement
public class ArrayListWrapper<T> {
public ArrayListWrapper() {
}
public ArrayListWrapper(ArrayList<T> list) {
this.list = list;
}
public ArrayList<T> list = new ArrayList<T>();
}
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!