Back to project page msf-spaces-sdk-android.
The source code is released under:
Apache License
If you think the Android project msf-spaces-sdk-android 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 de.imc.mirror.sdk.android.data; //from w w w . j av a 2 s . c o m /** * This class provides a set of strings for creation, deletion and all columnnames of the database table * where all member information of a space will be saved. * @author Mach */ public class MembersTable { public static final String TABLE_NAME = "members_table"; public static final String SPACE = "space"; public static final String ROLE = "role"; public static final String BAREJID = "barejid"; public static final String SQL_CREATE = "CREATE TABLE " + TABLE_NAME + " (" + SPACE + " STRING NOT NULL," + ROLE + " STRING NOT NULL," + BAREJID + " STRING NOT NULL);"; public static final String SQL_DROP = "DROP TABLE IF EXISTS " + TABLE_NAME + ";"; }