|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Command | |
|---|---|
| org.apache.directory.server.protocol.shared.chain | |
| org.apache.directory.server.protocol.shared.chain.impl | |
| Uses of Command in org.apache.directory.server.protocol.shared.chain |
|---|
| Subinterfaces of Command in org.apache.directory.server.protocol.shared.chain | |
|---|---|
interface |
Chain
A Chain represents a configured list of
Commands that will be executed in order to perform processing
on a specified Context. |
interface |
Filter
A Filter is a specialized Command that also expects
the Chain that is executing it to call the
postprocess() method if it called the execute()
method. |
| Methods in org.apache.directory.server.protocol.shared.chain with parameters of type Command | |
|---|---|
void |
Chain.addCommand(Command command)
Add a Command to the list of Commands that will
be called in turn when this Chain's execute()
method is called. |
| Uses of Command in org.apache.directory.server.protocol.shared.chain.impl |
|---|
| Classes in org.apache.directory.server.protocol.shared.chain.impl that implement Command | |
|---|---|
class |
ChainBase
Convenience base class for Chain implementations. |
class |
CommandBase
Convenience base class for Command implementations. |
| Fields in org.apache.directory.server.protocol.shared.chain.impl declared as Command | |
|---|---|
protected Command[] |
ChainBase.commands
The list of Commands configured for this Chain, in
the order in which they may delegate processing to the remainder of
the Chain. |
| Methods in org.apache.directory.server.protocol.shared.chain.impl with parameters of type Command | |
|---|---|
void |
ChainBase.addCommand(Command command)
|
| Constructors in org.apache.directory.server.protocol.shared.chain.impl with parameters of type Command | |
|---|---|
ChainBase(Command command)
Construct a Chain configured with the specified
Command. |
|
ChainBase(Command[] commands)
Construct a Chain configured with the specified
Commands. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||