Back to project page RavenChat.
The source code is released under:
Copyright (c) 2014 Sumit Gouthaman. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Softwar...
If you think the Android project RavenChat 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.sumitgouthaman.raven.models; /*from w w w. j a v a2 s. co m*/ /** * Created by sumit on 24/3/14. */ /** * Class to hold properties of a contact */ public class Contact { public String username; public String secretUsername; public String registrationID; public Message lastMessage = null; //null os interpreted as no message public String encKey = null; //null is interpreted as no encryption available }