Uses of Interface
org.apache.sshd.server.forward.AgentForwardingFilter
-
Packages that use AgentForwardingFilter Package Description org.apache.sshd.common org.apache.sshd.server.config org.apache.sshd.server.forward -
-
Uses of AgentForwardingFilter in org.apache.sshd.common
Methods in org.apache.sshd.common that return AgentForwardingFilter Modifier and Type Method Description default AgentForwardingFilter
FactoryManager. getAgentForwardingFilter()
-
Uses of AgentForwardingFilter in org.apache.sshd.server.config
Methods in org.apache.sshd.server.config that return AgentForwardingFilter Modifier and Type Method Description static AgentForwardingFilter
SshServerConfigFileReader. resolveAgentForwardingFilter(PropertyResolver options)
-
Uses of AgentForwardingFilter in org.apache.sshd.server.forward
Subinterfaces of AgentForwardingFilter in org.apache.sshd.server.forward Modifier and Type Interface Description interface
ForwardingFilter
Determines if a forwarding request will be permitted.Classes in org.apache.sshd.server.forward that implement AgentForwardingFilter Modifier and Type Class Description class
AcceptAllForwardingFilter
AForwardingFilter
that accepts all requestsclass
RejectAllForwardingFilter
AForwardingFilter
that rejects all requestsclass
StaticDecisionForwardingFilter
AForwardingFilter
implementation that returns the same "static" result for all the queries.Fields in org.apache.sshd.server.forward declared as AgentForwardingFilter Modifier and Type Field Description static AgentForwardingFilter
AgentForwardingFilter. DEFAULT
Methods in org.apache.sshd.server.forward that return AgentForwardingFilter Modifier and Type Method Description static AgentForwardingFilter
AgentForwardingFilter. of(boolean enabled)
Methods in org.apache.sshd.server.forward with parameters of type AgentForwardingFilter Modifier and Type Method Description static ForwardingFilter
ForwardingFilter. asForwardingFilter(AgentForwardingFilter agentFilter, X11ForwardingFilter x11Filter, TcpForwardingFilter tcpFilter)
Wraps separate filtering policies into one - anynull
one is assumed to be disabled
-