ch.hsr.mas.oms.domain.dto.CompanyList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oms-api Show documentation
Show all versions of oms-api Show documentation
Order Management System - Client Stubs
The newest version!
package ch.hsr.mas.oms.domain.dto;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"company"
})
@XmlRootElement(name = "companyList")
public class CompanyList {
protected List company;
public List getCompany() {
if (company == null) {
company = new ArrayList();
}
return this.company;
}
public void setCompany(List company) {
this.company = company;
}
}