Package org.glassfish.tyrus.core
Interface TyrusConfiguration
-
public interface TyrusConfiguration
Inner Tyrus configuration properties holder object.- Since:
- 2.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
TyrusConfiguration.Builder
-
Field Summary
Fields Modifier and Type Field Description static TyrusConfiguration
EMPTY_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
Map
for 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
Map
of user properties.
-
-