Class RestNamespace
java.lang.Object
org.eclipse.ecf.core.identity.Namespace
org.eclipse.ecf.remoteservice.rest.identity.RestNamespace
- All Implemented Interfaces:
Serializable
,org.eclipse.core.runtime.IAdaptable
This class represents a
Namespace
for RestClientContainer
s.- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic Namespace
static final String
The name of this namespace.static final String
The scheme of this namespace.Fields inherited from class org.eclipse.ecf.core.identity.Namespace
SCHEME_SEPARATOR
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateInstance
(Object[] parameters) Creates an instance of anRestID
.Get the primary scheme associated with this namespace.Class[][]
Get the supported parameter types for IDs created via subsequent calls toNamespace.createInstance(Object[])
.Methods inherited from class org.eclipse.ecf.core.identity.Namespace
equals, getAdapter, getCompareToForObject, getDescription, getHashCodeForID, getInitStringFromExternalForm, getName, getNameForID, getSupportedSchemes, hashCode, initialize, testIDEquals, toExternalForm, toString
-
Field Details
-
INSTANCE
- Since:
- 2.7
-
NAME
The name of this namespace.- See Also:
-
SCHEME
The scheme of this namespace.- See Also:
-
-
Constructor Details
-
RestNamespace
public RestNamespace() -
RestNamespace
-
-
Method Details
-
createInstance
Creates an instance of anRestID
. The parameters must contain specific information.- Specified by:
createInstance
in classNamespace
- Parameters:
parameters
- a collection of attributes to call the right constructor onRestID
.- Returns:
- an instance of
RestID
. Will not benull
. - Throws:
IDCreateException
- if construction fails
-
getScheme
Description copied from class:Namespace
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 (\":\"). -
getSupportedParameterTypes
Description copied from class:Namespace
Get the supported parameter types for IDs created via subsequent calls toNamespace.createInstance(Object[])
. Callers may use this method to determine the available parameter types, and then create and pass in conforming Object arrays to toNamespace.createInstance(Object[])
.Namespace.createInstance(Object[])
will be ignored.Namespace.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 intoNamespace.createInstance(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"}};
- Overrides:
getSupportedParameterTypes
in classNamespace
- Returns:
- Class [][] an array of class []s. Rows of the returned
two-dimensional array define the acceptable parameter types for a
single call to
Namespace.createInstance(Object[])
. If zero-length Class arrays are returned (i.e. Class[0][0]), then Object [] parameters toNamespace.createInstance(Object[])
will be ignored.
-