1 6 7 package com.sun.enterprise.config.backup; 8 9 import com.sun.enterprise.config.backup.status.Status; 10 11 15 public class StatusRegistry { 16 17 18 public StatusRegistry() { 19 } 20 21 private static ThreadLocal _threadLocalStatus = 22 new ThreadLocal (); 23 24 public static Status getStatus() { 25 return (Status)_threadLocalStatus.get(); 26 } 27 28 public static void setStatus(Status ctx) { 29 _threadLocalStatus.set(ctx); 30 } 31 } 32 | Popular Tags |