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; /*w ww . j av a 2s.c o m*/ /** * This class provides a set of strings for creation, deletion and all columnnames of the database table * where all data will be saved which couldn't be sent. * @author Mach */ public class SendTable { public static final String TABLE_NAME = "send_table"; public static final String SEND_ID = "send_id"; public static final String SEND_SPACE = "send_node"; public static final String SEND_NAME = "send_name"; public static final String SEND_NAMESPACE = "send_namespace"; public static final String SEND_PAYLOAD = "payload"; public static final String USER = "user"; public static final String SQL_CREATE = "CREATE TABLE " + TABLE_NAME + " (" + SEND_ID + " STRING NOT NULL," + SEND_SPACE + " STRING NOT NULL," + SEND_NAME + " STRING NOT NULL," + SEND_NAMESPACE + " STRING NOT NULL," + SEND_PAYLOAD + " STRING NOT NULL," + USER + " STRING NOT NULL);"; public static final String SQL_DROP = "DROP TABLE IF EXISTS " + TABLE_NAME + ";"; }