
package songND.ws4.jaxws;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

/**
 * This class was generated by Apache CXF 2.1.3
 * Thu Feb 05 12:09:15 CET 2009
 * Generated source version: 2.1.3
 */

@XmlRootElement(name = "getStatusResponse", namespace = "http://myproject.com/NDWS4/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getStatusResponse", namespace = "http://myproject.com/NDWS4/")

public class GetStatusResponse {

    @XmlElement(name = "return")
    private int _return;

    public int getReturn() {
        return this._return;
    }

    public void setReturn(int new_return)  {
        this._return = new_return;
    }

}

