ShipmentStatusSearchResults.java
package com.tradecloud.dto.consignment;
import java.util.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "ShipmentStatusSearchResults")
@XmlAccessorType(XmlAccessType.FIELD)
public class ShipmentStatusSearchResults {
@XmlElement(name = "ShipmentStatusSearchResult")
private Collection<ShipmentStatusSearchResult> searchResult;
public Collection<ShipmentStatusSearchResult> getSearchResult() {
return searchResult;
}
public void setSearchResult(Collection<ShipmentStatusSearchResult> searchResult) {
this.searchResult = searchResult;
}
}