Interface ExtendedConfig
- All Superinterfaces:
javax.ws.rs.core.Configuration
- All Known Subinterfaces:
ServerConfig
- All Known Implementing Classes:
ClientConfig, CommonConfig, ImmutableCommonConfig, ResourceConfig
public interface ExtendedConfig
extends javax.ws.rs.core.Configuration
Extended common runtime configuration.
- Author:
- Marek Potociar (marek.potociar at oracle.com)
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisProperty(String name) Get the value of the property with a given name converted toboolean.Methods inherited from interface javax.ws.rs.core.Configuration
getClasses, getContracts, getInstances, getProperties, getProperty, getPropertyNames, getRuntimeType, isEnabled, isEnabled, isRegistered, isRegistered
-
Method Details
-
isProperty
Get the value of the property with a given name converted toboolean. Returnsfalseif the value is not convertible.- Parameters:
name- property name.- Returns:
booleanproperty value orfalseif the property is not convertible.
-