nyla.solutions.global.patterns.command.commas.CatalogCommas Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.global Show documentation
Show all versions of nyla.solutions.global Show documentation
Nyla Solutions Global Java API provides support for basic application
utilities (application configuration, data encryption, debugger and text
processing).
The newest version!
package nyla.solutions.global.patterns.command.commas;
import java.util.Collection;
/**
* Use CommasServiceFactory
* @author Gregory Green
*
*/
public class CatalogCommas implements Catalog
{
/**
* @see nyla.solutions.global.patterns.command.commas.Catalog#getCommas(java.lang.String)
*/
public CommasInfo getCommasInfo(String commasName)
{
return CommasServiceFactory.getCommasServiceFactory().getCommasInfo(commasName);
}
/**
* Default commas INFO
* @see nyla.solutions.global.patterns.command.commas.Catalog#getCommas(java.lang.String)
*/
public CommasInfo getCommasInfo()
{
return CommasServiceFactory.getCommasServiceFactory().getCommasInfo();
}// --------------------------------------------------------
/**
* @see nyla.solutions.global.patterns.command.commas.Catalog#getCommasInfos(java.lang.String)
*/
public Collection getCommasInfos(String commasName)
{
return CommasServiceFactory.getCommasServiceFactory().getCommasInfos();
}
/**
* @see nyla.solutions.global.patterns.command.commas.Catalog#getCommandFacts(java.lang.String)
*/
public CommandFacts getCommandFacts(String commandName)
{
return CommasServiceFactory.getCommasServiceFactory().getCommandFacts(commandName);
}
/**
* @see nyla.solutions.global.patterns.command.commas.Catalog#getCommandFacts(java.lang.String, java.lang.String)
*/
public CommandFacts getCommandFacts(String commasName, String commandName)
{
return CommasServiceFactory.getCommasServiceFactory().getCommandFacts(commasName, commandName);
}
}