View Javadoc

1   package org.codehaus.xfire.wsdl11;
2   
3   import javax.wsdl.Message;
4   
5   import org.codehaus.xfire.service.OperationInfo;
6   import org.codehaus.xfire.wsdl11.builder.WSDLBuilder;
7   
8   public interface WSDL11ParameterBinding
9   {
10      public String getStyle();
11      
12      public String getUse();
13  
14      public void createInputParts(WSDLBuilder builder,
15                                   Message req, 
16                                   OperationInfo op);
17      
18      public void createOutputParts(WSDLBuilder builder,
19                                    Message req, 
20                                    OperationInfo op);
21  }