1 package org.apache.slide.projector; 2 3 import java.io.IOException ; 4 import java.util.List ; 5 import java.util.Map ; 6 7 import org.apache.commons.httpclient.Credentials; 8 9 public interface Context { 10 16 Store getStore(int storeId); 17 18 void setProcessId(String processId); 19 20 String getProcessId(); 21 22 void setBookmark(URI processor) throws IOException ; 23 24 URI getBookmark() throws IOException ; 25 26 void setProcess(URI process); 27 28 URI getProcess(); 29 30 void setStep(String step); 31 32 String getStep(); 33 34 void setStepStore(Store store); 35 36 void setInputParameters(Map map); 37 38 void setCredentials(Credentials credentials); 39 40 Credentials getCredentials(); 41 42 void addInformation(Information information); 43 44 public List getInformations(); 45 } | Popular Tags |