Back to project page protohipster.
The source code is released under:
Apache License
If you think the Android project protohipster 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.flipper83.protohipster.feed.domain.gateway; /*from ww w . j av a 2 s .c om*/ /** * this class is a Hipster inside bussines model */ public class Hipster { private String userId; private String name; private String surname; private String avatar; private long time; private int numLikes; public Hipster(String userId) { this.userId = userId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSurname() { return surname; } public void setSurname(String surname) { this.surname = surname; } public String getAvatar() { return avatar; } public void setAvatar(String avatar) { this.avatar = avatar; } public long getTime() { return time; } public void setTime(long time) { this.time = time; } public String getUserId() { return userId; } public int getNumLikes() { return numLikes; } public void setNumLikes(int numLikes) { this.numLikes = numLikes; } }