summaryrefslogtreecommitdiff
path: root/src/com/google/wireless/gdata/contacts/client/ContactsClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/google/wireless/gdata/contacts/client/ContactsClient.java')
-rw-r--r--src/com/google/wireless/gdata/contacts/client/ContactsClient.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/com/google/wireless/gdata/contacts/client/ContactsClient.java b/src/com/google/wireless/gdata/contacts/client/ContactsClient.java
new file mode 100644
index 0000000..dd62745
--- /dev/null
+++ b/src/com/google/wireless/gdata/contacts/client/ContactsClient.java
@@ -0,0 +1,33 @@
+// Copyright 2007 The Android Open Source Project
+
+package com.google.wireless.gdata.contacts.client;
+
+import com.google.wireless.gdata.client.GDataClient;
+import com.google.wireless.gdata.client.GDataParserFactory;
+import com.google.wireless.gdata.client.GDataServiceClient;
+
+/**
+ * GDataServiceClient for accessing Google Contacts. This client can access and
+ * parse the contacts feeds for specific user. The parser this class uses handle
+ * the XML version of feeds.
+ */
+public class ContactsClient extends GDataServiceClient {
+ /** Service value for contacts. */
+ public static final String SERVICE = "cp";
+
+ /**
+ * Create a new ContactsClient.
+ * @param client The GDataClient that should be used to authenticate
+ * if we are using the caribou feed
+ */
+ public ContactsClient(GDataClient client, GDataParserFactory factory) {
+ super(client, factory);
+ }
+
+ /* (non-Javadoc)
+ * @see GDataServiceClient#getServiceName
+ */
+ public String getServiceName() {
+ return SERVICE;
+ }
+}