| java.lang.Object de.danet.an.workflow.util.DefaultExternalReference
DefaultExternalReference | public class DefaultExternalReference implements ExternalReference,Serializable(Code) | | This class provides an ExternalReference with additional support
for handling Java types.
author: Michael Lipp |
Method Summary | |
public URI | location() Returns the location information of the external document. | public String | namespace() Returns the scope in which the entity is defined or
null if no such information is supplied. | public String | xref() Returns the identity of the entity within the external document
or null if no such information is supplied. |
DefaultExternalReference | public DefaultExternalReference(URI location, String xref, String namespace)(Code) | | Creates an instance of ExtExternalReference
with all attributes initialized to the given values.
Parameters: location - the location information of the external document Parameters: xref - the identity of the entity within the externaldocument (may be null ) Parameters: namespace - the scope in which the entity is defined (maybe null ) |
location | public URI location()(Code) | | Returns the location information of the external document.
location information |
namespace | public String namespace()(Code) | | Returns the scope in which the entity is defined or
null if no such information is supplied.
namespace information |
xref | public String xref()(Code) | | Returns the identity of the entity within the external document
or null if no such information is supplied.
identity of entity |
|
|