/** * The MIT License (MIT) Copyright (c) 2013 Chute Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package com.getchute.android.photopickerplus.util; public class Constants { public static final int HTTP_ERROR_CODE_UNAUTHORIZED = 401; public static final int DELAY_TIME = 500; public static final int CAMERA_PIC_REQUEST = 2500; public static final int CAMERA_VIDEO_REQUEST = 2501; public static final String KEY_SELECTED_ACCOUNTS_ITEMS = "keySelectedAccountsItems"; public static final String KEY_SELECTED_IMAGES_ITEMS = "keySelectedImagesItems"; public static final String KEY_SELECTED_VIDEOS_ITEMS = "keySelectedVideosItems"; public static final String KEY_FOLDER_ID = "keyFolderId"; public static final String KEY_ACCOUNT = "keyAccount"; public static final String KEY_PHOTO_FILTER_TYPE = "keyPhotoFilterType"; public static final String KEY_EXPIRED_SESSION = "keyExpiredSession"; public static final String SELECTED_IMAGES_URL = "https://api.getchute.com/v2/widgets/native"; }