package com.vci.ubcs.example.apply; import com.thoughtworks.xstream.annotations.XStreamAlias; import com.thoughtworks.xstream.annotations.XStreamImplicit; import java.util.List; @XStreamAlias("sections") public class SectionsVO { @XStreamImplicit private List section; public List getSection() { return section; } public void setSection(List section) { this.section = section; } @Override public String toString() { return "SectionsVO{" + "section=" + section + '}'; } }