Coverage Report - org.kuali.rice.ksb.cache.CacheProperties
 
Classes in this File Line Coverage Branch Coverage Complexity
CacheProperties
0%
0/2
N/A
2
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.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.opensource.org/licenses/ecl1.php
 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, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.ksb.cache;
 17  
 
 18  
 /**
 19  
  * Defines some property name constants that are used as part of the internal cache implementation.
 20  
  * 
 21  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 22  
  *
 23  
  */
 24  
 final class CacheProperties {
 25  
 
 26  
         static final String FORCE_REGISTRY_REFRESH_KEY = "_FORCE_REGISTRY_REFRESH";
 27  
         static final String SERVICE_NAME_KEY = "_SERVICE_NAME";
 28  
         static final String SERVICE_BUS = "serviceBus";
 29  
         
 30  0
         private CacheProperties() {
 31  0
                 throw new UnsupportedOperationException("do not call");
 32  
         }
 33  
         
 34  
 }