| Package | Description |
|---|---|
| org.apache.commons.chain |
The fundamental API contracts for the Chain of Responsibilty Pattern as
implemented in this package.
|
| org.apache.commons.chain.generic |
Concrete implementations of generic Commands that are useful in many
different environments, not tied to a particular tier such as Servlets).
|
| org.apache.commons.chain.impl |
Convenient base implementations of Chain of Responsibility Pattern
contracts from
org.apache.commons.chain. |
| Modifier and Type | Method | Description |
|---|---|---|
static CatalogFactory |
CatalogFactory.getInstance() |
Return the singleton
CatalogFactory instance
for the relevant ClassLoader. |
| Modifier and Type | Field | Description |
|---|---|---|
private CatalogFactory |
LookupCommand.catalogFactory |
| Modifier and Type | Method | Description |
|---|---|---|
CatalogFactory |
LookupCommand.getCatalogFactory() |
Return the
CatalogFactory from which lookups will be performed. |
| Modifier and Type | Method | Description |
|---|---|---|
void |
LookupCommand.setCatalogFactory(CatalogFactory catalogFactory) |
Set the
CatalogFactory from which lookups will be
performed. |
| Constructor | Description |
|---|---|
DispatchLookupCommand(CatalogFactory factory) |
Create an instance and initialize the
catalogFactory property
to given factory. |
LookupCommand(CatalogFactory factory) |
Create an instance and initialize the
catalogFactory property
to given factory/ |
| Modifier and Type | Class | Description |
|---|---|---|
class |
CatalogFactoryBase |
A simple implementation of
CatalogFactory. |