aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/theb/provider/HostDb.java
blob: 3bed7903884f5efa0dd71f4585d3b1f1e5788bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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";
	}
}