Back to project page semana-isw2013.
The source code is released under:
Apache License
If you think the Android project semana-isw2013 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 mobi.itson.semanaisw2013app.utils; // w w w. jav a 2s. c o m import java.util.Date; public class UploadImage { private Long id; private String imageBlobKey; private String thumbBlobKey; private Date creationDate; public UploadImage(){} public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getImageBlobKey() { return imageBlobKey; } public void setImageBlobKey(String imageBlobKey) { this.imageBlobKey = imageBlobKey; } public String getThumbBlobKey() { return thumbBlobKey; } public void setThumbBlobKey(String thumbBlobKey) { this.thumbBlobKey = thumbBlobKey; } public Date getCreationDate() { return creationDate; } public void setCreationDate(Date creationDate) { this.creationDate = creationDate; } }