Back to project page glvideoplayer-android.
The source code is released under:
Apache License
If you think the Android project glvideoplayer-android 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 net.binzume.android.nicovideo; //from w ww. java2 s . co m import org.apache.http.cookie.Cookie; public class NicoSession { public static final int ERROR_NONE = 0; public static final int ERROR_LOGIN_FAILED = 1; public static final int ERROR_ACCOUNT_LOCK = 4; public Cookie cookie; public String user_session; // SSID public long userId = -1; public int isPremium = -1; public int errorCode; public long lastLogin = -1; }