public class Connector extends Object implements com.sun.star.connection.XConnector
XConnector interface.
The Connector is a general component, that uses less general
components (like com.sun.star.connection.socketConnector) to
implement its functionality.
XAcceptor,
XConnection,
XConnector,
JavaLoader| Modifier and Type | Field and Description |
|---|---|
static String |
__serviceName
The name of the service.
|
| Constructor and Description |
|---|
Connector(com.sun.star.lang.XMultiServiceFactory serviceFactory)
Constructs a new
Connector that uses the given service
factory to create a specific XConnector. |
| Modifier and Type | Method and Description |
|---|---|
static com.sun.star.lang.XSingleServiceFactory |
__getServiceFactory(String implName,
com.sun.star.lang.XMultiServiceFactory multiFactory,
com.sun.star.registry.XRegistryKey regKey)
Returns a factory for creating the service.
|
com.sun.star.connection.XConnection |
connect(String connectionDescription)
Connects via the given connection type to a waiting server.
|
public static final String __serviceName
The JavaLoader accesses this through reflection.
JavaLoader,
Constant Field Valuespublic Connector(com.sun.star.lang.XMultiServiceFactory serviceFactory)
Connector that uses the given service
factory to create a specific XConnector.serviceFactory - the service factory to use.public static com.sun.star.lang.XSingleServiceFactory __getServiceFactory(String implName, com.sun.star.lang.XMultiServiceFactory multiFactory, com.sun.star.registry.XRegistryKey regKey)
This method is called by the JavaLoader.
implName - the name of the implementation for which a service is
requested.multiFactory - the service manager to be used (if needed).regKey - the registry key.XSingleServiceFactory for creating the component.JavaLoaderpublic com.sun.star.connection.XConnection connect(String connectionDescription) throws com.sun.star.connection.NoConnectException, com.sun.star.connection.ConnectionSetupException
The connection description has the following format:
type*(key=value).
The specific XConnector implementation is instantiated
through the service factory as
com.sun.star.connection.typeConnector (with
type in lower case).
connect in interface com.sun.star.connection.XConnectorconnectionDescription - the description of the connection.XConnection to the server.com.sun.star.connection.NoConnectExceptioncom.sun.star.connection.ConnectionSetupExceptionXAcceptor,
XConnection