2009-06-02 1.2.0

org.eclipse.soda.dk.gps.nmea.transport.service
Interface GpsNmeaTransportService

All Known Implementing Classes:
GpsNmeaTransport

public interface GpsNmeaTransportService

Global Positioning System (GPS) National Marine Electronics Association (NMEA) Transport. The transport service interface defines the service to be registered for the GpsNmeaTransport transport.

The list of exported services:

Since:
1.0
Version:
1.2.0
See Also:
GpsNmeaTransportService, org.eclipse.soda.dk.transport.service.TransportService

Field Summary
static java.lang.String FACTORY_SERVICE_NAME
          Define the OSGi factory service name.
static java.lang.String MANAGED_SERVICE_NAME
          Define the OSGi managed service name.
static int SERIAL_BAUDRATE_DEFAULT
          The baud rate.
static java.lang.String SERIAL_BAUDRATE_PROPERTY
          The baud rate.
static int SERIAL_COMPORT_DEFAULT
          The communication port number.
static java.lang.String SERIAL_COMPORT_PROPERTY
          The communication port number.
static int SERIAL_DATABITS_DEFAULT
          The data bits.
static java.lang.String SERIAL_DATABITS_PROPERTY
          The data bits.
static int SERIAL_HARDWAREFLOWCONTROL_DEFAULT
          The hardware flow control.
static java.lang.String SERIAL_HARDWAREFLOWCONTROL_PROPERTY
          The hardware flow control.
static int SERIAL_PARITY_DEFAULT
          The parity.
static java.lang.String SERIAL_PARITY_PROPERTY
          The parity.
static long SERIAL_READINTERVALTIMEOUT_DEFAULT
          The read interval timeout in milliseconds.
static java.lang.String SERIAL_READINTERVALTIMEOUT_PROPERTY
          The read interval timeout in milliseconds.
static long SERIAL_READTOTALTIMEOUT_DEFAULT
          The read total timeout in milliseconds.
static java.lang.String SERIAL_READTOTALTIMEOUT_PROPERTY
          The read total timeout in milliseconds.
static int SERIAL_SOFTWAREFLOWCONTROL_DEFAULT
          The software flow control.
static java.lang.String SERIAL_SOFTWAREFLOWCONTROL_PROPERTY
          The software flow control.
static int SERIAL_STOPBITS_DEFAULT
          The stop bits.
static java.lang.String SERIAL_STOPBITS_PROPERTY
          The stop bits.
static long SERIAL_WRITETOTALTIMEOUT_DEFAULT
          The write total timeout in milliseconds.
static java.lang.String SERIAL_WRITETOTALTIMEOUT_PROPERTY
          The write total timeout in milliseconds.
static java.lang.String SERVICE_NAME
          Define the OSGi service name.
static java.lang.String TCPIP_HOST_DEFAULT
          The remote host name or address.
static int TCPIP_LINGER_DEFAULT
          The linger value.
static java.lang.String TCPIP_LINGER_PROPERTY
          The linger value.
static java.lang.String TCPIP_LOCALHOST_DEFAULT
          The local host name or address.
static java.lang.String TCPIP_LOCALHOST_PROPERTY
          The local host name or address.
static int TCPIP_LOCALPORT_DEFAULT
          The local port number.
static java.lang.String TCPIP_LOCALPORT_PROPERTY
          The local port number.
static int TCPIP_READSIZE_DEFAULT
          The read size value in bytes.
static java.lang.String TCPIP_READSIZE_PROPERTY
          The read size value in bytes.
static int TCPIP_READTIMEOUT_DEFAULT
          The read timeout value in milliseconds.
static java.lang.String TCPIP_READTIMEOUT_PROPERTY
          The read timeout value in milliseconds.
static java.lang.String TCPIP_REMOTEHOST_DEFAULT
          The remote host name or address.
static java.lang.String TCPIP_REMOTEHOST_PROPERTY
          The remote host name or address.
static int TCPIP_REMOTEPORT_DEFAULT
          The remote port number on the host.
static java.lang.String TCPIP_REMOTEPORT_PROPERTY
          The remote port number on the host.
static int TCPIP_WRITESIZE_DEFAULT
          The write size value in bytes.
static java.lang.String TCPIP_WRITESIZE_PROPERTY
          The write size value in bytes.
 

Field Detail

SERVICE_NAME

static final java.lang.String SERVICE_NAME
Define the OSGi service name.

Since:
1.0
See Also:
Constant Field Values

MANAGED_SERVICE_NAME

static final java.lang.String MANAGED_SERVICE_NAME
Define the OSGi managed service name.

Since:
1.0
See Also:
Constant Field Values

FACTORY_SERVICE_NAME

static final java.lang.String FACTORY_SERVICE_NAME
Define the OSGi factory service name.

