Back to project page my-wallpaper.
The source code is released under:
MIT License
If you think the Android project my-wallpaper 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.koonen.photostream.api.flickr; //from w w w . ja v a 2s . c o m import com.koonen.photostream.api.User; public class Auth { private String token; private Perms perms; private User user; public String getToken() { return token; } public void setToken(String token) { this.token = token; } public Perms getPerms() { return perms; } public void setPerms(Perms perms) { this.perms = perms; } public User getUser() { return user; } public void setUser(User user) { this.user = user; } }