com.ail.core.configure.server
Interface GetNamespacesHistoryArg

All Superinterfaces:
CommandArg, java.io.Serializable
All Known Implementing Classes:
GetNamespacesHistoryArgImp, GetNamespacesHistoryCommand

public interface GetNamespacesHistoryArg
extends CommandArg

Arg interface for the GetNamesapcesHisotyr entry point. The entry point takes one argument: a namespace's name, and returns one result: a collection of ConfigurationSummary objects representing the namespace's history.

Version:
$Revision: 1.1 $

Method Summary
 java.lang.String getNamespaceArg()
           
 java.util.Collection<ConfigurationSummary> getNamespacesRet()
          Get the namespace collection.
 void setNamespaceArg(java.lang.String namespace)
          The namespace arg tells the command which namespace to return the history for.
 void setNamespacesRet(java.util.Collection<ConfigurationSummary> namespaces)
          Set the namespaces collection attribute.
 
Methods inherited from interface com.ail.core.command.CommandArg
getCallersCore, setCallersCore
 

Method Detail

setNamespacesRet

void setNamespacesRet(java.util.Collection<ConfigurationSummary> namespaces)
Set the namespaces collection attribute. This collections contains ConfigurationSummary, each representing a point in the namespace's history.

Parameters:
namespace - The collection of ConfigurationSummary.

getNamespacesRet

java.util.Collection<ConfigurationSummary> getNamespacesRet()
Get the namespace collection.

Returns:
The collection of instances of ConfigurationSummary
See Also:
#setNamespaces

setNamespaceArg

void setNamespaceArg(java.lang.String namespace)
The namespace arg tells the command which namespace to return the history for.

Parameters:
namespace - The namespace to return the history for.

getNamespaceArg

java.lang.String getNamespaceArg()
Returns:
The namespace to return the history for.
See Also:
setNamespaceArg(String)