Class LoginProperty

java.lang.Object
best.skn.security.properties.LoginProperty

@Component @ConfigurationProperties("skn.security.login") public class LoginProperty extends Object
External Login Configuration Property Class

There is a property called 'skn.security.login' for externalizing configurations

The sub-properties are:

(1) Login URL: it's a String under 'skn.security.login.url'. It holds the address for the login page url where users will be prompted to login.

Since:
2024-03-16
Version:
1.4.0
Author:
SKN Shukhan
Use Case:
Spring Boot Reactive
Dedicated To:
Logno, Atoshi and My Parents
  • Field Details

    • url

      private String url
      A String containing the URL for the login page in Login configuration
      Since:
      v1.0.0
  • Constructor Details

    • LoginProperty

      public LoginProperty(String url)
      Public Constructor with all private properties
      Parameters:
      url - String
      Since:
      v1.4.0
    • LoginProperty

      public LoginProperty()
      Public Constructor with no argument
      Since:
      v1.4.0
  • Method Details

    • getUrl

      public String getUrl()
      Getter method for `url` field
      Returns:
      String for `url` field
      Since:
      v1.4.0
    • setUrl

      public void setUrl(String value)
      Setter method for `url` field
      Parameters:
      value - String for `url` field
      Since:
      v1.4.0