![JAR search and dependency download from the Maven repository](/logo.png)
com.github.debugthug.xo.holdInventory.HoldInventoryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of TruJet Show documentation
Show all versions of TruJet Show documentation
Simple library having an App to test the XML requests and responses of TruJet.
The newest version!
package com.github.debugthug.xo.holdInventory;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
@XStreamAlias("HoldInventoryResponse")
public class HoldInventoryResponse {
@XStreamAsAttribute
@XStreamAlias("xmlns")
private String xmlns;
@XStreamAlias("HoldInventoryResult")
private HoldInventoryResult holdInventoryResult;
public String getXmlns() {
return xmlns;
}
public void setXmlns(String xmlns) {
this.xmlns = xmlns;
}
public HoldInventoryResult getHoldInventoryResult() {
return holdInventoryResult;
}
public void setHoldInventoryResult(HoldInventoryResult holdInventoryResult) {
this.holdInventoryResult = holdInventoryResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy