Interface ResteasyConfiguration


  • public interface ResteasyConfiguration
    Version:
    $Revision: 1 $ Context injectable interface that allows you to get at configuration information. If resteasy is deployed within a WAR this will allow you to reference servlet context, filter, and servlet parameters.
    Author:
    Bill Burke
    • Method Detail

      • getParameter

        String getParameter​(String name)
        i.e. Servlet init-param first is searched, then servlet context.
        Parameters:
        name - parameter name
        Returns:
        parameter value
      • getParameterNames

        Set<String> getParameterNames()
      • getInitParameter

        String getInitParameter​(String name)
        Only provide parameter from a servlet or filter init param.
        Parameters:
        name - parameter name
        Returns:
        parameter value
      • getInitParameterNames

        Set<String> getInitParameterNames()