Coverage Report - org.kuali.db.impex.ImpexMetadata
 
Classes in this File Line Coverage Branch Coverage Complexity
ImpexMetadata
0%
0/7
N/A
1
 
 1  
 package org.kuali.db.impex;
 2  
 
 3  0
 public class ImpexMetadata {
 4  
     String platform;
 5  
     String schemaLocation;
 6  
 
 7  
     public String getPlatform() {
 8  0
         return platform;
 9  
     }
 10  
 
 11  
     public void setPlatform(String platform) {
 12  0
         this.platform = platform;
 13  0
     }
 14  
 
 15  
     public String getSchemaLocation() {
 16  0
         return schemaLocation;
 17  
     }
 18  
 
 19  
     public void setSchemaLocation(String schemaLocation) {
 20  0
         this.schemaLocation = schemaLocation;
 21  0
     }
 22  
 
 23  
 }