Advertisement
duc-phan

Untitled

Nov 30th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.95 KB | None | 0 0
  1. public abstract class ContainerBase implements Container, Lifecycle, Pipeline, MBeanRegistration, Serializable {
  2.     /**
  3.      * The processor delay for this component.
  4.      */
  5.     protected int backgroundProcessorDelay = -1;
  6.     /**
  7.      * The lifecycle event support for this component.
  8.      */
  9.     protected LifecycleSupport lifecycle =
  10.             new LifecycleSupport(this);
  11.     /**
  12.      * The container event listeners for this Container.
  13.      */
  14.     protected ArrayList listeners = new ArrayList();
  15.     /**
  16.      * The Loader implementation with which this Container is
  17.      * associated.
  18.      */
  19.     protected Loader loader = null;
  20.     /**
  21.      * The Logger implementation with which this Container is
  22.      * associated.
  23.      */
  24.     protected Log logger = null;
  25.     /**
  26.      * Associated logger name.
  27.      */
  28.     protected String logName = null;
  29.     www.it-
  30.     ebooks.info62 Chapter 4:Comments
  31.     /**
  32.      * The Manager implementation with which this Container is
  33.      * associated.
  34.      */
  35.     protected Manager manager = null;
  36.     /**
  37.      * The cluster with which this Container is associated.
  38.      */
  39.     protected Cluster cluster = null;
  40.     /**
  41.      * The human-readable name of this Container.
  42.      */
  43.     protected String name = null;
  44.     /**
  45.      * The parent Container to which this Container is a child.
  46.      */
  47.     protected Container parent = null;
  48.     /**
  49.      * The parent class loader to be configured when we install a
  50.      * Loader.
  51.      */
  52.     protected ClassLoader parentClassLoader = null;
  53.     /**
  54.      * The Pipeline object with which this Container is
  55.      * associated.
  56.      */
  57.     protected Pipeline pipeline = new StandardPipeline(this);
  58.     /**
  59.      * The Realm with which this Container is associated.
  60.      */
  61.     protected Realm realm = null;
  62.     /**
  63.      * The resources DirContext object with which this Container
  64.      * is associated.
  65.      */
  66.     protected DirContext resources = null;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement