Package org.jboss.resteasy.core.se
Class ResteasySeConfiguration
- java.lang.Object
-
- org.jboss.resteasy.core.se.ResteasySeConfiguration
-
- All Implemented Interfaces:
jakarta.ws.rs.SeBootstrap.Configuration
public class ResteasySeConfiguration extends Object implements jakarta.ws.rs.SeBootstrap.Configuration
An implementation of theSeBootstrap.Configuration
.- Since:
- 6.1
- Author:
- James R. Perkins
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static jakarta.ws.rs.SeBootstrap.Configuration.Builder
builder()
Creates a new configuration builder.static jakarta.ws.rs.SeBootstrap.Configuration
from(jakarta.ws.rs.SeBootstrap.Configuration configuration)
Creates a new configuration which delegates to the configuration passed in.boolean
hasProperty(String name)
Object
property(String name)
-
-
-
Method Detail
-
builder
public static jakarta.ws.rs.SeBootstrap.Configuration.Builder builder()
Creates a new configuration builder.- Returns:
- the new builder
-
from
public static jakarta.ws.rs.SeBootstrap.Configuration from(jakarta.ws.rs.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)
- Specified by:
property
in interfacejakarta.ws.rs.SeBootstrap.Configuration
-
hasProperty
public boolean hasProperty(String name)
- Specified by:
hasProperty
in interfacejakarta.ws.rs.SeBootstrap.Configuration
-
-