Advertisement
Guest User

Untitled

a guest
Aug 10th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.52 KB | None | 0 0
  1.  
  2. package br.com.correios.afii.service;
  3.  
  4. import javax.jws.WebMethod;
  5. import javax.jws.WebParam;
  6. import javax.jws.WebResult;
  7. import javax.jws.WebService;
  8. import javax.xml.bind.annotation.XmlSeeAlso;
  9. import javax.xml.ws.RequestWrapper;
  10. import javax.xml.ws.ResponseWrapper;
  11.  
  12.  
  13. /**
  14.  * This class was generated by the JAX-WS RI.
  15.  * JAX-WS RI 2.2.9-b130926.1035
  16.  * Generated source version: 2.2
  17.  *
  18.  */
  19. @WebService(name = "afiiService", targetNamespace = "http://service.afii.correios.com.br/")
  20. @XmlSeeAlso({
  21.     ObjectFactory.class
  22. })
  23. public interface AfiiService {
  24.  
  25.  
  26.     /**
  27.      *
  28.      * @param uf
  29.      * @param dataFim
  30.      * @param dataInicio
  31.      * @return
  32.      *     returns br.com.correios.afii.service.Nts
  33.      * @throws ComponenteException
  34.      */
  35.     @WebMethod
  36.     @WebResult(name = "Nts", targetNamespace = "http://service.afii.correios.com.br/")
  37.     @RequestWrapper(localName = "consultarNTS", targetNamespace = "http://service.afii.correios.com.br/", className = "br.com.correios.afii.service.ConsultarNTS")
  38.     @ResponseWrapper(localName = "consultarNTSResponse", targetNamespace = "http://service.afii.correios.com.br/", className = "br.com.correios.afii.service.ConsultarNTSResponse")
  39.     public Nts consultarNTS(
  40.         @WebParam(name = "Uf", targetNamespace = "")
  41.         String uf,
  42.         @WebParam(name = "dataInicio", targetNamespace = "")
  43.         String dataInicio,
  44.         @WebParam(name = "dataFim", targetNamespace = "")
  45.         String dataFim)
  46.         throws ComponenteException
  47.     ;
  48.  
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement