Commit faacd2a3 by Tuukka Kivilahti

Merge branch 'add-arraylistwrapper' into 'master'

Add missing ArrayListWrapper

See merge request !380
2 parents 8441bf57 9f4c893e
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!