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; /*from www .j ava 2 s . co m*/ public class SSHKeyTable extends TableHelper { public static final String NAME = "name"; public static final String PUBLIC_KEY = "public_key"; public static final String FINGERPRINT = "fingerprint"; public SSHKeyTable(){ columns.put(ID, "integer primary key"); columns.put(NAME, "text"); columns.put(PUBLIC_KEY, "text"); columns.put(FINGERPRINT, "text"); TABLE_NAME = "ssh_keys"; } }