Back to project page EasyVote.
The source code is released under:
Apache License
If you think the Android project EasyVote 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 com.llanox.mobile.easyvote; //from w w w.ja v a 2 s .c om public final class ConstantsEasyVote { public static final String ROLE_KEY = "role"; public static final String MODERATOR_ROLE = "moderator"; public static final String VOTER_ROLE = "voter"; public static final String ADMIN_ROLE = "admin"; public static final String USER_SESSION = "user_session"; public static final String USER_WEIGHT = "user_weight"; public static final String SHARED_PREF_NAME = "shred_pref_easyvote"; }