Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ public class Application {

public Guid? themeId;

public UniversalApplicationConfiguration universalConfiguration;

public RegistrationUnverifiedOptions unverified;

public Guid? verificationEmailTemplateId;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* 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
{

/**
* @author Lyle Schemmerling
*/
public class UniversalApplicationConfiguration {

public bool? global;

public bool? universal;

public UniversalApplicationConfiguration with(Action<UniversalApplicationConfiguration> action) {
action(this);
return this;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* 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
{

/**
* An object that represents the mapping between a Universal Application and a Tenant.
*
* @author Lyle Schemmerling
*/
public class UniversalApplicationTenant {

public Guid? applicationId;

public IDictionary<string, object> data;

public Guid? id;

public DateTimeOffset? insertInstant;

public DateTimeOffset? lastUpdateInstant;

public Guid? tenantId;

public UniversalApplicationTenant with(Action<UniversalApplicationTenant> 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.api
{

/**
* The request object for creating or updating a Universal Application Tenant.
*
* @author Lyle Schemmerling
*/
public class UniversalApplicationTenantRequest {

public UniversalApplicationTenant universalApplicationTenant;

public UniversalApplicationTenantRequest with(Action<UniversalApplicationTenantRequest> 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.api
{

/**
* The response object for a single Universal Application Tenant.
*
* @author Lyle Schemmerling
*/
public class UniversalApplicationTenantResponse {

public UniversalApplicationTenant universalApplicationTenant;

public UniversalApplicationTenantResponse with(Action<UniversalApplicationTenantResponse> 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.search;
using System.Collections.Generic;
using System;

namespace io.fusionauth.domain.api
{

/**
* The request object with the search criteria for Universal Application Tenants.
*
* @author Lyle Schemmerling
*/
public class UniversalApplicationTenantSearchRequest {

public UniversalApplicationTenantSearchCriteria search;

public UniversalApplicationTenantSearchRequest with(Action<UniversalApplicationTenantSearchRequest> action) {
action(this);
return this;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* 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.api
{

/**
* The response object for Universal Application Tenants search results.
*
* @author Lyle Schemmerling
*/
public class UniversalApplicationTenantSearchResponse {

public List<UniversalApplicationTenant> universalApplicationTenants;

public long? total;

public UniversalApplicationTenantSearchResponse with(Action<UniversalApplicationTenantSearchResponse> action) {
action(this);
return this;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public enum OAuthErrorReason {
invalid_target_entity_scope,
invalid_entity_permission_scope,
invalid_user_id,
invalid_tenant_id,
grant_type_disabled,
missing_client_id,
missing_client_secret,
Expand All @@ -65,6 +66,7 @@ public enum OAuthErrorReason {
missing_user_code,
missing_user_id,
missing_verification_uri,
missing_tenant_id,
login_prevented,
not_licensed,
user_code_expired,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,14 @@ public class ReactorStatus {

public bool? licensed;

public ReactorFeatureStatus organizationAdminApplication;

public ReactorFeatureStatus scimServer;

public ReactorFeatureStatus threatDetection;

public ReactorFeatureStatus universalApplication;

public ReactorFeatureStatus webAuthn;

public ReactorFeatureStatus webAuthnPlatformAuthenticators;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
* 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.search
{

/**
* @author Lyle Schemmerling
*/
public class UniversalApplicationTenantSearchCriteria: BaseSearchCriteria {

public Guid? applicationId;

public Guid? tenantId;

public string tenantName;

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