com.ail.core.configure.server
Interface SetCommandScriptArg

All Superinterfaces:
CommandArg, java.io.Serializable
All Known Implementing Classes:
SetCommandScriptArgImp, SetCommandScriptCommand

public interface SetCommandScriptArg
extends CommandArg

Version:
$Revision: 1.2 $

Method Summary
 java.lang.String getCommandNameArg()
          Fetch the value of the commandNameArg argument.
 CommandScript getCommandScriptArg()
          Fetch the value of the commandScriptArg argument.
 java.lang.String getCommandTypeArg()
          Fetch the value of the commandTypeArg.
 java.lang.String getNamespaceArg()
          Fetch the value of the namespaceArg argument.
 void setCommandNameArg(java.lang.String commandNameArg)
          Set the value of the commandNameArg argument.
 void setCommandScriptArg(CommandScript commandScriptArg)
          Set the value of the commandScriptArg argument.
 void setCommandTypeArg(java.lang.String commandTypeArg)
          Set the value of the commandTypeArg.
 void setNamespaceArg(java.lang.String namespaceArg)
          Set the value of the namespaceArg argument.
 
Methods inherited from interface com.ail.core.command.CommandArg
getCallersCore, setCallersCore
 

Method Detail

getNamespaceArg

java.lang.String getNamespaceArg()
Fetch the value of the namespaceArg argument. The namespace to fetch the command script from.

Returns:
value of namespaceArg
See Also:
setNamespaceArg(java.lang.String)

setNamespaceArg

void setNamespaceArg(java.lang.String namespaceArg)
Set the value of the namespaceArg argument. The namespace to fetch the command script from.

Parameters:
namespaceArg - New value for namespaceArg argument.
See Also:
getNamespaceArg()

getCommandNameArg

java.lang.String getCommandNameArg()
Fetch the value of the commandNameArg argument. The name of the command that which the script should be returned for.

Returns:
value of commandNameArg
See Also:
setCommandNameArg(java.lang.String)

setCommandNameArg

void setCommandNameArg(java.lang.String commandNameArg)
Set the value of the commandNameArg argument. The name of the command that which the script should be returned for.

Parameters:
commandNameArg - New value for commandNameArg argument.
See Also:
getCommandNameArg()

getCommandScriptArg

CommandScript getCommandScriptArg()
Fetch the value of the commandScriptArg argument. The command script to be saved.

Returns:
value of commandScriptArg
See Also:
setCommandScriptArg(com.ail.core.CommandScript)

setCommandScriptArg

void setCommandScriptArg(CommandScript commandScriptArg)
Set the value of the commandScriptArg argument. The command script saved.

Parameters:
commandScriptArg - New value for commandScriptArg argument.
See Also:
getCommandScriptArg()

getCommandTypeArg

java.lang.String getCommandTypeArg()
Fetch the value of the commandTypeArg. This defines the 'type' of script, e.g. BeanShell script, DRools script, etc.

Returns:
The script type.

setCommandTypeArg

void setCommandTypeArg(java.lang.String commandTypeArg)
Set the value of the commandTypeArg.

Parameters:
commandTypeArg -
See Also:
getCommandTypeArg()