Tabnine Logo
FilterDef.setDescription
Code IndexAdd Tabnine to your IDE (free)

How to use
setDescription
method
in
org.apache.tomcat.util.descriptor.web.FilterDef

Best Java code snippets using org.apache.tomcat.util.descriptor.web.FilterDef.setDescription (Showing top 6 results out of 315)

origin: org.apache.tomee/tomee-catalina

  @Override
  public void addFilterMapping(final FilterMap filterMap) {
    // we need to add this one before the mapping cause of tomcat validation (ie dont make deployment fail)
    if ("CDI Conversation Filter".equals(filterMap.getFilterName()) && !cdiConversation) {
      final FilterDef conversationFilter = new FilterDef();
      conversationFilter.setAsyncSupported("true");
      conversationFilter.setDescription("CDI Conversation Filter");
      conversationFilter.setDisplayName("CDI Conversation Filter");
      conversationFilter.setFilterName("CDI Conversation Filter");
      conversationFilter.setFilterClass(WebConversationFilter.class.getName());
      addFilter(conversationFilter);
      cdiConversation = true;
    }
    super.addFilterMapping(filterMap);
  }
}
origin: org.apache.tomee/tomee-catalina

final FilterDef asyncOwbFilter = new FilterDef();
asyncOwbFilter.setAsyncSupported("true");
asyncOwbFilter.setDescription("OpenEJB CDI Filter - to propagate @RequestScoped in async tasks");
asyncOwbFilter.setDisplayName("OpenEJB CDI");
asyncOwbFilter.setFilterClass(EEFilter.class.getName());
origin: org.apache.tomee/tomee-jaxrs

filterDef.setDescription(description);
filterDef.setFilterName(description);
filterDef.setDisplayName(description);
origin: org.apache.tomcat/tomcat-catalina

filterDef.setDescription(evp.getValue().stringifyValue());
origin: codefollower/Tomcat-Research

filterDef.setDescription(evp.getValue().stringifyValue());
origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

filterDef.setDescription(evp.getValue().stringifyValue());
org.apache.tomcat.util.descriptor.webFilterDefsetDescription

Popular methods of FilterDef

  • <init>
  • setFilterName
  • setFilterClass
  • getFilterName
  • setAsyncSupported
  • addInitParameter
    Add an initialization parameter to the set of parameters associated with this filter.
  • getDescription
  • getFilterClass
  • setDisplayName
  • setFilter
  • getParameterMap
  • getAsyncSupported
  • getParameterMap,
  • getAsyncSupported,
  • getDisplayName,
  • getFilter,
  • getLargeIcon,
  • getSmallIcon,
  • setLargeIcon,
  • setSmallIcon,
  • toString

Popular in Java

  • Creating JSON documents from java classes using gson
  • findViewById (Activity)
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now