📄 cmssetup.java
字号:
}
/** Sets the cache value for project to the given value */
public void setCacheProject(String cacheProject) {
setProperties("cache.project",cacheProject);
}
/** Returns the cache value for project */
public String getCacheProject() {
Object temp = m_extProp.get("cache.project");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the cache value for online project to the given value */
public void setCacheOnlineProject(String cacheOnlineProject) {
setProperties("cache.onlineproject",cacheOnlineProject);
}
/** Returns the cache value for online project */
public String getCacheOnlineProject() {
Object temp = m_extProp.get("cache.onlineproject");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the cache value for resource to the given value */
public void setCacheResource(String cacheResource) {
setProperties("cache.resource",cacheResource);
}
/** Returns the cache value for resource */
public String getCacheResource() {
Object temp = m_extProp.get("cache.resource");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the cache value for subres to the given value */
public void setCacheSubres(String cacheSubres) {
setProperties("cache.subres",cacheSubres);
}
/** Returns the cache value for subres */
public String getCacheSubres() {
Object temp = m_extProp.get("cache.subres");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the cache value for property to the given value */
public void setCacheProperty(String cacheProperty) {
setProperties("cache.property",cacheProperty);
}
/** Returns the cache value for property */
public String getCacheProperty() {
Object temp = m_extProp.get("cache.property");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the cache value for property def. to the given value */
public void setCachePropertyDef(String cachePropertyDef) {
setProperties("cache.propertydef",cachePropertyDef);
}
/** Returns the cache value for property def. */
public String getCachePropertyDef() {
Object temp = m_extProp.get("cache.propertydef");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the cache value for property def. vector to the given value */
public void setCachePropertyDefVector(String cachePropertyDefVector) {
setProperties("cache.propertydefvector",cachePropertyDefVector);
}
/** Returns the cache value for property def. vector */
public String getCachePropertyDefVector() {
Object temp = m_extProp.get("cache.propertydefvector");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the value for session failover to the given value */
public void setSessionFailover(String sessionFailover) {
setProperties("sessionfailover.enabled",sessionFailover);
}
/** Returns the value for session failover */
public String getSessionFailover() {
Object temp = m_extProp.get("sessionfailover.enabled");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the value for deleting published project parameters to the given value */
public void setHistoryEnabled(String historyEnabled) {
setProperties("history.enabled",historyEnabled);
}
/** Returns the value for deleting published project parameters */
public String getHistoryEnabled() {
Object temp = m_extProp.get("history.enabled");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the value for http streaming to the given value */
public void setHttpStreaming(String httpStreaming) {
setProperties("httpstreaming.enabled",httpStreaming);
}
/** Returns the value for http streaming */
public String getHttpStreaming() {
Object temp = m_extProp.get("httpstreaming.enabled");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the value for exportpoint nr to the given value */
public void setExportPoint(String exportPoint, int nr) {
setProperties("exportpoint."+nr,exportPoint);
}
/** Returns the value for exportpoint nr */
public String getExportPoint(int nr) {
Object temp = m_extProp.get("exportpoint."+nr);
if(temp != null) {
return temp.toString();
}
else {
return null;
}
}
/** Sets the value for exportpoint path nr to the given value */
public void setExportPointPath(String exportPointPath, int nr) {
setProperties("exportpoint.path."+nr,exportPointPath);
}
/** Returns the value for exportpoint path nr */
public String getExportPointPath(int nr) {
Object temp = m_extProp.get("exportpoint.path."+nr);
if(temp != null) {
return temp.toString();
}
else {
return null;
}
}
/** Sets the value for redirect nr to the given value */
public void setRedirect(String redirect, int nr) {
setProperties("redirect."+nr,redirect);
}
/** Returns the value for redirect nr */
public String getRedirect(int nr) {
Object temp = m_extProp.get("redirect."+nr);
if(temp != null) {
return temp.toString();
}
else {
return null;
}
}
/** Sets the value for redirect location nr to the given value */
public void setRedirectLocation(String redirectLocation, int nr) {
setProperties("redirectlocation."+nr, redirectLocation);
}
/** Returns the value for redirect location nr */
public String getRedirectLocation(int nr) {
Object temp = m_extProp.get("redirectlocation."+nr);
if(temp != null) {
return temp.toString();
}
else {
return null;
}
}
/** Sets the value for opencms logging to the given value */
public void setLogging(String logging) {
setProperties("log",logging);
}
/** Returns the value for opencms logging */
public String getLogging() {
Object temp = m_extProp.get("log");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the value for the log file to the given value */
public void setLogFile(String logFile) {
setProperties("log.file",logFile);
}
/** Returns the value for the log file */
public String getLogFile() {
Object temp = m_extProp.get("log.file");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Enables/Disables timestamps in the opencms logfile */
public void setLogTimestamp(String logTimestamp) {
setProperties("log.timestamp",logTimestamp);
}
/** Indicates if timestamps are displayed in the opencms logfile */
public String getLogTimestamp() {
Object temp = m_extProp.get("log.timestamp");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Enables/Disables memory state in the log messages */
public void setLogMemory(String logMemory) {
setProperties("log.memory",logMemory);
}
/** Indicates if memory state is displayed in the log messages */
public String getLogMemory() {
Object temp = m_extProp.get("log.memory");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the value for the log date format to the given value */
public void setLogDateFormat(String logDateFormat) {
setProperties("log.dateFormat",logDateFormat);
}
/** Returns the value for the log date format */
public String getLogDateFormat() {
Object temp = m_extProp.get("log.dateFormat");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the value for the log queue maxage to the given value */
public void setLogQueueMaxAge(String logQueueMaxAge) {
setProperties("log.queue.maxage",logQueueMaxAge);
}
/** Returns the value for the log queue maxage */
public String getLogQueueMaxAge() {
Object temp = m_extProp.get("log.queue.maxage");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Sets the value for the log queue maxsize to the given value */
public void setLogQueueMaxSize(String logQueueMaxSize) {
setProperties("log.queue.maxsize",logQueueMaxSize);
}
/** Returns the value for the log queue maxsize */
public String getLogQueueMaxSize() {
Object temp = m_extProp.get("log.queue.maxsize");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Enables/Disables channel names in the log messages */
public void setLoggingChannelName(String loggingChannelName) {
setProperties("log.channel",loggingChannelName);
}
/** Indicates if channel names are displayed in the log messages */
public String getLoggingChannelName() {
Object temp = m_extProp.get("log.channel");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Enables/Disables channel opencms_init in the log messages */
public void setLoggingChannelOpencms_init(String loggingChannelOpencms_init) {
setProperties("log.channel.opencms_init",loggingChannelOpencms_init);
}
/** Indicates if channel opencms_init is enabled in the log messages */
public String getLoggingChannelOpencms_init() {
Object temp = m_extProp.get("log.channel.opencms_init");
if(temp != null) {
return temp.toString();
}
else {
return "";
}
}
/** Enables/Disables channel opencms_debug in the log messages */
public void setLoggingChannelOpencms_debug(String loggingChannelOpencms_debug) {
setProperties("log.channel.opencms_debug",loggingChannelOpencms_debug);
}
/** Indicates if channel opencms_debug is enabled in the log messages */
public String getLoggingChannelOpencms_debug() {
Object temp = m_extProp.get("log.channel.opencms_debug");
if(temp != null) {
return temp.toString();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -