Back to project page location-sharing-android.
The source code is released under:
MIT License
If you think the Android project location-sharing-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 lv.lu.locationsharing.model; /*from w w w . j a v a2s. co m*/ import java.util.ArrayList; public class LocationPostStatus { boolean success; ArrayList<String> errors; public ArrayList<String> getErrors() { return errors; } public void setErrors(ArrayList<String> errors) { this.errors = errors; } public boolean isSuccess() { return success; } public void setSuccess(boolean success) { this.success = success; } }