Class StoreInitializer

  • All Implemented Interfaces:
    Initializable
    Direct Known Subclasses:
    FSInitializer, SQLDBInitializer

    public abstract class StoreInitializer
    extends Object
    implements Initializable
    Initializes a store. note that stores have different create and destroy semantics which are all logically indep. of each other. File stores, e.g., are created as needed, but database stores correspond to sets of tables.

    Created by Jeff Gaynor
    on 4/23/12 at 10:23 AM

    • Field Detail

      • destroyed

        protected boolean destroyed
      • created

        protected boolean created
      • initialized

        protected boolean initialized
    • Constructor Detail

      • StoreInitializer

        public StoreInitializer()
    • Method Detail

      • isCreated

        public boolean isCreated()
        Description copied from interface: Initializable
        (Optional) Returns true if the object in question has been created. If this cannot be determined then the call should throw an exception.
        Specified by:
        isCreated in interface Initializable
        Returns:
      • isInitialized

        public boolean isInitialized()
        Description copied from interface: Initializable
        (Optional) Returns true if the object in question has been initialized. If this cannot be determined this call should throw an exception.
        Specified by:
        isInitialized in interface Initializable
        Returns:
      • isDestroyed

        public boolean isDestroyed()
        Description copied from interface: Initializable
        (Optional) Returns true if the object in question has been destroyed. If this cannot be determined this call should throw an exception.
        Specified by:
        isDestroyed in interface Initializable
        Returns: