Back to project page KendaliPintuAndroid.
The source code is released under:
GNU General Public License
If you think the Android project KendaliPintuAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/******************************************************************************* * Copyright (c) 2014 Dimas Rullyan Danu * // w ww.j ava 2s .co m * Kendali Pintu is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Kendali Pintu is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Kendali Pintu. If not, see <http://www.gnu.org/licenses/>. ******************************************************************************/ package com.dimasdanz.kendalipintu.util; public class StaticString { public static final String TAG_NO_ACCOUNT = "NO_ACCOUNT"; public static final String TAG_INCORRECT_PASSWORD = "INCORRECT_PASSWORD"; public static final String TAG_NFC_ENTER = "dimasdanz.kendalipintu.tag_masuk"; public static final String TAG_NFC_EXIT = "dimasdanz.kendalipintu.tag_keluar"; public static final String TAG_INVALID_NFC = "invalid_tag"; public static final String TAG_SERVER_OFFLINE = "server_offline"; public static final String TAG_ARDUINO_OFFLINE = "arduino_offline"; public static final String TAG_STATUS_OFFLINE = "offline"; public static final String TAG_STATUS_ACTIVE = "active"; public static final String TAG_STATUS_INACTIVE = "inactive"; public static final String TAG_BARCODE_ENTER = "dimasdanz.kendalipintu.barcode_masuk"; public static final String TAG_BARCODE_EXIT = "dimasdanz.kendalipintu.barcode_keluar"; public static final String TAG_DOOR_OPENED = "door_opened"; public static final String INPUT_SOURCE_OUTSIDE = "Android Masuk"; public static final String INPUT_SOURCE_INSIDE = "Android Keluar"; public static final String INPUT_SOURCE_REMOTE = "Android Remote"; }