Skip to content

Commit

Permalink
1.55.0 builders
Browse files Browse the repository at this point in the history
  • Loading branch information
bhalsey committed Dec 20, 2024
1 parent 6b3600e commit e986a8b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ namespace io.fusionauth.domain
*/
public class APIKey {

public DateTimeOffset? expirationInstant;

public Guid? id;

public DateTimeOffset? insertInstant;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public class JWTConfiguration: Enableable {

public RefreshTokenExpirationPolicy refreshTokenExpirationPolicy;

public RefreshTokenOneTimeUseConfiguration refreshTokenOneTimeUseConfiguration;

public RefreshTokenRevocationPolicy refreshTokenRevocationPolicy;

public RefreshTokenSlidingWindowConfiguration refreshTokenSlidingWindowConfiguration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public class RefreshTokenRevocationPolicy {

public bool? onMultiFactorEnable;

public bool? onOneTimeTokenReuse;

public bool? onPasswordChanged;

public RefreshTokenRevocationPolicy with(Action<RefreshTokenRevocationPolicy> action) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ namespace io.fusionauth.domain.provider
*/
public class BaseSAMLv2IdentityProvider<D>: BaseIdentityProvider<D> {

public SAMLv2AssertionDecryptionConfiguration assertionDecryptionConfiguration;

public string emailClaim;

public Guid? keyId;
Expand Down

0 comments on commit e986a8b

Please sign in to comment.