📄 cmssetup.java
字号:
/** Sets the timeout to the given value */
public void setTimeout(String timeout) {
setExtProperty("pool." + getResourceBroker() + ".timeout", timeout);
}
/** Returns the timeout value */
public String getTimeout() {
return this.getExtProperty("pool." + getResourceBroker() + ".timeout");
}
/** Sets the max. age to the given value */
public void setMaxAge(String maxAge) {
setExtProperty("pool." + getResourceBroker() + ".maxage", maxAge);
}
/** Returns the max. age */
public String getMaxAge() {
return this.getExtProperty("pool." + getResourceBroker() + ".maxage");
}
/** Sets the cache value for user to the given value */
public void setCacheUser(String cacheUser) {
setExtProperty("cache.user", cacheUser);
}
/** Returns the cache value for user */
public String getCacheUser() {
return this.getExtProperty("cache.user");
}
/** Sets the cache value for group to the given value */
public void setCacheGroup(String cacheGroup) {
setExtProperty("cache.group", cacheGroup);
}
/** Returns the cache value for group */
public String getCacheGroup() {
return this.getExtProperty("cache.group");
}
/** Sets the cache value for usergroups to the given value */
public void setCacheUserGroups(String cacheUserGroups) {
setExtProperty("cache.usergroups", cacheUserGroups);
}
/** Returns the cache value for usergroups */
public String getCacheUserGroups() {
return this.getExtProperty("cache.usergroups");
}
/** Sets the cache value for project to the given value */
public void setCacheProject(String cacheProject) {
setExtProperty("cache.project", cacheProject);
}
/** Returns the cache value for project */
public String getCacheProject() {
return this.getExtProperty("cache.project");
}
/** Sets the cache value for online project to the given value */
public void setCacheOnlineProject(String cacheOnlineProject) {
setExtProperty("cache.onlineproject", cacheOnlineProject);
}
/** Returns the cache value for online project */
public String getCacheOnlineProject() {
return this.getExtProperty("cache.onlineproject");
}
/** Sets the cache value for resource to the given value */
public void setCacheResource(String cacheResource) {
setExtProperty("cache.resource", cacheResource);
}
/** Returns the cache value for resource */
public String getCacheResource() {
return this.getExtProperty("cache.resource");
}
/** Sets the cache value for subres to the given value */
public void setCacheSubres(String cacheSubres) {
setExtProperty("cache.subres", cacheSubres);
}
/** Returns the cache value for subres */
public String getCacheSubres() {
return this.getExtProperty("cache.subres");
}
/** Sets the cache value for property to the given value */
public void setCacheProperty(String cacheProperty) {
setExtProperty("cache.property", cacheProperty);
}
/** Returns the cache value for property */
public String getCacheProperty() {
return this.getExtProperty("cache.property");
}
/** Sets the cache value for property def. to the given value */
public void setCachePropertyDef(String cachePropertyDef) {
setExtProperty("cache.propertydef", cachePropertyDef);
}
/** Returns the cache value for property def. */
public String getCachePropertyDef() {
return this.getExtProperty("cache.propertydef");
}
/** Sets the cache value for property def. vector to the given value */
public void setCachePropertyDefVector(String cachePropertyDefVector) {
setExtProperty("cache.propertydefvector", cachePropertyDefVector);
}
/** Returns the cache value for property def. vector */
public String getCachePropertyDefVector() {
return this.getExtProperty("cache.propertydefvector");
}
/** Sets the value for session failover to the given value */
public void setSessionFailover(String sessionFailover) {
setExtProperty("sessionfailover.enabled", sessionFailover);
}
/** Returns the value for session failover */
public String getSessionFailover() {
return this.getExtProperty("sessionfailover.enabled");
}
/** Sets the value for deleting published project parameters to the given value */
public void setHistoryEnabled(String historyEnabled) {
setExtProperty("history.enabled", historyEnabled);
}
/** Returns the value for deleting published project parameters */
public String getHistoryEnabled() {
return this.getExtProperty("history.enabled");
}
/** Sets the value for http streaming to the given value */
public void setHttpStreaming(String httpStreaming) {
setExtProperty("httpstreaming.enabled", httpStreaming);
}
/** Returns the value for http streaming */
public String getHttpStreaming() {
return this.getExtProperty("httpstreaming.enabled");
}
/** Sets the value for exportpoint nr to the given value */
public void setExportPoint(String exportPoint, int nr) {
setExtProperty("exportpoint." + nr, exportPoint);
}
/** Returns the value for exportpoint nr */
public String getExportPoint(int nr) {
return this.getExtProperty("exportpoint." + nr);
}
/** Sets the value for exportpoint path nr to the given value */
public void setExportPointPath(String exportPointPath, int nr) {
setExtProperty("exportpoint.path." + nr, exportPointPath);
}
/** Returns the value for exportpoint path nr */
public String getExportPointPath(int nr) {
return this.getExtProperty("exportpoint.path." + nr);
}
/** Sets the value for redirect nr to the given value */
public void setRedirect(String redirect, int nr) {
setExtProperty("redirect." + nr, redirect);
}
/** Returns the value for redirect nr */
public String getRedirect(int nr) {
return this.getExtProperty("redirect." + nr);
}
/** Sets the value for redirect location nr to the given value */
public void setRedirectLocation(String redirectLocation, int nr) {
setExtProperty("redirectlocation." + nr, redirectLocation);
}
/** Returns the value for redirect location nr */
public String getRedirectLocation(int nr) {
return this.getExtProperty("redirectlocation." + nr);
}
/** Sets the value for opencms logging to the given value */
public void setLogging(String logging) {
setExtProperty("log", logging);
}
/** Returns the value for opencms logging */
public String getLogging() {
return this.getExtProperty("log");
}
/** Sets the value for the log file to the given value */
public void setLogFile(String logFile) {
setExtProperty("log.file", logFile);
}
/** Returns the value for the log file */
public String getLogFile() {
return this.getExtProperty("log.file");
}
/** Enables/Disables timestamps in the opencms logfile */
public void setLogTimestamp(String logTimestamp) {
setExtProperty("log.timestamp", logTimestamp);
}
/** Indicates if timestamps are displayed in the opencms logfile */
public String getLogTimestamp() {
return this.getExtProperty("log.timestamp");
}
/** Enables/Disables memory state in the log messages */
public void setLogMemory(String logMemory) {
setExtProperty("log.memory", logMemory);
}
/** Indicates if memory state is displayed in the log messages */
public String getLogMemory() {
return this.getExtProperty("log.memory");
}
/** Sets the value for the log date format to the given value */
public void setLogDateFormat(String logDateFormat) {
setExtProperty("log.dateFormat", logDateFormat);
}
/** Returns the value for the log date format */
public String getLogDateFormat() {
return this.getExtProperty("log.dateFormat");
}
/** Sets the value for the log queue maxage to the given value */
public void setLogQueueMaxAge(String logQueueMaxAge) {
setExtProperty("log.queue.maxage", logQueueMaxAge);
}
/** Returns the value for the log queue maxage */
public String getLogQueueMaxAge() {
return this.getExtProperty("log.queue.maxage");
}
/** Sets the value for the log queue maxsize to the given value */
public void setLogQueueMaxSize(String logQueueMaxSize) {
setExtProperty("log.queue.maxsize", logQueueMaxSize);
}
/** Returns the value for the log queue maxsize */
public String getLogQueueMaxSize() {
return this.getExtProperty("log.queue.maxsize");
}
/** Enables/Disables channel names in the log messages */
public void setLoggingChannelName(String loggingChannelName) {
setExtProperty("log.channel", loggingChannelName);
}
/** Indicates if channel names are displayed in the log messages */
public String getLoggingChannelName() {
return this.getExtProperty("log.channel");
}
/** Enables/Disables channel opencms_init in the log messages */
public void setLoggingChannelOpencms_init(String loggingChannelOpencms_init) {
setExtProperty("log.channel.opencms_init", loggingChannelOpencms_init);
}
/** Indicates if channel opencms_init is enabled in the log messages */
public String getLoggingChannelOpencms_init() {
return this.getExtProperty("log.channel.opencms_init");
}
/** Enables/Disables channel opencms_debug in the log messages */
public void setLoggingChannelOpencms_debug(String loggingChannelOpencms_debug) {
setExtProperty("log.channel.opencms_debug", loggingChannelOpencms_debug);
}
/** Indicates if channel opencms_debug is enabled in the log messages */
public String getLoggingChannelOpencms_debug() {
return this.getExtProperty("log.channel.opencms_debug");
}
/** Enables/Disables channel opencms_cache in the log messages */
public void setLoggingChannelOpencms_cache(String loggingChannelOpencms_cache) {
setExtProperty("log.channel.opencms_cache", loggingChannelOpencms_cache);
}
/** Indicates if channel opencms_cache is enabled in the log messages */
public String getLoggingChannelOpencms_cache() {
return this.getExtProperty("log.channel.opencms_cache");
}
/** Enables/Disables channel opencms_info in the log messages */
public void setLoggingChannelOpencms_info(String loggingChannelOpencms_info) {
setExtProperty("log.channel.opencms_info", loggingChannelOpencms_info);
}
/** Indicates if channel opencms_info is enabled in the log messages */
public String getLoggingChannelOpencms_info() {
return this.getExtProperty("log.channel.opencms_info");
}
/** Enables/Disables channel opencms_pool in the log messages */
public void setLoggingChannelOpencms_pool(String loggingChannelOpencms_pool) {
setExtProperty("log.channel.opencms_pool", loggingChannelOpencms_pool);
}
/** Indicates if channel opencms_pool is enabled in the log messages */
public String getLoggingChannelOpencms_pool() {
return this.getExtProperty("log.channel.opencms_pool");
}
/** Enables/Disables channel opencms_streaming in the log messages */
public void setLoggingChannelOpencms_streaming(String loggingChannelOpencms_streaming) {
setExtProperty("log.channel.opencms_streaming", loggingChannelOpencms_streaming);
}
/** Indicates if channel opencms_streaming is enabled in the log messages */
public String getLoggingChannelOpencms_streaming() {
return this.getExtProperty("log.channel.opencms_streaming");
}
/** Enables/Disables channel opencms_critical in the log messages */
public void setLoggingChannelOpencms_critical(String loggingChannelOpencms_critical) {
setExtProperty("log.channel.opencms_critical", loggingChannelOpencms_critical);
}
/** Indicates if channel opencms_critical is enabled in the log messages */
public String getLoggingChannelOpencms_critical() {
return this.getExtProperty("log.channel.opencms_critical");
}
/** Enables/Disables channel opencms_elementcache in the log messages */
public void setLoggingChannelOpencms_elementcache(String loggingChannelOpencms_elementcache) {
setExtProperty("log.channel.opencms_elementcache", loggingChannelOpencms_elementcache);
}
/** Indicates if channel opencms_elementcache is enabled in the log messages */
public String getLoggingChannelOpencms_elementcache() {
return this.getExtProperty("log.channel.opencms_elementcache");
}
/** Enables/Disables channel modules_debug in the log messages */
public void setLoggingChannelModules_debug(String loggingChannelModules_debug) {
setExtProperty("log.channel.modules_debug", loggingChannelModules_debug);
}
/** Indicates if channel modules_debug is enabled in the log messages */
public String getLoggingChannelModules_debug() {
return this.getExtProperty("log.channel.modules_debug");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -