Class 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 Detail

      • source

        protected org.eclipse.microprofile.config.spi.ConfigSource source
      • available

        protected final boolean available
      • defaultOrdinal

        protected final int defaultOrdinal
    • Constructor Detail

      • BaseServletConfigSource

        public BaseServletConfigSource​(Class<?> sourceClass,
                                       int defaultOrdinal)
    • Method Detail

      • getProperties

        public Map<String,​String> getProperties()
        Specified by:
        getProperties in interface org.eclipse.microprofile.config.spi.ConfigSource
      • getPropertyNames

        public Set<String> getPropertyNames()
        Specified by:
        getPropertyNames in interface org.eclipse.microprofile.config.spi.ConfigSource
      • getOrdinal

        public int getOrdinal()
        Specified by:
        getOrdinal in interface org.eclipse.microprofile.config.spi.ConfigSource
      • getValue

        public String getValue​(String propertyName)
        Specified by:
        getValue in interface org.eclipse.microprofile.config.spi.ConfigSource
      • getName

        public String getName()
        Specified by:
        getName in interface org.eclipse.microprofile.config.spi.ConfigSource