Back to project page xing-android-sdk.
The source code is released under:
Apache License
If you think the Android project xing-android-sdk 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 de.hdodenhof.xingapi.internal.response; /*ww w .jav a 2s .c o m*/ import java.util.List; import de.hdodenhof.xingapi.models.NetworkActivity; public class NetworkActivityWrapper implements ResponseWrapper<List<NetworkActivity>> { List<NetworkActivity> networkActivities; @Override public List<NetworkActivity> unwrap() { return networkActivities; } }