Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1ba5a5bbf9ef74d5591dde20382469d2ed1d3954 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package org.eclipse.ecf.provider.mqtt.paho.identity;

import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.identity.IDCreateException;
import org.eclipse.ecf.core.identity.Namespace;

public class PahoNamespace extends Namespace {

	public static final String NAME = "org.eclipse.provider.paho.namespace";
	public static final String SCHEME = "paho";
	
	static Namespace INSTANCE;
	
	private static final long serialVersionUID = -1856480656826761786L;

	public PahoNamespace() {
		INSTANCE = this;
	}

	public PahoNamespace(String name, String desc) {
		super(name, desc);
		INSTANCE = this;
	}

	@Override
	public ID createInstance(Object[] parameters) throws IDCreateException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public String getScheme() {
		return SCHEME;
	}

}

Back to the top