Back to project page BackbeamAndroid.
The source code is released under:
Copyright (c) 2012 Level Apps S.L. <http://backbeam.io> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software...
If you think the Android project BackbeamAndroid 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 io.backbeam; /* w w w . j ava 2 s . c o m*/ import java.io.Serializable; import java.util.Collections; import java.util.List; public class JoinResult implements Serializable { private static final long serialVersionUID = 979065789650106436L; private int count; private List<BackbeamObject> results; public JoinResult(int count, List<BackbeamObject> results) { this.count = count; this.results = results; } public int getCount() { return count; } public List<BackbeamObject> getResults() { return Collections.unmodifiableList(results); } }