Uses of Interface
org.apache.directory.server.protocol.shared.chain.Command

Packages that use Command
org.apache.directory.server.changepw.service   
org.apache.directory.server.dns.service   
org.apache.directory.server.kerberos.kdc   
org.apache.directory.server.kerberos.kdc.authentication   
org.apache.directory.server.kerberos.kdc.ticketgrant   
org.apache.directory.server.kerberos.shared.service   
org.apache.directory.server.protocol.shared.chain   
org.apache.directory.server.protocol.shared.chain.impl   
 

Uses of Command in org.apache.directory.server.changepw.service
 

Classes in org.apache.directory.server.changepw.service that implement Command
 class ChangePasswordExceptionHandler
          A Command for helping convert a ChangePasswordException into an ErrorMessage to be returned to clients.
 

Uses of Command in org.apache.directory.server.dns.service
 

Classes in org.apache.directory.server.dns.service that implement Command
 class BuildReply
           
 class DnsExceptionHandler
           
 class DomainNameServiceChain
          Domain Name Service (DNS) Protocol (RFC 1034, 1035)
 class GetResourceRecords
           
 class MonitorMessage
           
 class MonitorReply
           
 class MonitorRequest
           
 

Uses of Command in org.apache.directory.server.kerberos.kdc
 

Classes in org.apache.directory.server.kerberos.kdc that implement Command
 class MonitorContext
           
 class SelectChecksumType
           
 class SelectEncryptionType
           
 

Uses of Command in org.apache.directory.server.kerberos.kdc.authentication
 

Classes in org.apache.directory.server.kerberos.kdc.authentication that implement Command
 class AuthenticationExceptionHandler
           
 

Uses of Command in org.apache.directory.server.kerberos.kdc.ticketgrant
 

Classes in org.apache.directory.server.kerberos.kdc.ticketgrant that implement Command
 class TicketGrantingExceptionHandler
           
 

Uses of Command in org.apache.directory.server.kerberos.shared.service
 

Classes in org.apache.directory.server.kerberos.shared.service that implement Command
 class ErrorMessageHandler
          A Command for helping convert a KerberosException into an ErrorMessage to be returned to clients.
 

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.
 



Copyright © 2003-2010 Apache Software Foundation. All Rights Reserved.