Skip to content

Commit

Permalink
Dropped support of old-qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-v committed Dec 4, 2024
1 parent 800e00d commit bee031e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ public interface SecuredService {
@RequestType(String.class)
Mono<String> createSession(ServiceMessage request);

@Secured
@ServiceMethod
@RequestType(String.class)
@Secured
Mono<String> requestOne(String req);

@Secured
@ServiceMethod
@RequestType(Integer.class)
@Secured
Flux<String> requestN(Integer req);
}
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ void securedMethodAuthenticatedReqStream() {

private static ServiceMessage createSessionRequest(String username) {
return ServiceMessage.builder()
.qualifier("/" + SecuredService.NAMESPACE + "/createSession")
.qualifier(SecuredService.NAMESPACE + "/createSession")
.data(username)
.build();
}
Expand Down

0 comments on commit bee031e

Please sign in to comment.