/*******************************************************************************
* Software Name : RCS IMS Stack
*
* Copyright (C) 2010 France Telecom S.A.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package com.orangelabs.rcs.provider.eab;
import android.net.Uri;
/**
* Rich address book data constants
*
* @author jexa7410
*/
public class RichAddressBookData {
/**
* Database URI
*/
static final Uri CONTENT_URI = Uri.parse("content://com.orangelabs.rcs.eab/eab");
/**
* Column name
*/
static final String KEY_ID = "_id";
/**
* Column name
*/
static final String KEY_CONTACT_NUMBER = "contact_number";
/**
* Column name
*/
static final String KEY_PRESENCE_SHARING_STATUS = "presence_sharing_status";
/**
* Column name
*/
static final String KEY_TIMESTAMP = "timestamp";
/**
* Column name
*/
static final String KEY_RCS_STATUS = "rcs_status";
/**
* Column name
*/
static final String KEY_REGISTRATION_STATE = "registration_state";
/**
* Column name
*/
static final String KEY_RCS_STATUS_TIMESTAMP = "rcs_status_timestamp";
/**
* Column name
*/
static final String KEY_PRESENCE_FREE_TEXT = "presence_free_text";
/**
* Column name
*/
static final String KEY_PRESENCE_WEBLINK_NAME = "presence_weblink_name";
/**
* Column name
*/
static final String KEY_PRESENCE_WEBLINK_URL = "presence_weblink_url";
/**
* Column name
*/
static final String KEY_PRESENCE_PHOTO_EXIST_FLAG = "presence_photo_exist_flag";
/**
* Column name
*/
static final String KEY_PRESENCE_PHOTO_ETAG = "presence_photo_etag";
/**
* Column name
*/
static final String KEY_PRESENCE_PHOTO_DATA = "presence_photo_data";
/**
* Column name
*/
static final String KEY_PRESENCE_GEOLOC_EXIST_FLAG = "presence_geoloc_exist_flag";
/**
* Column name
*/
static final String KEY_PRESENCE_GEOLOC_LATITUDE = "presence_geoloc_latitude";
/**
* Column name
*/
static final String KEY_PRESENCE_GEOLOC_LONGITUDE = "presence_geoloc_longitude";
/**
* Column name
*/
static final String KEY_PRESENCE_GEOLOC_ALTITUDE = "presence_geoloc_altitude";
/**
* Column name
*/
static final String KEY_PRESENCE_TIMESTAMP = "presence_timestamp";
/**
* Column name
*/
static final String KEY_CAPABILITY_TIMESTAMP = "capability_timestamp";
/**
* Column name
*/
static final String KEY_CAPABILITY_CS_VIDEO = "capability_cs_video";
/**
* Column name
*/
static final String KEY_CAPABILITY_IMAGE_SHARING = "capability_image_sharing";
/**
* Column name
*/
static final String KEY_CAPABILITY_VIDEO_SHARING = "capability_video_sharing";
/**
* Column name
*/
static final String KEY_CAPABILITY_IP_VOICE_CALL = "capability_ip_voice_call";
/**
* Column name
*/
static final String KEY_CAPABILITY_IP_VIDEO_CALL = "capability_ip_video_call";
/**
* Column name
*/
static final String KEY_CAPABILITY_IM_SESSION = "capability_im_session";
/**
* Column name
*/
static final String KEY_CAPABILITY_FILE_TRANSFER = "capability_file_transfer";
/**
* Column name
*/
static final String KEY_CAPABILITY_PRESENCE_DISCOVERY = "capability_presence_discovery";
/**
* Column name
*/
static final String KEY_CAPABILITY_SOCIAL_PRESENCE = "capability_social_presence";
/**
* Column name
*/
static final String KEY_CAPABILITY_GEOLOCATION_PUSH = "capability_geolocation_push";
/**
* Column name
*/
static final String KEY_CAPABILITY_FILE_TRANSFER_HTTP = "capability_file_transfer_http";
/**
* Column name
*/
static final String KEY_CAPABILITY_FILE_TRANSFER_THUMBNAIL = "capability_file_transfer_thumbnail";
/**
* Column name
*/
static final String KEY_CAPABILITY_FILE_TRANSFER_SF = "capability_file_transfer_sf";
/**
* Column name
*/
static final String KEY_CAPABILITY_GROUP_CHAT_SF = "capability_group_chat_sf";
/**
* Column name
*/
static final String KEY_CAPABILITY_EXTENSIONS = "capability_extensions";
/**
* Column name
*/
static final String KEY_CAPABILITY_COMMON_EXTENSION = "capability_common_extension";
/**
* Column name
*/
static final String KEY_IM_BLOCKED = "im_blocked";
/**
* Column name
*/
static final String KEY_CAPABILITY_IM_BLOCKED_TIMESTAMP = "im_blocked_timestamp";
/**
* TRUE value
*/
public static final String TRUE_VALUE = Boolean.toString(true);
/**
* FALSE value
*/
public static final String FALSE_VALUE = Boolean.toString(false);
}