01: /*
02: * Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.desktop.context;
07:
08: import javax.servlet.ServletContext;
09:
10: import java.util.List;
11:
12: public interface ConfigContext {
13:
14: public void init(ServletContext sc);
15:
16: public void init(String filename);
17:
18: public String getServiceAppContextClassName();
19:
20: public String getTemplateBaseDir();
21:
22: public String getProviderClassBaseDir();
23:
24: public String getJSPScratchDir();
25:
26: public String getJSPCompilerWARClassPath();
27:
28: public String getDefaultDesktopType();
29:
30: public String getPortalId();
31:
32: public String getInstanceId();
33:
34: public String getPortletRenderModeParallel();
35:
36: public int getGetterPoolMinSize();
37:
38: public int getGetterPoolMaxSize();
39:
40: public int getGetterPoolPartitionSize();
41:
42: public int getCallerPoolMinSize();
43:
44: public int getCallerPoolMaxSize();
45:
46: public int getCallerPoolPartitionSize();
47:
48: public int getTemplateScanInterval();
49:
50: public int getDPScanInterval();
51:
52: public List getCommunityContributorTypes();
53:
54: public int getClassLoaderRevalidateInterval();
55:
56: public int getBrowserCacheInterval();
57:
58: public String getCookiePrefix();
59:
60: public String getLBCookieName();
61:
62: public String getConfigProperty(String key);
63:
64: public int getMaxEventGenerations();
65: }
|