Coverage Report - org.seasar.teeda.core.util.LifecycleUtil
 
Classes in this File Line Coverage Branch Coverage Complexity
LifecycleUtil
78%
7/9
100%
2/2
1.667
 
 1  
 /*
 2  
  * Copyright 2004-2011 the Seasar Foundation and the Others.
 3  
  *
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  *     http://www.apache.org/licenses/LICENSE-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 13  
  * either express or implied. See the License for the specific language
 14  
  * governing permissions and limitations under the License.
 15  
  */
 16  
 package org.seasar.teeda.core.util;
 17  
 
 18  
 import javax.faces.internal.FacesConfigOptions;
 19  
 import javax.faces.internal.FactoryFinderUtil;
 20  
 import javax.faces.lifecycle.Lifecycle;
 21  
 import javax.faces.lifecycle.LifecycleFactory;
 22  
 
 23  
 public class LifecycleUtil {
 24  
 
 25  0
     private LifecycleUtil() {
 26  0
     }
 27  
 
 28  
     public static Lifecycle getLifecycle() {
 29  8
         LifecycleFactory lifecycleFactory = FactoryFinderUtil
 30  
                 .getLifecycleFactory();
 31  8
         Lifecycle lifecycle = lifecycleFactory.getLifecycle(getLifecycleId());
 32  8
         return lifecycle;
 33  
     }
 34  
 
 35  
     public static String getLifecycleId() {
 36  10
         String lifecycleId = FacesConfigOptions.getLifecycleId();
 37  10
         if (lifecycleId != null) {
 38  2
             return lifecycleId;
 39  
         }
 40  8
         return LifecycleFactory.DEFAULT_LIFECYCLE;
 41  
     }
 42  
 }