Back to project page android-sdk.
The source code is released under:
MIT License
If you think the Android project 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 io.relayr.model; // ww w .j a v a2s . c o m import java.io.Serializable; public class Status implements Serializable{ private String database; public Status(String database) { this.database = database; } public String getDatabase() { return database; } public void setDatabase(String database) { this.database = database; } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof Status)) return false; Status status = (Status) o; if (database != null ? !database.equals(status.database) : status.database != null) return false; return true; } @Override public int hashCode() { return database != null ? database.hashCode() : 0; } }