com.ail.core.configure.server
Interface GetNamespacesArg

All Superinterfaces:
CommandArg, java.io.Serializable
All Known Implementing Classes:
GetNamespacesArgImp, GetNamespacesCommand

public interface GetNamespacesArg
extends CommandArg

Arg interface for the GetConfiguration entry point. The entry point takes one argument: a namespace's name, and returns one result: the Configuration object for the namespace.

Version:
$Revision: 1.4 $

Method Summary
 java.util.Collection<java.lang.String> getNamespaces()
          Get the namespace collection.
 void setNamespaces(java.util.Collection<java.lang.String> namespaces)
          Set the namespaces collection attribute.
 
Methods inherited from interface com.ail.core.command.CommandArg
getCallersCore, setCallersCore
 

Method Detail

setNamespaces

void setNamespaces(java.util.Collection<java.lang.String> namespaces)
Set the namespaces collection attribute. This collections contains Strings, each representing a namespace.

Parameters:
namespace - The collection of Strings

getNamespaces

java.util.Collection<java.lang.String> getNamespaces()
Get the namespace collection.

Returns:
The collection of instances of ConfigurationSummary
See Also:
setNamespaces(java.util.Collection)