1 6 package org.jfox.jndi.enc; 7 8 import javax.naming.NamingException ; 9 import javax.naming.Reference ; 10 import javax.naming.Referenceable ; 11 12 18 19 public class ENCReference implements Referenceable { 20 21 public Reference getReference() throws NamingException { 22 Reference ref = new Reference (EnterpriseContext.class.getName(), EnterpriseContextFactory.class.getName(), null); 23 return ref; 24 } 25 26 public static void main(String [] args) { 27 28 } 29 } 30 31 | Popular Tags |