Coverage Report - net.admin4j.ui.filters.consolidator.DefaultHttpRequestConsolidator
 
Classes in this File Line Coverage Branch Coverage Complexity
DefaultHttpRequestConsolidator
40%
2/5
N/A
1
 
 1  
 /*
 2  
  * This software is licensed under the Apache License, Version 2.0
 3  
  * (the "License") agreement; you may not use this file except in compliance with
 4  
  * the License.  You may obtain a copy of the License at
 5  
  *
 6  
  *      http://www.apache.org/licenses/LICENSE-2.0
 7  
  *
 8  
  * Unless required by applicable law or agreed to in writing, software
 9  
  * distributed under the License is distributed on an "AS IS" BASIS,
 10  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 11  
  * See the License for the specific language governing permissions and
 12  
  * limitations under the License.
 13  
  */
 14  
 package net.admin4j.ui.filters.consolidator;
 15  
 
 16  
 import java.util.Properties;
 17  
 
 18  
 import javax.servlet.FilterConfig;
 19  
 import javax.servlet.ServletConfig;
 20  
 import javax.servlet.ServletException;
 21  
 import javax.servlet.http.HttpServletRequest;
 22  
 
 23  
 import net.admin4j.deps.commons.lang3.Validate;
 24  
 
 25  
 /**
 26  
  * Default request consolidator which categorizes requests by request URI.
 27  
  *
 28  
  * @author D. Ashmore
 29  
  * @since 1.0.4-rc1
 30  
  */
 31  15
 public class DefaultHttpRequestConsolidator implements HttpRequestConsolidator {
 32  
 
 33  
         public String categorize(HttpServletRequest httpRequest) {
 34  
                 Validate.notNull(httpRequest, "Null httpRequest not allowed.");
 35  3
                 return httpRequest.getRequestURI();
 36  
         }
 37  
 
 38  
         public void configure(FilterConfig config) throws ServletException {
 39  
                 // NoOp
 40  0
         }
 41  
 
 42  
         public void configure(ServletConfig config) throws ServletException {
 43  
                 // NoOp
 44  0
         }
 45  
 
 46  
         public void configure(String namePrefix, Properties config) {
 47  
                 // NoOp
 48  0
         }
 49  
 
 50  
 }