Android Open Source - ShhApp Contact






From Project

Back to project page ShhApp.

License

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.

Java Source Code

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;
  }
}




Java Source Code List

com.example.shhapp.Contact.java
com.example.shhapp.DatabaseHelper.java
com.example.shhapp.GMailSenderAsynTask.java
com.example.shhapp.GmailReciever.java
com.example.shhapp.MessageUtil.java
com.example.shhapp.RSAAsynckTask.java
com.example.shhapp.RSA.java
com.example.shhapp.ShhActivity.java
com.internal.utility.GMailUtil.java
com.internal.utility.JSSEProvider.java