package com.juick.www.vk; import com.fasterxml.jackson.annotation.JsonValue; /** * Created by vitalyster on 28.11.2016. */ public class GraphResponse { private User user; @JsonValue public User getUser() { return user; } public void setUser(User user) { this.user = user; } }