Package gw.config

Class BaseService

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private boolean _inited  
    • Constructor Summary

      Constructors 
      Constructor Description
      BaseService()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void doInit()  
      protected void doUninit()  
      void init()
      Initialize this service
      boolean isInited()  
      void uninit()
      Uninitialize this service
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • _inited

        private boolean _inited
    • Constructor Detail

      • BaseService

        public BaseService()
    • Method Detail

      • isInited

        public final boolean isInited()
        Specified by:
        isInited in interface IService
        Returns:
        true if this service has been initialized, false otherwise
      • init

        public final void init()
        Description copied from interface: IService
        Initialize this service
        Specified by:
        init in interface IService
      • uninit

        public final void uninit()
        Description copied from interface: IService
        Uninitialize this service
        Specified by:
        uninit in interface IService
      • doInit

        protected void doInit()
      • doUninit

        protected void doUninit()