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

import org.eclipse.ecf.core.ContainerCreateException;
import org.eclipse.ecf.core.ContainerTypeDescription;
import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.core.provider.BaseRemoteServiceContainerInstantiator;

public class PahoClientContainerInstantiator extends
		BaseRemoteServiceContainerInstantiator {

	public IContainer createInstance(ContainerTypeDescription description, Object[] parameters) throws ContainerCreateException {
		// XXX todo
		return null;
	}

}

Back to the top