com.ail.core.configure.server
Interface GetCommandScriptArg

All Superinterfaces:
CommandArg, java.io.Serializable
All Known Implementing Classes:
GetCommandScriptArgImp, GetCommandScriptCommand

public interface GetCommandScriptArg
extends CommandArg

Version:
$Revision: 1.2 $

Method Summary
 java.lang.String getCommandNameArg()
          Fetch the value of the commandNameArg argument.
 CommandScript getCommandScriptRet()
          Fetch the value of the commandScriptRet argument.
 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 setCommandScriptRet(CommandScript commandScriptRet)
          Set the value of the commandScriptRet argument.
 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()

getCommandScriptRet

CommandScript getCommandScriptRet()
Fetch the value of the commandScriptRet argument. The command script returned.

Returns:
value of commandScriptRet
See Also:
setCommandScriptRet(com.ail.core.CommandScript)

setCommandScriptRet

void setCommandScriptRet(CommandScript commandScriptRet)
Set the value of the commandScriptRet argument. The command script returned.

Parameters:
commandScriptRet - New value for commandScriptRet argument.
See Also:
getCommandScriptRet()