com.github.debugthug.xo.holdInventory.HoldInventoryRQ Maven / Gradle / Ivy
package com.github.debugthug.xo.holdInventory;
import java.util.ArrayList;
import java.util.List;
import com.github.debugthug.xo.Authenticate;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
@XStreamAlias("HoldInventoryRQ")
public class HoldInventoryRQ {
@XStreamAlias("Authenticate")
private Authenticate aunthenticate;
@XStreamImplicit
private List holdList=new ArrayList();
public List getHoldList() {
return holdList;
}
public void setHoldList(List holdList) {
this.holdList = holdList;
}
public void addHoldList(Hold hold) {
holdList.add(hold);
}
public Authenticate getAunthenticate() {
return aunthenticate;
}
public void setAunthenticate(Authenticate aunthenticate) {
this.aunthenticate = aunthenticate;
}
}