Back to project page Broadsheet.ie-Android.
The source code is released under:
Copyright (c) 2013 Karl Monaghan (http://karlmonaghan.com/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Soft...
If you think the Android project Broadsheet.ie-Android 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 ie.broadsheet.app.model.json; /*w w w. j ava 2 s .c om*/ import java.io.Serializable; import com.google.api.client.util.Key; public class SinglePost implements Serializable { private static final long serialVersionUID = 1L; @Key private String status; @Key private Post post; public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public Post getPost() { return post; } public void setPost(Post post) { this.post = post; } @Override public String toString() { return "SinglePost [status=" + status + ", post=" + post + "]"; } }