📄 jahiaapplicationcontextservice.java
字号:
//// ____.// __/\ ______| |__/\. _______// __ .____| | \ | +----+ \// _______| /--| | | - \ _ | : - \_________// \\______: :---| : : | : | \________>// |__\---\_____________:______: :____|____:_____\// /_____|//// . . . i n j a h i a w e t r u s t . . .////////// NK 18.06.2002////package org.jahia.services.applications;import java.io.*;import java.text.*;import java.util.*;import org.jahia.data.webapps.*; // JahiaWebAppsDefimport org.jahia.data.applications.*; // ApplicationBeanimport org.jahia.utils.*; // JahiaConsoleimport org.jahia.exceptions.*; // JahiaExceptionimport org.jahia.services.*; // JahiaServiceimport org.jahia.settings.*; // JahiaPrivateSettings/** * Application context manager service * * @author Khue Nguyen <a href="mailto:khue@jahia.com">khue@jahia.com</a> * @version 1.0 */public abstract class JahiaApplicationContextService extends JahiaService { //-------------------------------------------------------------------------- /** * Get an ApplicationContext for a given application id * * @param id , the application id * @return the application context , null if not found */ public abstract ApplicationContext getApplicationContext(int id) throws JahiaException; //-------------------------------------------------------------------------- /** * Get an ApplicationContext for a given context * * @param context , the context * @return the application context , null if not found */ public abstract ApplicationContext getApplicationContext(String context) throws JahiaException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -