Coverage Report - org.kuali.student.contract.model.OrchestrationModel
 
Classes in this File Line Coverage Branch Coverage Complexity
OrchestrationModel
N/A
N/A
1
 
 1  
 /*
 2  
  * To change this template, choose Tools | Templates
 3  
  * and open the template in the editor.
 4  
  */
 5  
 package org.kuali.student.contract.model;
 6  
 
 7  
 import java.util.List;
 8  
 import java.util.Map;
 9  
 //import org.kuali.student.core.assembly.data.LookupMetadata;
 10  
 
 11  
 /**
 12  
  *
 13  
  * @author nwright
 14  
  */
 15  
 public interface OrchestrationModel
 16  
 {
 17  
 
 18  
  /**
 19  
   * get Orchestration Objects
 20  
   * @return
 21  
   */
 22  
  public Map<String, OrchestrationObject> getOrchestrationObjects ();
 23  
 
 24  
  /**
 25  
   * get look ups for bank of lookups
 26  
   * @return
 27  
   */
 28  
 // public List<LookupMetadata> getLookups ();
 29  
  public List<Object> getLookups ();
 30  
 }