1 16 package org.apache.cocoon.components.web3; 17 18 import org.apache.avalon.framework.component.Component; 19 20 import com.sap.mw.jco.IRepository; 21 import com.sap.mw.jco.JCO.Client; 22 import com.sap.mw.jco.JCO.Function; 23 24 31 public interface Web3Client extends Component { 32 33 String ROLE = "org.apache.cocoon.components.web3.Web3Client"; 34 35 38 void releaseClient (); 39 40 43 void initClient (Client client); 44 45 48 IRepository getRepository (); 49 50 53 void execute(Function function); 54 } 55 | Popular Tags |