1 28 29 package org.objectweb.jonas.dbm; 30 31 import java.util.Properties ; 32 33 import javax.naming.NamingException ; 34 35 import org.objectweb.jonas.service.Service; 36 37 46 public interface DataBaseService extends Service { 47 48 51 public void createDataSource(String dsName, Properties dsd) throws Exception ; 52 53 56 public void unbindDataSources() throws NamingException ; 57 58 } 59 | Popular Tags |