| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| OrchestrationModel |
|
| 1.0;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 | * 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 | } |