Package com.adito.core.RequestParameterMap

Examples of com.adito.core.RequestParameterMap.ProxyURIDetails


              refUrl.getQuery();
              if (log.isDebugEnabled())
                log.debug("Splitting refererer query string [" + val + "] " + refUrl.getQuery());
              if (refUrl.getFile() != null) {
                 
                  ProxyURIDetails uriDetails = RequestParameterMap.parseProxyPath(refUrl.getFile(), "UTF-8");
                  if(uriDetails.getProxiedURL() == null) {
                      /* If the referer is not a proxied URL then don't send a referer. This
                       * way a target server won't know its a request from Adito by
                       * examining the referer
                       */
                      val = null;
                  }
                  else {
                      val = uriDetails.getProxiedURL().toExternalForm();
                  }
              }
            } catch (MalformedURLException murle) {

            }
View Full Code Here

TOP

Related Classes of com.adito.core.RequestParameterMap.ProxyURIDetails

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.