Interface ExtendedConfig

  • All Superinterfaces:
    jakarta.ws.rs.core.Configuration
    All Known Subinterfaces:
    ExternalConfigurationModel<CONFIG>
    All Known Implementing Classes:
    CommonConfig, ImmutableCommonConfig

    public interface ExtendedConfig
    extends jakarta.ws.rs.core.Configuration
    Extended common runtime configuration.
    Author:
    Marek Potociar
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean isProperty​(String name)
      Get the value of the property with a given name converted to boolean.
      • Methods inherited from interface jakarta.ws.rs.core.Configuration

        getClasses, getContracts, getInstances, getProperties, getProperty, getPropertyNames, getRuntimeType, hasProperty, isEnabled, isEnabled, isRegistered, isRegistered
    • Method Detail

      • isProperty

        boolean isProperty​(String name)
        Get the value of the property with a given name converted to boolean. Returns false if the value is not convertible.
        Parameters:
        name - property name.
        Returns:
        boolean property value or false if the property is not convertible.