
package songND.ws3.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:08:54 CET 2009
 * Generated source version: 2.1.3
 */

@XmlRootElement(name = "doLoginResponse", namespace = "http://myproject.com/NDWS3/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "doLoginResponse", namespace = "http://myproject.com/NDWS3/")

public class DoLoginResponse {

    @XmlElement(name = "return")
    private boolean _return;

    public boolean getReturn() {
        return this._return;
    }

    public void setReturn(boolean new_return)  {
        this._return = new_return;
    }

}

