net.sf.microlog.midp.bluetooth.BluetoothRemoteDevice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microlog-logger-midp-bluetooth
Show all versions of microlog-logger-midp-bluetooth
The Microlog MIPD Bluetooth module contains the BluetoothAppender for MIDP.
package net.sf.microlog.midp.bluetooth;
import javax.bluetooth.RemoteDevice;
/**
* Contain the Bluetooth address of the server. This is used in the service
* search.
*
* @author Jarle Hansen ([email protected])
*
*/
public class BluetoothRemoteDevice extends RemoteDevice {
private BluetoothRemoteDevice(final String bluetoothAddress) {
super(bluetoothAddress);
}
public static BluetoothRemoteDevice setAddress(final String bluetoothAddress) {
return new BluetoothRemoteDevice(bluetoothAddress);
}
}