diff --git a/examples/server/java/src/main/java/com/example/helloworld/resources/AuthResource.java b/examples/server/java/src/main/java/com/example/helloworld/resources/AuthResource.java index 7efaa05f..02f64e9c 100644 --- a/examples/server/java/src/main/java/com/example/helloworld/resources/AuthResource.java +++ b/examples/server/java/src/main/java/com/example/helloworld/resources/AuthResource.java @@ -253,7 +253,9 @@ public static class Payload { @NotBlank String code; - + + String state; + public String getClientId() { return clientId; } @@ -265,6 +267,10 @@ public String getRedirectUri() { public String getCode() { return code; } + + public String getState() { + return state; + } } /*