001    package org.apache.camel.example.reportincident;
002    
003    import javax.jws.WebMethod;
004    import javax.jws.WebParam;
005    import javax.jws.WebResult;
006    import javax.jws.WebService;
007    import javax.jws.soap.SOAPBinding;
008    import javax.xml.bind.annotation.XmlSeeAlso;
009    
010    /**
011     * This class was generated by Apache CXF 2.2.6
012     * Wed Feb 10 23:54:41 EST 2010
013     * Generated source version: 2.2.6
014     * 
015     */
016     
017    @WebService(targetNamespace = "http://reportincident.example.camel.apache.org", name = "ReportIncidentEndpoint")
018    @XmlSeeAlso({ObjectFactory.class})
019    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
020    public interface ReportIncidentEndpoint {
021    
022        @WebResult(name = "outputReportIncident", targetNamespace = "http://reportincident.example.camel.apache.org", partName = "out")
023        @WebMethod(operationName = "ReportIncident", action = "http://reportincident.example.camel.apache.org/ReportIncident")
024        public OutputReportIncident reportIncident(
025            @WebParam(partName = "in", name = "inputReportIncident", targetNamespace = "http://reportincident.example.camel.apache.org")
026            InputReportIncident in
027        );
028    }