1 23 24 29 30 package com.sun.enterprise.config; 31 32 import com.sun.enterprise.config.impl.ConfigContextImpl; 33 34 38 public class ConfigRegistry { 39 40 41 public ConfigRegistry() { 42 } 43 44 private static ThreadLocal _threadLocalConfigContext = 45 new ThreadLocal (); 46 47 public static ConfigContext getConfigContextFromThreadLocal() { 48 return (ConfigContext)_threadLocalConfigContext.get(); 49 } 50 51 public static void setConfigContextInThreadLocal(ConfigContext ctx) { 52 53 try { 54 ((ConfigContextImpl)ctx).setXPathInAllBeans(); 55 } catch (ConfigException ce) { 56 } 58 _threadLocalConfigContext.set(ctx); 59 } 60 } 61 | Popular Tags |