Class ResteasySeConfiguration

java.lang.Object
org.jboss.resteasy.core.se.ResteasySeConfiguration
All Implemented Interfaces:
SeBootstrap.Configuration

public class ResteasySeConfiguration extends Object implements SeBootstrap.Configuration
An implementation of the SeBootstrap.Configuration.
Since:
6.1
Author:
James R. Perkins
  • Method Details

    • builder

      public static SeBootstrap.Configuration.Builder builder()
      Creates a new configuration builder.
      Returns:
      the new builder
    • 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.