package com.juick; /** * Created by vt on 08/02/16. */ public class Recommendation { User from; public User getFrom() { return from; } public Recommendation(User from) { this.from = from; } }