Coverage Report - org.kuali.spring.util.PropertySource
 
Classes in this File Line Coverage Branch Coverage Complexity
PropertySource
100%
6/6
N/A
0
 
 1  
 package org.kuali.spring.util;
 2  
 
 3  6
 public enum PropertySource {
 4  1
     SYSTEM, // A system property
 5  1
     ENVIRONMENT, // An environment property
 6  1
     RESOURCE, // A property loaded from a Resource
 7  1
     LOCAL, // A property from a properties object injected into the factory bean
 8  1
     OTHER; // Some place besides one of the above
 9  
 }