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 FuseSource Services Framework 2.4.3-fuse-04-15
012     * 2012-10-04T16:54:45.035Z
013     * Generated source version: 2.4.3-fuse-04-15
014     * 
015     */
016    @WebService(targetNamespace = "http://reportincident.example.camel.apache.org", name = "ReportIncidentEndpoint")
017    @XmlSeeAlso({ObjectFactory.class})
018    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
019    public interface ReportIncidentEndpoint {
020    
021        @WebResult(name = "outputReportIncident", targetNamespace = "http://reportincident.example.camel.apache.org", partName = "out")
022        @WebMethod(operationName = "ReportIncident", action = "http://reportincident.example.camel.apache.org/ReportIncident")
023        public OutputReportIncident reportIncident(
024            @WebParam(partName = "in", name = "inputReportIncident", targetNamespace = "http://reportincident.example.camel.apache.org")
025            InputReportIncident in
026        );
027    }