Back to project page android-sdk.
The source code is released under:
MIT License
If you think the Android project 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 io.relayr.model; /*from w ww. j a v a2s . c o m*/ import java.io.Serializable; /** The Transmitter class is a representation of the Transmitter entity. * A Transmitter is another basic entity on the relayr platform. * A transmitter contrary to a device does not gather data but is only used to relay the data * from the devices to the relayr platform. * The transmitter is also used to authenticate the different devices that transmit data via it. */ public class Transmitter implements Serializable { public final String id; public final String secret; public final String owner; private String name; public Transmitter(String id, String secret, String owner, String name) { this.id = id; this.secret = secret; this.owner = owner; this.name = name; } public void setName(String name) { this.name = name; } public String getName() { return name; } }