Back to project page AndroidMessenger.
The source code is released under:
GNU General Public License
If you think the Android project AndroidMessenger listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * @author - Zachary Goldberg @ 2008/*from w w w. j a v a 2 s.co m*/ */ package com.penn.cis121.androidmessenger.accountprovider; import android.net.Uri; import android.provider.BaseColumns; public final class AccountInfo { /** * Notes table */ public static final class Account implements BaseColumns { /** * The content:// style URL for this table */ public static final Uri CONTENT_URI = Uri .parse("content://com.penn.cis121.androidmessenger.accountprovider/accounts"); /** * The default sort order for this table */ public static final String DEFAULT_SORT_ORDER = ""; /** * The username belonging to the account * <P>Type: TEXT</P> */ public static final String USERNAME = "username"; /** * The password belonging to the account * <P>Type: TEXT</P> */ public static final String PASSWORD = "password"; /** * The classname belonging to the account * <P>Type: TEXT</P> */ public static final String CLASSNAME = "className"; } }