Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4fb3ef4ea3d01293264da887eca3ec9b6e27a8ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.eclipse.emf.cdo.internal.server.protocol;

import org.eclipse.emf.cdo.protocol.CDOProtocolConstants;

import org.eclipse.internal.net4j.ServerProtocolFactory;

/**
 * @author Eike Stepper
 */
public final class CDOServerProtocolFactory extends ServerProtocolFactory
{

  public CDOServerProtocolFactory()
  {
    super(CDOProtocolConstants.PROTOCOL_NAME);
  }

  public Object create(String description)
  {
    return new CDOServerProtocol();
  }
}

Back to the top