Back to project page ShhApp.
The source code is released under:
Apache License
If you think the Android project ShhApp 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 com.example.shhapp; //from w ww . j a v a2 s.c om import com.j256.ormlite.field.DatabaseField; /** * A simple model object to store a Contact */ public class Contact { @DatabaseField(generatedId = true) int id; @DatabaseField(canBeNull = false) String password; @DatabaseField String email; Contact() { // needed by ormlite } public Contact(String email, String password) { this.password = password; this.email = email; } @Override public String toString() { return password + ": " + email; } }