Since:
1.0
See Also:
Constant Field Values

SERIAL_COMPORT_DEFAULT

static final int SERIAL_COMPORT_DEFAULT
The communication port number.

Since:
1.2
See Also:
SERIAL_COMPORT_PROPERTY, Constant Field Values

SERIAL_COMPORT_PROPERTY

static final java.lang.String SERIAL_COMPORT_PROPERTY
The communication port number. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_COMPORT_DEFAULT, Constant Field Values

SERIAL_BAUDRATE_DEFAULT

static final int SERIAL_BAUDRATE_DEFAULT
The baud rate.

Since:
1.2
See Also:
SERIAL_BAUDRATE_PROPERTY, Constant Field Values

SERIAL_BAUDRATE_PROPERTY

static final java.lang.String SERIAL_BAUDRATE_PROPERTY
The baud rate. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_BAUDRATE_DEFAULT, Constant Field Values

SERIAL_DATABITS_DEFAULT

static final int SERIAL_DATABITS_DEFAULT
The data bits.

Since:
1.2
See Also:
SERIAL_DATABITS_PROPERTY, Constant Field Values

SERIAL_DATABITS_PROPERTY

static final java.lang.String SERIAL_DATABITS_PROPERTY
The data bits. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_DATABITS_DEFAULT, Constant Field Values

SERIAL_PARITY_DEFAULT

static final int SERIAL_PARITY_DEFAULT
The parity.

Since:
1.2
See Also:
SERIAL_PARITY_PROPERTY

SERIAL_PARITY_PROPERTY

static final java.lang.String SERIAL_PARITY_PROPERTY
The parity. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_PARITY_DEFAULT, Constant Field Values

SERIAL_STOPBITS_DEFAULT

static final int SERIAL_STOPBITS_DEFAULT
The stop bits.

Since:
1.2
See Also:
SERIAL_STOPBITS_PROPERTY

SERIAL_STOPBITS_PROPERTY

static final java.lang.String SERIAL_STOPBITS_PROPERTY
The stop bits. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_STOPBITS_DEFAULT, Constant Field Values

SERIAL_HARDWAREFLOWCONTROL_DEFAULT

static final int SERIAL_HARDWAREFLOWCONTROL_DEFAULT
The hardware flow control.

Since:
1.2
See Also:
SERIAL_HARDWAREFLOWCONTROL_PROPERTY

SERIAL_HARDWAREFLOWCONTROL_PROPERTY

static final java.lang.String SERIAL_HARDWAREFLOWCONTROL_PROPERTY
The hardware flow control. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_HARDWAREFLOWCONTROL_DEFAULT, Constant Field Values

SERIAL_SOFTWAREFLOWCONTROL_DEFAULT

static final int SERIAL_SOFTWAREFLOWCONTROL_DEFAULT
The software flow control.

Since:
1.2
See Also:
SERIAL_SOFTWAREFLOWCONTROL_PROPERTY

SERIAL_SOFTWAREFLOWCONTROL_PROPERTY

static final java.lang.String SERIAL_SOFTWAREFLOWCONTROL_PROPERTY
The software flow control. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_SOFTWAREFLOWCONTROL_DEFAULT, Constant Field Values

SERIAL_READTOTALTIMEOUT_DEFAULT

static final long SERIAL_READTOTALTIMEOUT_DEFAULT
The read total timeout in milliseconds.

Since:
1.2
See Also:
SERIAL_READTOTALTIMEOUT_PROPERTY, Constant Field Values

SERIAL_READTOTALTIMEOUT_PROPERTY

static final java.lang.String SERIAL_READTOTALTIMEOUT_PROPERTY
The read total timeout in milliseconds. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_READTOTALTIMEOUT_DEFAULT, Constant Field Values

SERIAL_READINTERVALTIMEOUT_DEFAULT

static final long SERIAL_READINTERVALTIMEOUT_DEFAULT
The read interval timeout in milliseconds.

Since:
1.2
See Also:
SERIAL_READINTERVALTIMEOUT_PROPERTY, Constant Field Values

SERIAL_READINTERVALTIMEOUT_PROPERTY

static final java.lang.String SERIAL_READINTERVALTIMEOUT_PROPERTY
The read interval timeout in milliseconds. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_READINTERVALTIMEOUT_DEFAULT, Constant Field Values

SERIAL_WRITETOTALTIMEOUT_DEFAULT

static final long SERIAL_WRITETOTALTIMEOUT_DEFAULT
The write total timeout in milliseconds.

Since:
1.2
See Also:
SERIAL_WRITETOTALTIMEOUT_PROPERTY, Constant Field Values

SERIAL_WRITETOTALTIMEOUT_PROPERTY

static final java.lang.String SERIAL_WRITETOTALTIMEOUT_PROPERTY
The write total timeout in milliseconds. The key in the esc.property file must match this field.

