Coverage Report - net.admin4j.util.threaddumper.ThreadDumperFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
ThreadDumperFactory
33%
2/6
50%
1/2
6
 
 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.util.threaddumper;
 15  
 
 16  
 import net.admin4j.deps.commons.lang3.SystemUtils;
 17  
 import net.admin4j.util.Admin4jRuntimeException;
 18  
 
 19  
 /**
 20  
  * Ensures that the proper ThreadDumper is used given the runtime JVM version.
 21  
  * @author D. Ashmore
 22  
  * @since 1.0
 23  
  */
 24  0
 public class ThreadDumperFactory {
 25  
     
 26  
     public static ThreadDumper getThreadDumper() {
 27  240
         if (SystemUtils.IS_JAVA_1_5) {
 28  0
             return new ThreadDumperV1_5();
 29  
         }
 30  
         
 31  
         try {
 32  240
             return (ThreadDumper)Class.forName("net.admin4j.util.threaddumper.ThreadDumperV1_6").newInstance();
 33  0
         } catch (Exception e) {
 34  0
             throw new Admin4jRuntimeException(e);
 35  
         } 
 36  
     }
 37  
 
 38  
 }