Class AbstractServletModuleBinding<T>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Map<java.lang.String,​java.lang.String> getInitParams()
      Returns any context params supplied when creating the binding.
      java.lang.String getPattern()
      Returns the pattern used to match against the binding.
      protected T getTarget()  
      UriPatternType getUriPatternType()
      Returns the pattern type that this binding was created with.
      boolean matchesUri​(java.lang.String uri)
      Returns true if the given URI will match this binding.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • initParams

        private final java.util.Map<java.lang.String,​java.lang.String> initParams
      • target

        private final T target
    • Constructor Detail

      • AbstractServletModuleBinding

        AbstractServletModuleBinding​(java.util.Map<java.lang.String,​java.lang.String> initParams,
                                     T target,
                                     UriPatternMatcher patternMatcher)