Statistics
| Branch: | Revision:

root / src / com / rackspacecloud / android / GoogleAnalytics.java @ 5018a7f8

History | View | Annotate | Download (2.9 kB)

1
package com.rackspacecloud.android;
2

    
3
public class GoogleAnalytics {
4

    
5
        protected static final String CATEGORY_FILE = "file";
6
        protected static final String CATEGORY_SERVER = "server";
7
        protected static final String CATEGORY_CONTAINER = "containers";
8
        protected static final String CATEGORY_LOAD_BALANCER = "load_balancer";
9
        
10
        protected static final String PAGE_ROOT = "/Root";
11
        protected static final String PAGE_SERVERS = "/Servers";
12
        protected static final String PAGE_SERVER = "/Server";
13
        protected static final String PAGE_CONTAINERS = "/Containers";
14
        protected static final String PAGE_FOLDER = "/Folder";
15
        protected static final String PAGE_STORAGE_OBJECT = "/StorageObject";
16
        protected static final String PAGE_ADD_SERVER = "/AddServer";
17
        protected static final String PAGE_CONTACT = "/ContactInformation";
18
        protected static final String PAGE_ADD_CONTAINER = "/AddContainer";
19
        protected static final String PAGE_PASSCODE = "/Passcode";
20
        protected static final String PAGE_PROVIDERS = "/Providers";
21
        protected static final String PAGE_CONTAINER_DETAILS = "/ContainerDetail";
22
        protected static final String PAGE_ADD_OBJECT = "/AddObject";
23
        protected static final String PAGE_LOADBALANCER = "/LoadBalancer";
24
        protected static final String PAGE_LOADBALANCERS = "/LoadBalancers";
25
        protected static final String PAGE_CONFIGURE_LOADBALANCER = "/ConfigureLoadBalancer";
26
        protected static final String PAGE_LB_SERVERS = "/LBServers";
27
        protected static final String PAGE_LB_NODE = "/LBNode";
28
        protected static final String PAGE_LB_NODES = "/LBNodes";
29
        protected static final String PAGE_ADD_LOADBALANCER = "/AddLoadBalancer";
30
        protected static final String PAGE_LB_PROTOCOL = "/LBProtocol";
31
        protected static final String PAGE_LB_ALGORITHM = "/LBAlgorithm";
32
        
33
        protected static final String EVENT_CREATE = "created";
34
        protected static final String EVENT_DELETE = "deleted";
35
        protected static final String EVENT_PING = "pinged";
36
        protected static final String EVENT_REBOOT = "reboot";
37
        protected static final String EVENT_BACKUP = "backup_schedule_changed";
38
        protected static final String EVENT_RESIZE = "resized";
39
        protected static final String EVENT_PASSWORD = "password_changed";
40
        protected static final String EVENT_UPDATED = "updated";
41
        protected static final String EVENT_REBUILD = "rebuilt";
42
        protected static final String EVENT_RENAME = "renamed";
43
        protected static final String EVENT_ADD_LB_NODES = "added_lb_nodes";
44
        protected static final String EVENT_DELETE_NODE = "deleted_lb_node";
45
        protected static final String EVENT_UPDATED_NODE = "updated_lb_node";
46
        protected static final String EVENT_LB_CONNECTION_LOGGING = "updated_lb_connection_logging";
47
        //protected static final String EVENT_LB_CONNECTION_THROTTLE = "updated_lb_connection_throttle";
48
        //protected static final String EVENT_LB_SESSION_PERSISTENCE = "updated_lb_session_persistence";
49
        //protected static final String EVENT_LB_ACCESS_CONTROL = "updated_lb_access_control";
50
        
51
}