aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/theb/provider/HostDb.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/theb/provider/HostDb.java')
-rw-r--r--src/org/theb/provider/HostDb.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/org/theb/provider/HostDb.java b/src/org/theb/provider/HostDb.java
new file mode 100644
index 0000000..3bed790
--- /dev/null
+++ b/src/org/theb/provider/HostDb.java
@@ -0,0 +1,18 @@
+package org.theb.provider;
+
+import android.net.ContentURI;
+import android.provider.BaseColumns;
+
+public final class HostDb {
+ public static final class Hosts implements BaseColumns {
+ public static final ContentURI CONTENT_URI
+ = ContentURI.create("content://org.theb.provider.HostDb/hosts");
+
+ public static final String DEFAULT_SORT_ORDER = "hostname DESC";
+
+ public static final String USERNAME = "username";
+ public static final String HOSTNAME = "hostname";
+ public static final String PORT = "port";
+ public static final String HOSTKEY = "hostkey";
+ }
+}