This extension point allows ECF generic server instances to be configured via extension point definition. A connector defines the port and other information for an ECF generic server to receive connection requests from clients. Defines the hostname expected in the server ID...e.g. "localhost". If not specified, default is "localhost". The port (e.g. 3282) for the connector to listen on. If not specified, is set to 3282. The timeout associated with the ECF generic server failure detector (in ms). If not specified, defaults to 30000 (30 seconds). A specific named group for the parent connector. e.g. 'server' in ecftcp://localhost:3282/server The name for the group in the ID: e.g. 'server' in ecftcp://localhost:3282/server 1.0.0 The following is an example use of the org.eclipse.ecf.server.generic.configration extension point: <pre> <extension point="org.eclipse.ecf.server.generic.configuration"> <connector hostname="localhost" keepAlive="30000" port="3282"> <group name="server"> </group> </connector> </extension> </pre> Produces a server with groupID: ecftcp://localhost:3333/groupName No public programmatic API Copyright (c) 2004 Composent, Inc. and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html. Contributors: Composent, Inc. - initial API and implementation