Back to project page SipgateInfo.
The source code is released under:
GNU General Public License
If you think the Android project SipgateInfo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.skweez.sipgate.api; /*from w ww .ja va2 s. c o m*/ import java.util.List; /** * * @author mks * @author $Author: mks $ * @version $Rev: 9 $ * @levd.rating RED Rev: */ public interface ISipgateAPI { public Price getBalance(); public List<Call> getHistoryByDate(); public List<UserUri> getOwnUriList(); public UserName getUserdataGreeting(); }