* @see org.javabluetooth.stack.BluetoothStack#openL2CAPService(org.javabluetooth.stack.l2cap.L2CAPChannel, short,
* short, byte[])
*/
public void registerL2CAPService(L2CAPChannel channel, short serviceUUID, short browseUUID, byte[] serviceRecord) {
SDPServer sdpServer = SDPServer.getSDPServer();
BluetoothTCPChannelFactory channelFactory = new BluetoothTCPChannelFactory(channel);
sdpServer.registerService(channelFactory, serviceUUID, browseUUID, serviceRecord);
}