Interface LoginIdentityProviderConfigurationContext

All Superinterfaces:
NonComponentConfigurationContext

public interface LoginIdentityProviderConfigurationContext extends NonComponentConfigurationContext
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Retrieves all properties the component currently understands regardless of whether a value has been set for them or not.
    getProperty(String property)
    Returns the value of the provided property.
  • Method Details

    • getIdentifier

      String getIdentifier()
      Specified by:
      getIdentifier in interface NonComponentConfigurationContext
      Returns:
      identifier for the authority provider
    • getProperties

      Map<String,String> getProperties()
      Retrieves all properties the component currently understands regardless of whether a value has been set for them or not. If no value is present then its value is null and thus any registered default for the property descriptor applies.
      Specified by:
      getProperties in interface NonComponentConfigurationContext
      Returns:
      Map of all properties
    • getProperty

      String getProperty(String property)
      Returns the value of the provided property. This method does not substitute default values, so the value returned will be null if not set.
      Specified by:
      getProperty in interface NonComponentConfigurationContext
      Parameters:
      property - the property to retrieve
      Returns:
      the current property value (can be null)