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 . ja v a 2 s.co m import java.io.Serializable; public class FileRequest implements Serializable{ private static final long serialVersionUID = 1L; private String name; private String group; public FileRequest(String name, String group){ setName(name); setGroup(group); } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getGroup() { return group; } public void setGroup(String group) { this.group = group; } }