Back to project page you2peer.
The source code is released under:
Apache License
If you think the Android project you2peer 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.u2p.messages; /* ww w. j av a 2s .c o m*/ import java.io.Serializable; public class ListRequest implements Serializable{ private static final long serialVersionUID = 1L; private String group; public ListRequest(String group){ setGroup(group); } public String getGroup() { return group; } public void setGroup(String group) { this.group = group; } }