Clover Coverage Report - KS Contract Documentation Generator 0.0.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
0   29   0   -
0   7   -   0
0     -  
1    
 
  OrchestrationModel       Line # 15 0 - 0 0 - -1.0
 
No Tests
 
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    * get Orchestration Objects
19    * @return
20    */
21    public Map<String, OrchestrationObject> getOrchestrationObjects();
22   
23    /**
24    * get look ups for bank of lookups
25    * @return
26    */
27    // public List<LookupMetadata> getLookups ();
28    public List<Object> getLookups();
29    }