Back to project page doubanbook4android.
The source code is released under:
Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...
If you think the Android project doubanbook4android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Token.java//from www .ja v a2 s. com * classes : org.kevin.douban.auth.Token * Created at : 2013-5-9 ????10:00:50 */ package com.study.doubanbook_for_android.auth; import com.google.gson.annotations.SerializedName; /** * accesstoken */ public class Token { @SerializedName("access_token") public String access_token; @SerializedName("refresh_token") public String refresh_token; @SerializedName("expires_in") public long expires_in; @SerializedName("douban_user_id") public String douban_user_id; }