1 28 29 package com.caucho.config.types; 30 31 import com.caucho.jca.Resource; 32 import com.caucho.util.L10N; 33 34 37 public class Authenticator extends Resource { 38 private static L10N L = new L10N(Authenticator.class); 39 40 public Authenticator() 41 { 42 setJndiName("caucho/auth"); 43 } 44 45 public String toString() 46 { 47 return "Authenticator[" + getJndiName() + "]"; 48 } 49 } 50 51 | Popular Tags |