Back to project page digital-ocean-swimmer.
The source code is released under:
MIT License
If you think the Android project digital-ocean-swimmer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.yassirh.digitalocean.data; // www .ja va 2 s.co m public class AccountTable extends TableHelper { public static final String NAME = "name"; public static final String CLIENT_ID = "client_id"; public static final String TOKEN = "token"; public static final String REFRESH_TOKEN = "refresh_token"; public static final String EXPIRES_IN = "expires_in"; public static final String SELECTED = "selected"; public AccountTable(){ columns.put(ID, "integer primary key autoincrement"); columns.put(NAME, "text"); columns.put(TOKEN, "text"); columns.put(REFRESH_TOKEN, "text"); columns.put(EXPIRES_IN, "long"); columns.put(SELECTED, "integer"); TABLE_NAME = "accounts"; } }