jahiainitializableservice.java

来自「java 写的一个新闻发布系统」· Java 代码 · 共 37 行

JAVA
37
字号
////  JahiaInitializableService Interface//  NK      21.12.2000//  FH      28.12.2000  Changed interface to abstract classs////package org.jahia.services;import  java.util.*;                    // Vectorimport  org.jahia.settings.*;       // JahiaPrivateSettingsimport  org.jahia.exceptions.*;     // Jahia Exceptions/** * This interfaces is an extension of the JahiaService one, that allows * for a service to implement a method called, init, which is passed the * configuration loaded from Jahia's configuration file. * * @author Khue ng * @version 1.0 */public abstract class JahiaInitializableService extends JahiaService{    /**     * Initializes the servlet dispatching service with parameters loaded     * from the Jahia configuration file.     * @param jSettings private settings object that contains Jahia     * configuration parameters     * @throws JahiaInitializationException thrown in the case of an error     * during this initialization, that will be treated as a critical error     * in Jahia and probably stop execution of Jahia once and for all.     */    public abstract void init( JahiaPrivateSettings jSettings )    throws JahiaInitializationException;} // end Interface JahiaInitializableService

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?