Skip to content

Commit

Permalink
feat: register rest-client interceptor for reflection (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejpetras authored Jun 6, 2024
1 parent 907e2db commit 3a9ab13
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules/tkit-quarkus/pages/includes/attributes.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:project-version: 2.22.0
:project-version: 2.23.0
:quarkus-version: 3.9.3

:examples-dir: ./../examples/
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@
import org.slf4j.LoggerFactory;
import org.tkit.quarkus.context.ApplicationContext;

import io.quarkus.runtime.annotations.RegisterForReflection;

/**
* The rest client log interceptor
*
*/
@Provider
@RegisterForReflection
public class RestClientLogInterceptor implements ClientRequestFilter, ClientResponseFilter {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import io.quarkus.runtime.annotations.RegisterForReflection;

@Provider
@RegisterForReflection
public class RestClientPayloadInterceptor implements ClientRequestFilter {

/**
Expand Down

0 comments on commit 3a9ab13

Please sign in to comment.