Class FileAuthenticationProperties

java.lang.Object
org.apereo.cas.configuration.model.support.generic.FileAuthenticationProperties
All Implemented Interfaces:
Serializable

@RequiresModule(name="cas-server-support-generic") public class FileAuthenticationProperties extends Object implements Serializable
Since:
5.0.0
See Also:
  • Constructor Details

    • FileAuthenticationProperties

      public FileAuthenticationProperties()
  • Method Details

    • getFilename

      public org.springframework.core.io.Resource getFilename()
      File resource where user accounts are kept.
    • getSeparator

      public String getSeparator()
      Separator character that distinguishes between usernames and passwords in the file.
    • getPasswordEncoder

      public PasswordEncoderProperties getPasswordEncoder()
      Password encoder properties.
    • getPrincipalTransformation

      public PrincipalTransformationProperties getPrincipalTransformation()
      Principal transformation settings for this authentication.
    • getName

      public String getName()
      Authentication handler name used to verify credentials in the file.
    • setFilename

      public FileAuthenticationProperties setFilename(org.springframework.core.io.Resource filename)
      File resource where user accounts are kept.
      Returns:
      this.
    • setSeparator

      public FileAuthenticationProperties setSeparator(String separator)
      Separator character that distinguishes between usernames and passwords in the file.
      Returns:
      this.
    • setPasswordEncoder

      public FileAuthenticationProperties setPasswordEncoder(PasswordEncoderProperties passwordEncoder)
      Password encoder properties.
      Returns:
      this.
    • setPrincipalTransformation

      public FileAuthenticationProperties setPrincipalTransformation(PrincipalTransformationProperties principalTransformation)
      Principal transformation settings for this authentication.
      Returns:
      this.
    • setName

      public FileAuthenticationProperties setName(String name)
      Authentication handler name used to verify credentials in the file.
      Returns:
      this.