Since:
1.2
See Also:
SERIAL_WRITETOTALTIMEOUT_DEFAULT, Constant Field Values

TCPIP_LOCALHOST_DEFAULT

static final java.lang.String TCPIP_LOCALHOST_DEFAULT
The local host name or address.

Since:
1.2
See Also:
TCPIP_LOCALHOST_PROPERTY, Constant Field Values

TCPIP_LOCALHOST_PROPERTY

static final java.lang.String TCPIP_LOCALHOST_PROPERTY
The local host name or address. The key in the esc.property file must match this field.

Since:
1.2
See Also:
TCPIP_LOCALHOST_DEFAULT, Constant Field Values

TCPIP_LOCALPORT_DEFAULT

static final int TCPIP_LOCALPORT_DEFAULT
The local port number.

Since:
1.2
See Also:
TCPIP_LOCALPORT_PROPERTY, Constant Field Values

TCPIP_LOCALPORT_PROPERTY

static final java.lang.String TCPIP_LOCALPORT_PROPERTY
The local port number. The key in the esc.property file must match this field.

Since:
1.2
See Also:
TCPIP_LOCALPORT_DEFAULT, Constant Field Values

TCPIP_REMOTEHOST_DEFAULT

static final java.lang.String TCPIP_REMOTEHOST_DEFAULT
The remote host name or address.

Since:
1.2
See Also:
TCPIP_REMOTEHOST_PROPERTY, Constant Field Values

TCPIP_REMOTEHOST_PROPERTY

static final java.lang.String TCPIP_REMOTEHOST_PROPERTY
The remote host name or address. The key in the esc.property file must match this field.

Since:
1.2
See Also:
TCPIP_REMOTEHOST_DEFAULT, Constant Field Values

TCPIP_REMOTEPORT_DEFAULT

static final int TCPIP_REMOTEPORT_DEFAULT
The remote port number on the host.

Since:
1.2
See Also:
TCPIP_REMOTEPORT_PROPERTY, Constant Field Values

TCPIP_REMOTEPORT_PROPERTY

static final java.lang.String TCPIP_REMOTEPORT_PROPERTY
The remote port number on the host. The key in the esc.property file must match this field.

Since:
1.2
See Also:
TCPIP_REMOTEPORT_DEFAULT, Constant Field Values

TCPIP_READTIMEOUT_DEFAULT

static final int TCPIP_READTIMEOUT_DEFAULT
The read timeout value in milliseconds.

Since:
1.2
See Also:
TCPIP_READTIMEOUT_PROPERTY, Constant Field Values

TCPIP_READTIMEOUT_PROPERTY

static final java.lang.String TCPIP_READTIMEOUT_PROPERTY
The read timeout value in milliseconds. The key in the esc.property file must match this field.

Since:
1.2
See Also:
TCPIP_READTIMEOUT_DEFAULT, Constant Field Values

TCPIP_READSIZE_DEFAULT

static final int TCPIP_READSIZE_DEFAULT
The read size value in bytes.

Since:
1.2
See Also:
TCPIP_READSIZE_PROPERTY, Constant Field Values

TCPIP_READSIZE_PROPERTY

static final java.lang.String TCPIP_READSIZE_PROPERTY
The read size value in bytes. The key in the esc.property file must match this field.

Since:
1.2
See Also:
TCPIP_READSIZE_DEFAULT, Constant Field Values

TCPIP_WRITESIZE_DEFAULT

static final int TCPIP_WRITESIZE_DEFAULT
The write size value in bytes.

Since:
1.2
See Also:
TCPIP_WRITESIZE_PROPERTY, Constant Field Values

TCPIP_WRITESIZE_PROPERTY

static final java.lang.String TCPIP_WRITESIZE_PROPERTY
The write size value in bytes. The key in the esc.property file must match this field.

Since:
1.2
See Also:
TCPIP_WRITESIZE_DEFAULT, Constant Field Values

TCPIP_LINGER_DEFAULT

static final int TCPIP_LINGER_DEFAULT
The linger value.

Since:
1.2
See Also:
TCPIP_LINGER_PROPERTY, Constant Field Values

TCPIP_LINGER_PROPERTY

static final java.lang.String TCPIP_LINGER_PROPERTY
The linger value. The key in the esc.property file must match this field.

Since:
1.2
See Also:
TCPIP_LINGER_DEFAULT, Constant Field Values

TCPIP_HOST_DEFAULT

static final java.lang.String TCPIP_HOST_DEFAULT
The remote host name or address. use remotehost

Since:
1.2
See Also:
#TCPIP_HOST_PROPERTY, Constant Field Values

2009-06-02 1.2.0

Copyright (c) 2009 IBM. See license in Legal section.