All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.config.IService Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
/*
 * Copyright 2014 Guidewire Software, Inc.
 */

package gw.config;

import gw.plugin.IPluginHost;

public interface IService extends IPluginHost
{
  /**
   * @return true if this service has been initialized, false otherwise
   */
  boolean isInited();

  /**
   * Initialize this service
   */
  void init();

  /**
   * Uninitialize this service
   */
  void uninit();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy