Class ResteasySeConfiguration

    • Method Detail

      • from

        public static SeBootstrap.Configuration from​(SeBootstrap.Configuration configuration)
        Creates a new configuration which delegates to the configuration passed in. If the configuration does not contain certain properties required by this implementation, default values are returned.
        Parameters:
        configuration - the delegate configuration
        Returns:
        a new configuration
      • property

        public Object property​(String name)
        Description copied from interface: SeBootstrap.Configuration
        Returns the value of the property with the given name, or null if there is no property of that name.
        Specified by:
        property in interface SeBootstrap.Configuration
        Parameters:
        name - a String specifying the name of the property.
        Returns:
        an Object containing the value of the property, or null if no property exists matching the given name.
      • hasProperty

        public boolean hasProperty​(String name)
        Description copied from interface: SeBootstrap.Configuration
        Returns whether the property with the given name is configured, either explicitly or by default.
        Specified by:
        hasProperty in interface SeBootstrap.Configuration
        Parameters:
        name - a String specifying the name of the property.
        Returns:
        false if no property exists matching the given name, true otherwise.