Class SecuritySocketAcceptorInterceptor

  • All Implemented Interfaces:
    io.rsocket.plugins.SocketAcceptorInterceptor, java.util.function.Function<io.rsocket.SocketAcceptor,​io.rsocket.SocketAcceptor>

    public class SecuritySocketAcceptorInterceptor
    extends java.lang.Object
    implements io.rsocket.plugins.SocketAcceptorInterceptor
    A SocketAcceptorInterceptor that applies Security through a delegate SocketAcceptorInterceptor. This allows security to be applied lazily to an application.
    Since:
    5.2
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      io.rsocket.SocketAcceptor apply​(io.rsocket.SocketAcceptor socketAcceptor)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Function

        andThen, compose
    • Constructor Detail

      • SecuritySocketAcceptorInterceptor

        public SecuritySocketAcceptorInterceptor​(io.rsocket.plugins.SocketAcceptorInterceptor acceptorInterceptor)
    • Method Detail

      • apply

        public io.rsocket.SocketAcceptor apply​(io.rsocket.SocketAcceptor socketAcceptor)
        Specified by:
        apply in interface java.util.function.Function<io.rsocket.SocketAcceptor,​io.rsocket.SocketAcceptor>