Back to project page beaconbrowser.
The source code is released under:
MIT License
If you think the Android project beaconbrowser 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 org.waded.beaconbrowser; //from www .java 2 s. c om public class Entry { public Entry(String id, String link, BeaconSyncEntryExtension beacon) { this.id = id; this.link = link; this.beacon = beacon; } public final String id; public final String link; public final BeaconSyncEntryExtension beacon; }