001 /* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005 package org.kuali.student.contract.model; 006 007 import java.util.List; 008 import java.util.Map; 009 //import org.kuali.student.core.assembly.data.LookupMetadata; 010 011 /** 012 * 013 * @author nwright 014 */ 015 public interface OrchestrationModel { 016 017 /** 018 * get Orchestration Objects 019 * @return 020 */ 021 public Map<String, OrchestrationObject> getOrchestrationObjects(); 022 023 /** 024 * get look ups for bank of lookups 025 * @return 026 */ 027 // public List<LookupMetadata> getLookups (); 028 public List<Object> getLookups(); 029 }