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 e986a8b commit 30fa1a5
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* Copyright (c) 2018-2023, FusionAuth, All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/


using System.Collections.Generic;
using System;

namespace io.fusionauth.domain
{

/**
* Refresh token one-time use configuration. This configuration is utilized when the usage policy is
* configured for one-time use.
*
* @author Daniel DeGroff
*/
public class RefreshTokenOneTimeUseConfiguration {

public int? gracePeriodInSeconds;

public RefreshTokenOneTimeUseConfiguration with(Action<RefreshTokenOneTimeUseConfiguration> action) {
action(this);
return this;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* Copyright (c) 2018-2023, FusionAuth, All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/


using io.fusionauth.domain;
using System.Collections.Generic;
using System;

namespace io.fusionauth.domain.provider
{

/**
* Configuration for encrypted assertions when acting as SAML Service Provider
*
* @author Jaret Hendrickson
*/
public class SAMLv2AssertionDecryptionConfiguration: Enableable {

public Guid? keyTransportDecryptionKeyId;

public SAMLv2AssertionDecryptionConfiguration with(Action<SAMLv2AssertionDecryptionConfiguration> action) {
action(this);
return this;
}
}
}

0 comments on commit 30fa1a5

Please sign in to comment.