Package org.glassfish.tyrus.core
Interface TyrusConfiguration
-
public interface TyrusConfigurationInner Tyrus configuration properties holder object.- Since:
- 2.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTyrusConfiguration.Builder
-
Field Summary
Fields Modifier and Type Field Description static TyrusConfigurationEMPTY_CONFIGURATION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>tyrusProperties()Get an immutable map of properties provided byjava.util.Map<java.lang.String,java.lang.Object>userProperties()Get a mutable copy of user properties first obtained byEndpointConfig.getUserProperties().
-
-
-
Field Detail
-
EMPTY_CONFIGURATION
static final TyrusConfiguration EMPTY_CONFIGURATION
-
-
Method Detail
-
tyrusProperties
java.util.Map<java.lang.String,java.lang.Object> tyrusProperties()
Get an immutable map of properties provided by- Returns:
- immutable property
Mapfor optional Tyrus behavior
-
userProperties
java.util.Map<java.lang.String,java.lang.Object> userProperties()
Get a mutable copy of user properties first obtained byEndpointConfig.getUserProperties().- Returns:
- a mutable
Mapof user properties.
-
-