All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.descope.model.auth.AuthenticationServices Maven / Gradle / Ivy

The newest version!
package com.descope.model.auth;

import com.descope.sdk.auth.AuthenticationService;
import com.descope.sdk.auth.EnchantedLinkService;
import com.descope.sdk.auth.MagicLinkService;
import com.descope.sdk.auth.OAuthService;
import com.descope.sdk.auth.OTPService;
import com.descope.sdk.auth.PasswordService;
import com.descope.sdk.auth.SAMLService;
import com.descope.sdk.auth.SSOServiceProvider;
import com.descope.sdk.auth.TOTPService;
import com.descope.sdk.auth.WebAuthnService;
import lombok.Builder;
import lombok.Getter;

@Getter
@Builder
public class AuthenticationServices {
  AuthenticationService authService;
  OTPService otpService;
  SAMLService samlService;
  SSOServiceProvider ssoServiceProvider;
  TOTPService totpService;
  OAuthService oauthService;
  PasswordService passwordService;
  MagicLinkService magicLinkService;
  EnchantedLinkService enchantedLinkService;
  WebAuthnService webAuthnService;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy