Back to project page xing-android-sdk.
The source code is released under:
Apache License
If you think the Android project xing-android-sdk 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 de.hdodenhof.xingapi.models; //from w w w . j a v a 2 s .co m import java.util.Date; public class Comment { private String id; private Date createdAt; private String content; private User creator; public String getId() { return id; } public Date getCreatedAt() { return createdAt; } public String getContent() { return content; } public User getCreator() { return creator; } }