ShipmentSearchResult.java

package com.tradecloud.dto.shipment;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;

/**
 * Created by ds on 2014/07/28.
 */
@XmlAccessorType(XmlAccessType.FIELD)
public class ShipmentSearchResult {
    @XmlAttribute
    String number;

    public String getNumber() {
        return number;
    }

    public void setNumber(String number) {
        this.number = number;
    }
}