com.sodius.mdw.core.eval.launch
Interface LaunchModelArgument


public interface LaunchModelArgument

A launch argument matching a ModelParameter of a text template or a rule set.

This interface is not intended to be implemented by clients.

See Also:
LaunchEntryPoint.getArguments()

Method Summary
 String getConnectorName()
          Returns the name of the model connector used to read/write a model.
 String getURI()
          Returns the uri used to locate a model resource to read/write.
 void setConnectorName(String name)
          Sets the name of the model connector used to read/write a model.
 void setURI(String uri)
          Sets the uri used to locate a model resource to read/write.
 

Method Detail

getConnectorName

String getConnectorName()
Returns the name of the model connector used to read/write a model.

Returns:
the connector name.
See Also:
ConnectorDescriptor.getName()

setConnectorName

void setConnectorName(String name)
Sets the name of the model connector used to read/write a model.

Parameters:
name - the connector name.
See Also:
ConnectorDescriptor.getName()

getURI

String getURI()
Returns the uri used to locate a model resource to read/write.

Returns:
the uri used to locate a model resource to read/write, null if no uri used.
See Also:
ModelReader.read(String, Model, ConnectorContext), ModelWriter.write(String, Model, ConnectorContext)

setURI

void setURI(String uri)
Sets the uri used to locate a model resource to read/write.

Parameters:
uri - the uri used to locate a model resource to read/write, null if no uri to be used.
See Also:
ModelReader.read(String, Model, ConnectorContext), ModelWriter.write(String, Model, ConnectorContext)