Browse Source

Remove non-existent class from RSocket reference docs

Closes gh-9949
pull/9990/head
Eleftheria Stein 5 years ago
parent
commit
ebef8c1425
  1. 5
      docs/manual/src/docs/asciidoc/_includes/reactive/rsocket.adoc

5
docs/manual/src/docs/asciidoc/_includes/reactive/rsocket.adoc

@ -43,9 +43,8 @@ In a Spring Boot application this is done automatically using `RSocketSecurityAu @@ -43,9 +43,8 @@ In a Spring Boot application this is done automatically using `RSocketSecurityAu
[source,java]
----
@Bean
ServerRSocketFactoryProcessor springSecurityRSocketSecurity(
SecuritySocketAcceptorInterceptor interceptor) {
return builder -> builder.addSocketAcceptorPlugin(interceptor);
RSocketServerCustomizer springSecurityRSocketSecurity(SecuritySocketAcceptorInterceptor interceptor) {
return (server) -> server.interceptors((registry) -> registry.forSocketAcceptor(interceptor));
}
----

Loading…
Cancel
Save