[jboss-cvs] JBossAS SVN: r98872 - trunk/tomcat/src/main/java/org/jboss/web/tomcat/security.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 17:46:28 EST 2009


Author: bstansberry at jboss.com
Date: 2009-12-22 17:46:28 -0500 (Tue, 22 Dec 2009)
New Revision: 98872

Removed:
   trunk/tomcat/src/main/java/org/jboss/web/tomcat/security/RemoteHostValve.java
Log:
[JBAS-7542] Revert r98869 until jbosssx version w/ needed classes is integrated

Deleted: trunk/tomcat/src/main/java/org/jboss/web/tomcat/security/RemoteHostValve.java
===================================================================
--- trunk/tomcat/src/main/java/org/jboss/web/tomcat/security/RemoteHostValve.java	2009-12-22 22:23:28 UTC (rev 98871)
+++ trunk/tomcat/src/main/java/org/jboss/web/tomcat/security/RemoteHostValve.java	2009-12-22 22:46:28 UTC (rev 98872)
@@ -1,60 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.web.tomcat.security;
-
-import java.io.IOException;
-import javax.servlet.ServletException;
-
-import org.apache.catalina.connector.Request;
-import org.apache.catalina.connector.Response;
-import org.apache.catalina.valves.ValveBase;
-import org.jboss.logging.Logger;
-import org.jboss.security.HostThreadLocal;
-
-/** 
- This valve gets the remote host and sticks it in a thread local.  It is 
- to be used with RemoteHostTrustLoginModule in particular
-   
- @author Andrew C. Oliver (acoliver at gmail.com)
- @version $Revision: 0 $
- */
-public class RemoteHostValve
-   extends ValveBase
-{
-   private static Logger log = Logger.getLogger(HostnameValve.class);
-   private static boolean trace = log.isTraceEnabled();
-
-   public void invoke(Request request, Response response)
-      throws IOException, ServletException
-   {
-      boolean trace = log.isTraceEnabled();
-      if(trace) {
-        log.trace("in RemoteHostValve");
-      }
-      String remoteHost = request.getRemoteHost();
-      if(trace) {
-        log.trace("remoteHostValve set remoteHost to be "+remoteHost);
-      } 
-      HostThreadLocal.set(remoteHost);
-      getNext().invoke(request, response);
-   }
-}




More information about the jboss-cvs-commits mailing list