View Javadoc

1   package org.kuali.ole.service;
2   
3   
4   import javax.jws.Oneway;
5   import javax.jws.WebService;
6   import javax.jws.soap.SOAPBinding;
7   
8   /**
9    * Created by IntelliJ IDEA.
10   * User: pvsubrah
11   * Date: 5/9/12
12   * Time: 2:52 PM
13   * To change this template use File | Settings | File Templates.
14   */
15  @WebService(name = "OleRequisitionWebService", targetNamespace = "http://service.ole.kuali.org/")
16  @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
17  public interface OleRequisitionWebService {
18  
19  
20      @Oneway
21      public void updateRequisitionStatus(String documentNumber, String licenseRequestContent);
22  
23  }