
package songND.ws2.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:33 CET 2009
 * Generated source version: 2.1.3
 */

@XmlRootElement(name = "SearchByTitle", namespace = "http://myproject.com/NDWS2/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SearchByTitle", namespace = "http://myproject.com/NDWS2/")

public class SearchByTitle {

    @XmlElement(name = "arg0")
    private java.lang.String arg0;

    public java.lang.String getArg0() {
        return this.arg0;
    }

    public void setArg0(java.lang.String newArg0)  {
        this.arg0 = newArg0;
    }

}

