Back to project page schat.
The source code is released under:
MIT License
If you think the Android project schat 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 data.contents; /*from w w w . j av a 2 s .co m*/ import data.Content; /** * @author Gary Ye * @version 12/1/13 */ public class PublicKeyRequest extends Content { private String requestId; public PublicKeyRequest(String requestId){ this.type = Type.PUBLIC_KEY_REQUEST; this.requestId = requestId; } @Override public String toString() { return "Public key request from " + getRequestId(); } public String getRequestId() { return requestId; } }