@@ -28,15 +28,15 @@ protected OidcClientCommonConfig(io.quarkus.oidc.common.runtime.config.OidcClien
28
28
*
29
29
* @deprecated use the {@link #tokenPath()} method instead
30
30
*/
31
- @ Deprecated (since = "3.18" )
31
+ @ Deprecated (since = "3.18" , forRemoval = true )
32
32
public Optional <String > tokenPath = Optional .empty ();
33
33
34
34
/**
35
35
* The relative path or absolute URL of the OIDC token revocation endpoint.
36
36
*
37
37
* @deprecated use the {@link #revokePath()} method instead
38
38
*/
39
- @ Deprecated (since = "3.18" )
39
+ @ Deprecated (since = "3.18" , forRemoval = true )
40
40
public Optional <String > revokePath = Optional .empty ();
41
41
42
42
/**
@@ -45,7 +45,7 @@ protected OidcClientCommonConfig(io.quarkus.oidc.common.runtime.config.OidcClien
45
45
*
46
46
* @deprecated use the {@link #clientId()} method instead
47
47
*/
48
- @ Deprecated (since = "3.18" )
48
+ @ Deprecated (since = "3.18" , forRemoval = true )
49
49
public Optional <String > clientId = Optional .empty ();
50
50
51
51
/**
@@ -56,15 +56,15 @@ protected OidcClientCommonConfig(io.quarkus.oidc.common.runtime.config.OidcClien
56
56
*
57
57
* @deprecated use the {@link #clientName()} method instead
58
58
*/
59
- @ Deprecated (since = "3.18" )
59
+ @ Deprecated (since = "3.18" , forRemoval = true )
60
60
public Optional <String > clientName = Optional .empty ();
61
61
62
62
/**
63
63
* Credentials the OIDC adapter uses to authenticate to the OIDC server.
64
64
*
65
65
* @deprecated use the {@link #credentials()} method instead
66
66
*/
67
- @ Deprecated (since = "3.18" )
67
+ @ Deprecated (since = "3.18" , forRemoval = true )
68
68
public Credentials credentials = new Credentials ();
69
69
70
70
@ Override
@@ -95,7 +95,7 @@ public io.quarkus.oidc.common.runtime.config.OidcClientCommonConfig.Credentials
95
95
/**
96
96
* @deprecated use {@link io.quarkus.oidc.common.runtime.config.OidcClientCommonConfigBuilder.CredentialsBuilder}
97
97
*/
98
- @ Deprecated (since = "3.18" )
98
+ @ Deprecated (since = "3.18" , forRemoval = true )
99
99
public static class Credentials implements io .quarkus .oidc .common .runtime .config .OidcClientCommonConfig .Credentials {
100
100
101
101
/**
@@ -663,79 +663,79 @@ public Optional<String> key() {
663
663
/**
664
664
* @deprecated use the {@link #tokenPath()} method instead
665
665
*/
666
- @ Deprecated (since = "3.18" )
666
+ @ Deprecated (since = "3.18" , forRemoval = true )
667
667
public Optional <String > getTokenPath () {
668
668
return tokenPath ;
669
669
}
670
670
671
671
/**
672
672
* @deprecated use {@link io.quarkus.oidc.common.runtime.config.OidcClientCommonConfigBuilder}
673
673
*/
674
- @ Deprecated (since = "3.18" )
674
+ @ Deprecated (since = "3.18" , forRemoval = true )
675
675
public void setTokenPath (String tokenPath ) {
676
676
this .tokenPath = Optional .of (tokenPath );
677
677
}
678
678
679
679
/**
680
680
* @deprecated use the {@link #revokePath()} method instead
681
681
*/
682
- @ Deprecated (since = "3.18" )
682
+ @ Deprecated (since = "3.18" , forRemoval = true )
683
683
public Optional <String > getRevokePath () {
684
684
return revokePath ;
685
685
}
686
686
687
687
/**
688
688
* @deprecated use {@link io.quarkus.oidc.common.runtime.config.OidcClientCommonConfigBuilder}
689
689
*/
690
- @ Deprecated (since = "3.18" )
690
+ @ Deprecated (since = "3.18" , forRemoval = true )
691
691
public void setRevokePath (String revokePath ) {
692
692
this .revokePath = Optional .of (revokePath );
693
693
}
694
694
695
695
/**
696
696
* @deprecated use the {@link #clientId()} method instead
697
697
*/
698
- @ Deprecated (since = "3.18" )
698
+ @ Deprecated (since = "3.18" , forRemoval = true )
699
699
public Optional <String > getClientId () {
700
700
return clientId ;
701
701
}
702
702
703
703
/**
704
704
* @deprecated use {@link io.quarkus.oidc.common.runtime.config.OidcClientCommonConfigBuilder}
705
705
*/
706
- @ Deprecated (since = "3.18" )
706
+ @ Deprecated (since = "3.18" , forRemoval = true )
707
707
public void setClientId (String clientId ) {
708
708
this .clientId = Optional .of (clientId );
709
709
}
710
710
711
711
/**
712
712
* @deprecated use the {@link #clientName()} method instead
713
713
*/
714
- @ Deprecated (since = "3.18" )
714
+ @ Deprecated (since = "3.18" , forRemoval = true )
715
715
public Optional <String > getClientName () {
716
716
return clientName ;
717
717
}
718
718
719
719
/**
720
720
* @deprecated use {@link io.quarkus.oidc.common.runtime.config.OidcClientCommonConfigBuilder}
721
721
*/
722
- @ Deprecated (since = "3.18" )
722
+ @ Deprecated (since = "3.18" , forRemoval = true )
723
723
public void setClientName (String clientName ) {
724
724
this .clientName = Optional .of (clientName );
725
725
}
726
726
727
727
/**
728
728
* @deprecated use the {@link #credentials()} method instead
729
729
*/
730
- @ Deprecated (since = "3.18" )
730
+ @ Deprecated (since = "3.18" , forRemoval = true )
731
731
public Credentials getCredentials () {
732
732
return credentials ;
733
733
}
734
734
735
735
/**
736
736
* @deprecated use {@link io.quarkus.oidc.common.runtime.config.OidcClientCommonConfigBuilder}
737
737
*/
738
- @ Deprecated (since = "3.18" )
738
+ @ Deprecated (since = "3.18" , forRemoval = true )
739
739
public void setCredentials (Credentials credentials ) {
740
740
this .credentials = credentials ;
741
741
}
0 commit comments