All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.debugthug.xo.holdInventory.HoldInventoryRS Maven / Gradle / Ivy

package com.github.debugthug.xo.holdInventory;

import java.util.ArrayList;
import java.util.List;

import com.github.debugthug.xo.Errors;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

@XStreamAlias("HoldInventoryRS")
public class HoldInventoryRS {
	
	@XStreamAlias("Errors")
	private Errors errors;

	@XStreamImplicit
	private List holdList=new ArrayList();
	
	public List getHoldList() {
		return holdList;
	}

	public void addHoldList(Hold hold) {
		holdList.add(hold);
	}

	public Errors getErrors() {
		return errors;
	}

	public void setErrors(Errors errors) {
		this.errors = errors;
	}

	public void setHoldList(List holdList) {
		this.holdList = holdList;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy