summaryrefslogtreecommitdiffstats
path: root/core/java/android/content/SyncAdapterType.java
diff options
context:
space:
mode:
authorFred Quintana <fredq@google.com>2009-04-29 17:53:20 -0700
committerFred Quintana <fredq@google.com>2009-04-30 17:28:09 -0700
commit718d8a2d7ff3e864a73879eb646f46c14ab74d07 (patch)
tree0368a95bc5cf042971f7151547cbfa221674b020 /core/java/android/content/SyncAdapterType.java
parent90b6abd83952e42fe2bb15af4fb117d427e640f0 (diff)
downloadframeworks_base-718d8a2d7ff3e864a73879eb646f46c14ab74d07.zip
frameworks_base-718d8a2d7ff3e864a73879eb646f46c14ab74d07.tar.gz
frameworks_base-718d8a2d7ff3e864a73879eb646f46c14ab74d07.tar.bz2
decouple SyncAdapter from ContentProvider
Diffstat (limited to 'core/java/android/content/SyncAdapterType.java')
-rw-r--r--core/java/android/content/SyncAdapterType.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/core/java/android/content/SyncAdapterType.java b/core/java/android/content/SyncAdapterType.java
new file mode 100644
index 0000000..368a879
--- /dev/null
+++ b/core/java/android/content/SyncAdapterType.java
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2009 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.content;
+
+import android.text.TextUtils;
+
+/**
+ * Value type that represents a SyncAdapterType. This object overrides {@link #equals} and
+ * {@link #hashCode}, making it suitable for use as the key of a {@link java.util.Map}
+ */
+public class SyncAdapterType {
+ public final String authority;
+ public final String accountType;
+
+ public SyncAdapterType(String authority, String accountType) {
+ if (TextUtils.isEmpty(authority)) {
+ throw new IllegalArgumentException("the authority must not be empty: " + authority);
+ }
+ if (TextUtils.isEmpty(accountType)) {
+ throw new IllegalArgumentException("the accountType must not be empty: " + accountType);
+ }
+ this.authority = authority;
+ this.accountType = accountType;
+ }
+
+ public boolean equals(Object o) {
+ if (o == this) return true;
+ if (!(o instanceof SyncAdapterType)) return false;
+ final SyncAdapterType other = (SyncAdapterType)o;
+ return authority.equals(other.authority) && accountType.equals(other.accountType);
+ }
+
+ public int hashCode() {
+ int result = 17;
+ result = 31 * result + authority.hashCode();
+ result = 31 * result + accountType.hashCode();
+ return result;
+ }
+
+ public String toString() {
+ return "SyncAdapterType {name=" + authority + ", type=" + accountType + "}";
+ }
+} \ No newline at end of file