Skip to content

Commit

Permalink
Added missing @RegisterForReflection.
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniotarricone committed Jun 13, 2024
1 parent 1755067 commit 47f42f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/it/pagopa/swclient/mil/auth/bean/Role.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import java.util.List;

import io.quarkus.runtime.annotations.RegisterForReflection;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
Expand All @@ -15,6 +16,7 @@
/**
* @author Antonio Tarricone
*/
@RegisterForReflection
@NoArgsConstructor
@AllArgsConstructor
@Data
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/it/pagopa/swclient/mil/auth/bean/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
package it.pagopa.swclient.mil.auth.bean;

import io.quarkus.runtime.annotations.RegisterForReflection;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
Expand All @@ -13,6 +14,7 @@
/**
* @author Antonio Tarricone
*/
@RegisterForReflection
@NoArgsConstructor
@AllArgsConstructor
@Data
Expand Down

0 comments on commit 47f42f5

Please sign in to comment.