Package org.eclipse.ecf.core.identity
Class Namespace
java.lang.Object
org.eclipse.ecf.core.identity.Namespace
- All Implemented Interfaces:
Serializable
,org.eclipse.core.runtime.IAdaptable
- Direct Known Subclasses:
DnsSdNamespace
,FileTransferNamespace
,GUID.GUIDNamespace
,JSLPNamespace
,LongID.LongNamespace
,R_OSGiNamespace
,R_OSGiRemoteServiceNamespace
,RemoteServiceNamespace
,RemoteServiceNamespace
,RestNamespace
,StringID.StringIDNamespace
,URIID.URIIDNamespace
,UuID.UuIDNamespace
public abstract class Namespace
extends Object
implements Serializable, org.eclipse.core.runtime.IAdaptable
Namespace base class.
This class and subclasses define a namespace for the creation and management
of ID instances. Creation of ID instances is accomplished via the
createInstance(Object[])
method, implemented by subclasses of this
Namespace superclass.
All Namespace instances must have a unique name passed to the Namespace upon construction.
Typically Namespace instances are created via plugins that define extensions of the org.eclipse.ecf.namespace extension point. For example, to define a new Namespace subclass XMPPNamespace with name "ecf.xmpp" and add it to the ECF extension registry:
<extension point="org.eclipse.ecf.namespace"> <namespace class="XMPPNamespace" name="ecf.xmpp"/> </extension>
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract ID
createInstance
(Object[] parameters) Make an instance of this namespace.boolean
Override of Object.equals.getAdapter
(Class adapter) protected int
getCompareToForObject
(BaseID first, BaseID second) The default implementation of this method is to call first.namespaceCompareTo(second).Get the description, associated with this Namespace.protected int
The default implementation of this method is to call id.namespaceHashCode().protected String
getInitStringFromExternalForm
(Object[] args) getName()
Get the name of this namespace.protected String
getNameForID
(BaseID id) The default implementation of this method is to call id.namespaceGetName().abstract String
Get the primary scheme associated with this namespace.Class<?>[][]
Get the supported parameter types for IDs created via subsequent calls tocreateInstance(Object[])
.String[]
Get an array of schemes supported by this Namespace instance.int
hashCode()
Hashcode implementation.final boolean
initialize
(String n, String desc) protected boolean
testIDEquals
(BaseID first, BaseID second) Test whether two IDs are equal to one another.protected String
toExternalForm
(BaseID id) The default implementation of this method is to call id.namespaceToExternalForm().toString()
-
Field Details
-
SCHEME_SEPARATOR
- See Also:
-
-
Constructor Details
-
Namespace
public Namespace() -
Namespace
-
-
Method Details
-
initialize
-
equals
Override of Object.equals. This equals method returns true if the provided Object is also a Namespace instance, and the names of the two instances match. -
hashCode
public int hashCode()Hashcode implementation. Subclasses should not override. -
testIDEquals
Test whether two IDs are equal to one another.- Parameters:
first
- the first ID. Must not benull
.second
- the second ID. Must not benull
.- Returns:
true
if this ID is equal to the given ID.false
otherwise.
-
getNameForID
The default implementation of this method is to call id.namespaceGetName(). Subclasses may override.- Parameters:
id
- the ID to get the name for. Must not benull
.- Returns:
- String that is the unique name for the given id within this Namespace.
-
getCompareToForObject
The default implementation of this method is to call first.namespaceCompareTo(second). Subclasses may override.- Parameters:
first
- the first id to compare. Must not benull
.second
- the second id to compare. Must not benull
.- Returns:
- int as specified by
Comparable
.
-
getHashCodeForID
The default implementation of this method is to call id.namespaceHashCode(). Subclasses may override.- Parameters:
id
- the id in this Namespace to get the hashcode for. Must not benull
.- Returns:
- the hashcode for the given id. Returned value must be unique within this process.
-
toExternalForm
The default implementation of this method is to call id.namespaceToExternalForm(). Subclasses may override.- Parameters:
id
- the id in this Namespace to convert to external form.- Returns:
- String that represents the given id in an external form. Note that
this external form may at some later time be passed to
createInstance(Object[])
as a single String parameter, and should result in a valid ID instance of the appropriate Namespace.
-
getName
Get the name of this namespace. Must not returnnull
.- Returns:
- String name of Namespace instance. Must not return
null
, and the returned value should be a globally unique name for this Namespace subclass.
-
getDescription
Get the description, associated with this Namespace. The returned value may benull
.- Returns:
- the description associated with this Namespace. May be
null
.
-
createInstance
Make an instance of this namespace. Namespace subclasses, provided by plugins must implement this method to construct ID instances for the given namespace.getSupportedParameterTypes()
to get information relevant to deciding what parameter types are expected by this method.- Parameters:
parameters
- an Object[] of parameters for creating ID instances. May be null.- Returns:
- a non-null ID instance. The class used may extend BaseID or may implement the ID interface directly
- Throws:
IDCreateException
- if construction fails
-
getScheme
Get the primary scheme associated with this namespace. Subclasses must provide an implementation that returns a non-null
scheme identifier. Note that the returned scheme should not contain the Namespace.SCHEME_SEPARATOR (\":\").- Returns:
- a String scheme identifier. Must not be
null
.
-
getSupportedSchemes
Get an array of schemes supported by this Namespace instance. Subclasses may override to support multiple schemes.- Returns:
- String[] of schemes supported by this Namespace. Will not be
null
, but returned array may be of length 0.
-
getSupportedParameterTypes
Get the supported parameter types for IDs created via subsequent calls tocreateInstance(Object[])
. Callers may use this method to determine the available parameter types, and then create and pass in conforming Object arrays to tocreateInstance(Object[])
.createInstance(Object[])
will be ignored.createInstance(Object[])
. The rows of the returned Class array are the acceptable types for a given invocation of createInstance.public Class[][] getSupportedParameterTypes() { return new Class[][] { { String.class }, { String.class, String.class } }; }
The above means that there are two acceptable values for the Object [] passed intocreateInstance(Object[])
: 1) a single String, and 2) two Strings. These would therefore be acceptable as input to createInstance:ID newID1 = namespace.createInstance(new Object[] { "Hello" }); ID newID2 = namespace.createInstance(new Object[] { "Hello", "There"}};
- Returns:
- Class [][] an array of class []s. Rows of the returned
two-dimensional array define the acceptable parameter types for a
single call to
createInstance(Object[])
. If zero-length Class arrays are returned (i.e. Class[0][0]), then Object [] parameters tocreateInstance(Object[])
will be ignored.
-
getAdapter
- Specified by:
getAdapter
in interfaceorg.eclipse.core.runtime.IAdaptable
-
getInitStringFromExternalForm
- Since:
- 3.1
-
toString
-