Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f17ef61fd433e6881c006d2a514b541276129a51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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