summaryrefslogtreecommitdiff
path: root/src/com/google/wireless/gdata/subscribedfeeds/data/SubscribedFeedsEntry.java
blob: 6d8cbd0b2b58253dc0d05abdfba0349908aa0551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright 2007 The Android Open Source Project
package com.google.wireless.gdata.subscribedfeeds.data;

import com.google.wireless.gdata.data.Entry;

/**
 * Entry containing information about a contact.
 */
public class SubscribedFeedsEntry extends Entry {
    private FeedUrl feedUrl;
    private String routingInfo;
    private String clientToken;

    public String getClientToken() {
        return clientToken;
    }

    public void setClientToken(String clientToken) {
        this.clientToken = clientToken;
    }

    public SubscribedFeedsEntry() {
        super();
    }

    public FeedUrl getSubscribedFeed() {
        return feedUrl;
    }

    public void setSubscribedFeed(FeedUrl feedUrl) {
        this.feedUrl = feedUrl;
    }

    public String getRoutingInfo() {
        return routingInfo;
    }

    public void setRoutingInfo(String routingInfo) {
        this.routingInfo = routingInfo;
    }

    /*
     * (non-Javadoc)
     * @see com.google.wireless.gdata.data.Entry#clear()
     */
    public void clear() {
        super.clear();
    }

    public void toString(StringBuffer sb) {
        super.toString(sb);
    }
}