Back to project page mobile2-android.
The source code is released under:
Apache License
If you think the Android project mobile2-android 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 com.ecollege.android.activities; /* www.j ava 2s . c o m*/ import com.ecollege.android.ECollegeApplication; import com.ecollege.android.tasks.ServiceCallTask; import com.ecollege.api.services.BaseService; public interface ECollegeActivity { public static final int LOGIN_REQUEST_CODE = 1001; public static final int SSO_LOGIN_REQUEST_CODE = 1002; public static final int MAIN_ACTIVITY_REQUEST_CODE = 1003; public ECollegeApplication getApp(); public <ServiceT extends BaseService> ServiceCallTask<ServiceT> buildService(ServiceT service); }