📄 jahiainitializableservice.java
字号:
//// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -