ch.hsr.mas.oms.domain.dto.AccountDetails 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.io.Serializable;
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;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"account"
})
@XmlRootElement(name = "accountDetails")
public class AccountDetails implements Serializable {
private static final long serialVersionUID = 8983677232709001799L;
protected List account;
public List getAccount() {
if (account == null) {
account = new ArrayList();
}
return this.account;
}
public void setAccount(List account) {
this.account = account;
}
public String toString() {
return ReflectionToStringBuilder.toString(this);
}
}