Uses of Interface
org.apache.sshd.server.forward.ForwardingFilter
-
Packages that use ForwardingFilter Package Description org.apache.sshd.common org.apache.sshd.common.helpers org.apache.sshd.server.config org.apache.sshd.server.forward -
-
Uses of ForwardingFilter in org.apache.sshd.common
Fields in org.apache.sshd.common declared as ForwardingFilter Modifier and Type Field Description static ForwardingFilter
BaseBuilder. DEFAULT_FORWARDING_FILTER
protected ForwardingFilter
BaseBuilder. forwardingFilter
Methods in org.apache.sshd.common that return ForwardingFilter Modifier and Type Method Description ForwardingFilter
FactoryManager. getForwardingFilter()
Retrieve theForwardingFilter
to be used by the SSH server.Methods in org.apache.sshd.common with parameters of type ForwardingFilter Modifier and Type Method Description S
BaseBuilder. forwardingFilter(ForwardingFilter filter)
-
Uses of ForwardingFilter in org.apache.sshd.common.helpers
Fields in org.apache.sshd.common.helpers declared as ForwardingFilter Modifier and Type Field Description protected ForwardingFilter
AbstractFactoryManager. forwardingFilter
Methods in org.apache.sshd.common.helpers that return ForwardingFilter Modifier and Type Method Description ForwardingFilter
AbstractFactoryManager. getForwardingFilter()
Methods in org.apache.sshd.common.helpers with parameters of type ForwardingFilter Modifier and Type Method Description void
AbstractFactoryManager. setForwardingFilter(ForwardingFilter forwardingFilter)
-
Uses of ForwardingFilter in org.apache.sshd.server.config
Methods in org.apache.sshd.server.config that return ForwardingFilter Modifier and Type Method Description static ForwardingFilter
SshServerConfigFileReader. resolveServerForwarding(PropertyResolver options)
-
Uses of ForwardingFilter in org.apache.sshd.server.forward
Classes in org.apache.sshd.server.forward that implement ForwardingFilter 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.Methods in org.apache.sshd.server.forward that return ForwardingFilter 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
-