summaryrefslogtreecommitdiff
path: root/src/Chapter2/support/APIType.java
blob: 94449f88fb19326c6123e2978d2066bc320ab426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* TweetTracker. Copyright (c) Arizona Board of Regents on behalf of Arizona State University
 * @author shamanth
 */
package Chapter2.support;

public class APIType
{
    public static String USER_TIMELINE = "/statuses/user_timeline";
    public static String FOLLOWERS = "/followers/list";
    public static String FRIENDS = "/friends/list";
    public static String USER_PROFILE = "/users/show";
}