Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0d761802478850ab0d9e6ffdf04eb5a61e87b3aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.eclipse.ecf.provider.internal.net4j.container;

import org.eclipse.net4j.internal.util.factory.Factory;

/**
 * @author Eike Stepper
 */
public abstract class ServerSOContainerFactory extends Factory
{
  public static final String PRODUCT_GROUP = "org.eclipse.ecf.serverSOContainers";

  public ServerSOContainerFactory(String type)
  {
    super(PRODUCT_GROUP, type);
  }
}

Back to the top