Class BaseServletConfigSource
- java.lang.Object
-
- org.jboss.resteasy.microprofile.config.BaseServletConfigSource
-
- All Implemented Interfaces:
org.eclipse.microprofile.config.spi.ConfigSource
- Direct Known Subclasses:
FilterConfigSource
,ServletConfigSource
,ServletContextConfigSource
public class BaseServletConfigSource extends Object implements org.eclipse.microprofile.config.spi.ConfigSource
I know this implementation is weird, but we do this for two reasons 1. So that resteasy doesn't require servlet 2. Because Graal VM will barf with an unhandled reference if we reference servlet classes directly
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
available
protected int
defaultOrdinal
protected org.eclipse.microprofile.config.spi.ConfigSource
source
-
Constructor Summary
Constructors Constructor Description BaseServletConfigSource(Class<?> sourceClass, int defaultOrdinal)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
int
getOrdinal()
Map<String,String>
getProperties()
Set<String>
getPropertyNames()
String
getValue(String propertyName)
-
-
-
Constructor Detail
-
BaseServletConfigSource
public BaseServletConfigSource(Class<?> sourceClass, int defaultOrdinal)
-
-
Method Detail
-
getProperties
public Map<String,String> getProperties()
- Specified by:
getProperties
in interfaceorg.eclipse.microprofile.config.spi.ConfigSource
-
getPropertyNames
public Set<String> getPropertyNames()
- Specified by:
getPropertyNames
in interfaceorg.eclipse.microprofile.config.spi.ConfigSource
-
getOrdinal
public int getOrdinal()
- Specified by:
getOrdinal
in interfaceorg.eclipse.microprofile.config.spi.ConfigSource
-
getValue
public String getValue(String propertyName)
- Specified by:
getValue
in interfaceorg.eclipse.microprofile.config.spi.ConfigSource
-
getName
public String getName()
- Specified by:
getName
in interfaceorg.eclipse.microprofile.config.spi.ConfigSource
-
-