WIMM Labs


com.wimm.framework.service
Class NetworkService.Error

java.lang.Object
  extended by com.wimm.framework.service.NetworkService.Error
Enclosing class:
NetworkService

public static class NetworkService.Error
extends Object

Values returned in the extra NetworkService.EXTRA_ERROR.

Since:
WIMM SDK 1.0.3

Field Summary
static int COMMAND_TIMEOUT
          An async function did not callback.
static int INTERFACE_NOT_CONFIGURED
          The user has not configured this interface.
static int INTERFACE_NOT_POWERED
          The interface is not powered on.
static int INTERNAL
          The network service is in a bad state.
static int NO_INTERNET_CONNECTION
          A network connection exists, but we are unable to reach the internet.
static int NONE
          No error occurred.
static int UNEXPECTED_DISCONNECT
          The remote end dropped the connection.
static int UNKNOWN
          An unknown error occurred.
 
Constructor Summary
NetworkService.Error()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NONE

public static final int NONE
No error occurred.

See Also:
Constant Field Values

UNKNOWN

public static final int UNKNOWN
An unknown error occurred.

See Also:
Constant Field Values

INTERNAL

public static final int INTERNAL
The network service is in a bad state.

See Also:
Constant Field Values

COMMAND_TIMEOUT

public static final int COMMAND_TIMEOUT
An async function did not callback.

See Also:
Constant Field Values

UNEXPECTED_DISCONNECT

public static final int UNEXPECTED_DISCONNECT
The remote end dropped the connection.

See Also:
Constant Field Values

INTERFACE_NOT_POWERED

public static final int INTERFACE_NOT_POWERED
The interface is not powered on.

See Also:
Constant Field Values

INTERFACE_NOT_CONFIGURED

public static final int INTERFACE_NOT_CONFIGURED
The user has not configured this interface.

See Also:
Constant Field Values

NO_INTERNET_CONNECTION

public static final int NO_INTERNET_CONNECTION
A network connection exists, but we are unable to reach the internet.

See Also:
Constant Field Values
Constructor Detail

NetworkService.Error

public NetworkService.Error()

WIMM Labs