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

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

package com.github.debugthug.xo.holdInventory;

import com.github.debugthug.xo.StrInput;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;

@XStreamAlias("HoldInventory")
public class HoldInventory {

	@XStreamAsAttribute
	@XStreamAlias("xmlns")
	private String xmlns;

	@XStreamAlias("strInput")
	private StrInput strInput;
	
	public String getXmlns() {
		return xmlns;
	}

	public void setXmlns(String xmlns) {
		this.xmlns = xmlns;
	}

	public StrInput getStrInput() {
		return strInput;
	}

	public void setStrInput(StrInput strInput) {
		this.strInput = strInput;
	}
	

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy