com.sun.cdc.io.j2me.btl2cap.Protocol Maven / Gradle / Ivy
/**
* BlueCove - Java library for Bluetooth
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @version $Id: Protocol.java 918 2007-08-14 20:20:37Z skarzhevskyy $
*/
package com.sun.cdc.io.j2me.btl2cap;
import java.io.IOException;
import javax.microedition.io.Connection;
import com.intel.bluetooth.BluetoothConsts;
import com.intel.bluetooth.MicroeditionConnector;
import com.sun.cdc.io.ConnectionBaseInterface;
/**
* This class is Proxy for btl2cap (L2CAP) Connection implementations used in WTK and MicroEmulator
*
*
* Your application should not use this class directly.
*
* @author vlads
*/
public class Protocol implements ConnectionBaseInterface {
public Connection openPrim(String name, int mode, boolean timeouts) throws IOException {
return MicroeditionConnector.open(BluetoothConsts.PROTOCOL_SCHEME_L2CAP + ":" + name, mode, timeouts);
}
}