IServiceClient.java :  » Web » belexdroid » rs » belex » belexdroid » services » interfaces » Android Open Source

Android Open Source » Web » belexdroid 
belexdroid » rs » belex » belexdroid » services » interfaces » IServiceClient.java
package rs.belex.belexdroid.services.interfaces;

import java.util.List;

import org.ksoap2.serialization.SoapObject;

public interface IServiceClient {

  /**Handling requests for complex types of objects like UserBean, ShareBean...
   * @param soapAction TODO
   * @return Object that represents that complex type
   */
  SoapObject requestComplexType(SoapObject request, String soapAction);

  /**Handling requests for list of complex types of objects like UserBean, ShareBean...
   * @param soapAction TODO
   * @return List of Objects that represents that complex types
   */
  List<SoapObject> requestComplexTypeList(SoapObject request, String soapAction);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.