summaryrefslogtreecommitdiffstats
path: root/obex/javax/obex/SessionNotifier.java
diff options
context:
space:
mode:
Diffstat (limited to 'obex/javax/obex/SessionNotifier.java')
-rw-r--r--obex/javax/obex/SessionNotifier.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/obex/javax/obex/SessionNotifier.java b/obex/javax/obex/SessionNotifier.java
index fd574c0..36e0ebf 100644
--- a/obex/javax/obex/SessionNotifier.java
+++ b/obex/javax/obex/SessionNotifier.java
@@ -61,7 +61,7 @@ public interface SessionNotifier {
* does not have a <code>ServiceRecord</code> in the SDDB, the
* <code>ServiceRecord</code> for this object will be added to the SDDB.
* This method requests the BCC to put the
- * local device in connectable mode so that it will respond to
+ * local device in connectible mode so that it will respond to
* connection attempts by clients.
* <P>
* The following checks are done to verify that the service record
@@ -101,10 +101,10 @@ public interface SessionNotifier {
* be due to insufficient disk space, database locks, etc.
*
* @throws BluetoothStateException if the server device could
- * not be placed in connectable mode because the device user has
- * configured the device to be non-connectable
+ * not be placed in connectible mode because the device user has
+ * configured the device to be non-connectible
*/
- public ObexSession acceptAndOpen(ServerRequestHandler handler) throws IOException;
+ ObexSession acceptAndOpen(ServerRequestHandler handler) throws IOException;
/**
* Waits for a transport layer connection to be established and specifies
@@ -117,7 +117,7 @@ public interface SessionNotifier {
* does not have a <code>ServiceRecord</code> in the SDDB, the
* <code>ServiceRecord</code> for this object will be added to the SDDB.
* This method requests the BCC to put the
- * local device in connectable mode so that it will respond to
+ * local device in connectible mode so that it will respond to
* connection attempts by clients.
* <P>
* The following checks are done to verify that the service record
@@ -160,9 +160,8 @@ public interface SessionNotifier {
* be due to insufficient disk space, database locks, etc.
*
* @throws BluetoothStateException if the server device could
- * not be placed in connectable mode because the device user has
- * configured the device to be non-connectable
+ * not be placed in connectible mode because the device user has
+ * configured the device to be non-connectible
*/
- public ObexSession acceptAndOpen(ServerRequestHandler handler, Authenticator auth)
- throws IOException;
+ ObexSession acceptAndOpen(ServerRequestHandler handler, Authenticator auth) throws IOException;
}