1 18 19 package org.apache.beehive.controls.system.jdbc; 20 21 import javax.naming.InitialContext ; 22 import javax.naming.NamingException ; 23 import javax.naming.Context ; 24 25 29 class DefaultJndiContextFactory extends JdbcControl.JndiContextFactory { 30 31 36 public Context getContext() throws NamingException { 37 return (Context ) new InitialContext (); 38 } 39 } 40 | Popular Tags |