Back to project page facebook-helpers.
The source code is released under:
Apache License
If you think the Android project facebook-helpers 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.mobilesolutionworks.android.facebookhelpers; /* w w w . ja v a 2s . com*/ /** * Created by Yunarta on 7/23/13. */ public enum FacebookControllerConstants { ERR_UNKNOWN(-2), ERR_CONTROLLER_NOT_INITIALIZED(-1), OK_SESSION_CREATED(1), OK_SESSION_OPENED(2), OK_SESSION_CLOSED(3), OK_SESSION_OPENING(4); private int mCode; FacebookControllerConstants(int code) { mCode = code; } }