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.preauthentication   
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 BuildReply
           
 class ChangePasswordChain
          Kerberos Change Password and Set Password Protocols (RFC 3244)
 class ChangePasswordExceptionHandler
          A Command for helping convert a ChangePasswordException into an ErrorMessage to be returned to clients.
 class CheckPasswordPolicy
          A basic password policy check using well-established methods.
 class ConfigureChangePasswordChain
           
 class ExtractPassword
           
 class GetAuthHeader
           
 class GetServerEntry
           
 class MonitorContext
           
 class MonitorReply
           
 class MonitorRequest
           
 class ProcessPasswordChange
           
 class VerifyServiceTicket
           
 class VerifyServiceTicketAuthHeader
           
 

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

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

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

Classes in org.apache.directory.server.kerberos.kdc that implement Command
 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
           
 class AuthenticationServiceChain
           
 class ConfigureAuthenticationChain
           
 class GenerateTicket
           
 class GetClientEntry
           
 class GetSessionKey
           
 class SealReply
           
 class VerifyPolicy
           
 

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

Classes in org.apache.directory.server.kerberos.kdc.preauthentication that implement Command
 class PreAuthenticationChain
           
 class VerifierBase
           
 class VerifyEncryptedTimestamp
           
 class VerifySam
           
 

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

Classes in org.apache.directory.server.kerberos.kdc.ticketgrant that implement Command
 class ConfigureTicketGrantingChain
           
 class GetRequestPrincipalEntry
           
 class GetTicketPrincipalEntry
           
 class TicketGrantingExceptionHandler
           
 class TicketGrantingServiceChain
          KRB_TGS_REQ verification and KRB_TGS_REP generation
 class VerifyBodyChecksum
           
 class VerifyTgt
           
 class VerifyTgtAuthHeader
           
 

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

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

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.