Tabnine Logo
RemoteAddrFilter.processCometEvent
Code IndexAdd Tabnine to your IDE (free)

How to use
processCometEvent
method
in
org.apache.catalina.filters.RemoteAddrFilter

Best Java code snippets using org.apache.catalina.filters.RemoteAddrFilter.processCometEvent (Showing top 8 results out of 315)

origin: codefollower/Tomcat-Research

/**
 * Extract the desired request property, and pass it (along with the comet
 * event and filter chain) to the protected <code>process()</code> method
 * to perform the actual filtering.
 *
 * @param event The comet event to be processed
 * @param chain The filter chain for this event
 *
 * @exception IOException if an input/output error occurs
 * @exception ServletException if a servlet error occurs
 */
@Override
public void doFilterEvent(CometEvent event, CometFilterChain chain)
    throws IOException, ServletException {
  processCometEvent(event.getHttpServletRequest().getRemoteAddr(),
      event, chain);
}
origin: org.apache.geronimo.ext.tomcat/catalina

/**
 * Extract the desired request property, and pass it (along with the comet
 * event and filter chain) to the protected <code>process()</code> method
 * to perform the actual filtering.
 *
 * @param event The comet event to be processed
 * @param chain The filter chain for this event
 *
 * @exception IOException if an input/output error occurs
 * @exception ServletException if a servlet error occurs
 */
@Override
public void doFilterEvent(CometEvent event, CometFilterChain chain)
    throws IOException, ServletException {
  processCometEvent(event.getHttpServletRequest().getRemoteAddr(),
      event, chain);        
}
origin: jboss.web/jbossweb

/**
 * Extract the desired request property, and pass it (along with the comet
 * event and filter chain) to the protected <code>process()</code> method
 * to perform the actual filtering.
 *
 * @param event The comet event to be processed
 * @param chain The filter chain for this event
 *
 * @exception IOException if an input/output error occurs
 * @exception ServletException if a servlet error occurs
 */
@Override
public void doFilterEvent(HttpEvent event, HttpEventFilterChain chain)
    throws IOException, ServletException {
  processCometEvent(event.getHttpServletRequest().getRemoteHost(),
      event, chain);        
}
origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Extract the desired request property, and pass it (along with the comet
 * event and filter chain) to the protected <code>process()</code> method
 * to perform the actual filtering.
 *
 * @param event The comet event to be processed
 * @param chain The filter chain for this event
 *
 * @exception IOException if an input/output error occurs
 * @exception ServletException if a servlet error occurs
 */
@Override
public void doFilterEvent(CometEvent event, CometFilterChain chain)
    throws IOException, ServletException {
  processCometEvent(event.getHttpServletRequest().getRemoteHost(),
      event, chain);        
}
origin: org.jboss.web/jbossweb

/**
 * Extract the desired request property, and pass it (along with the comet
 * event and filter chain) to the protected <code>process()</code> method
 * to perform the actual filtering.
 *
 * @param event The comet event to be processed
 * @param chain The filter chain for this event
 *
 * @exception IOException if an input/output error occurs
 * @exception ServletException if a servlet error occurs
 */
@Override
public void doFilterEvent(HttpEvent event, HttpEventFilterChain chain)
    throws IOException, ServletException {
  processCometEvent(event.getHttpServletRequest().getRemoteAddr(),
      event, chain);        
}
origin: org.apache.catalina/com.springsource.org.apache.catalina

/**
 * Extract the desired request property, and pass it (along with the comet
 * event and filter chain) to the protected <code>process()</code> method
 * to perform the actual filtering.
 *
 * @param event The comet event to be processed
 * @param chain The filter chain for this event
 *
 * @exception IOException if an input/output error occurs
 * @exception ServletException if a servlet error occurs
 */
@Override
public void doFilterEvent(CometEvent event, CometFilterChain chain)
    throws IOException, ServletException {
  processCometEvent(event.getHttpServletRequest().getRemoteAddr(),
      event, chain);        
}
origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Extract the desired request property, and pass it (along with the comet
 * event and filter chain) to the protected <code>process()</code> method
 * to perform the actual filtering.
 *
 * @param event The comet event to be processed
 * @param chain The filter chain for this event
 *
 * @exception IOException if an input/output error occurs
 * @exception ServletException if a servlet error occurs
 */
@Override
public void doFilterEvent(CometEvent event, CometFilterChain chain)
    throws IOException, ServletException {
  processCometEvent(event.getHttpServletRequest().getRemoteHost(),
      event, chain);        
}
origin: com.ovea.tajin.server/tajin-server-tomcat7

/**
 * Extract the desired request property, and pass it (along with the comet
 * event and filter chain) to the protected <code>process()</code> method
 * to perform the actual filtering.
 *
 * @param event The comet event to be processed
 * @param chain The filter chain for this event
 *
 * @exception IOException if an input/output error occurs
 * @exception ServletException if a servlet error occurs
 */
@Override
public void doFilterEvent(CometEvent event, CometFilterChain chain)
    throws IOException, ServletException {
  processCometEvent(event.getHttpServletRequest().getRemoteHost(),
      event, chain);        
}
org.apache.catalina.filtersRemoteAddrFilterprocessCometEvent

Popular methods of RemoteAddrFilter

  • process

Popular in Java

  • Making http post requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSystemService (Context)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • JList (javax.swing)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top Sublime Text plugins
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