Class ConfigurationWrapper
- java.lang.Object
-
- org.jboss.resteasy.microprofile.client.ConfigurationWrapper
-
- All Implemented Interfaces:
javax.ws.rs.core.Configuration
public class ConfigurationWrapper extends Object implements javax.ws.rs.core.Configuration
-
-
Constructor Summary
Constructors Constructor Description ConfigurationWrapper(javax.ws.rs.core.Configuration delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<Class<?>>
getClasses()
Map<Class<?>,Integer>
getContracts(Class<?> componentClass)
Set<Object>
getInstances()
Map<String,Object>
getProperties()
Object
getProperty(String name)
Collection<String>
getPropertyNames()
javax.ws.rs.RuntimeType
getRuntimeType()
boolean
isEnabled(Class<? extends javax.ws.rs.core.Feature> featureClass)
boolean
isEnabled(javax.ws.rs.core.Feature feature)
boolean
isRegistered(Class<?> componentClass)
boolean
isRegistered(Object component)
void
registerLocalContract(Class<?> provider, Map<Class<?>,Integer> contracts)
-
-
-
Method Detail
-
getRuntimeType
public javax.ws.rs.RuntimeType getRuntimeType()
- Specified by:
getRuntimeType
in interfacejavax.ws.rs.core.Configuration
-
getProperties
public Map<String,Object> getProperties()
- Specified by:
getProperties
in interfacejavax.ws.rs.core.Configuration
-
getProperty
public Object getProperty(String name)
- Specified by:
getProperty
in interfacejavax.ws.rs.core.Configuration
-
getPropertyNames
public Collection<String> getPropertyNames()
- Specified by:
getPropertyNames
in interfacejavax.ws.rs.core.Configuration
-
isEnabled
public boolean isEnabled(javax.ws.rs.core.Feature feature)
- Specified by:
isEnabled
in interfacejavax.ws.rs.core.Configuration
-
isEnabled
public boolean isEnabled(Class<? extends javax.ws.rs.core.Feature> featureClass)
- Specified by:
isEnabled
in interfacejavax.ws.rs.core.Configuration
-
isRegistered
public boolean isRegistered(Object component)
- Specified by:
isRegistered
in interfacejavax.ws.rs.core.Configuration
-
isRegistered
public boolean isRegistered(Class<?> componentClass)
- Specified by:
isRegistered
in interfacejavax.ws.rs.core.Configuration
-
getContracts
public Map<Class<?>,Integer> getContracts(Class<?> componentClass)
- Specified by:
getContracts
in interfacejavax.ws.rs.core.Configuration
-
getClasses
public Set<Class<?>> getClasses()
- Specified by:
getClasses
in interfacejavax.ws.rs.core.Configuration
-
getInstances
public Set<Object> getInstances()
- Specified by:
getInstances
in interfacejavax.ws.rs.core.Configuration
-
-