File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
data/src/main/java/com/fernandocejas/android10/sample/data/net Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 23
23
* RestApi for retrieving data from the network.
24
24
*/
25
25
public interface RestApi {
26
- static final String API_BASE_URL = "http://www.android10.org/myapi/" ;
26
+ String API_BASE_URL = "http://www.android10.org/myapi/" ;
27
27
28
28
/** Api url for getting all users */
29
- static final String API_URL_GET_USER_LIST = API_BASE_URL + "users.json" ;
29
+ String API_URL_GET_USER_LIST = API_BASE_URL + "users.json" ;
30
30
/** Api url for getting a user profile: Remember to concatenate id + 'json' */
31
- static final String API_URL_GET_USER_DETAILS = API_BASE_URL + "user_" ;
31
+ String API_URL_GET_USER_DETAILS = API_BASE_URL + "user_" ;
32
32
33
33
/**
34
34
* Retrieves an {@link rx.Observable} which will emit a List of {@link UserEntity}.
You can’t perform that action at this time.
0 commit comments