public enum ServerSettingIds extends java.lang.Enum<ServerSettingIds>
| Enum Constant and Description | 
|---|
| COMPILE_TO_JAVACompiles model to java. | 
| CONFIRM_MODEL_UPLOADAsk user for confirmation when uploading model to the server. | 
| CREATE_PROCESS_LOGSCreate process logs. | 
| CUT_LONG_STRINGSCut strings longer that defined in database. | 
| DUMP_MODEL_INSTANCE_ON_EXCEPTIONDump model instance state if exception occurs. | 
| ENABLE_DROP_CREATEEngine setting. | 
| GLOBAL_ADMIN_MESSAGEA message shown to all users on every screen of client application. | 
| HEALTHCHECK_NUMBER_ENGINE_LOOPSHealth check number of engine loops. | 
| INITIAL_MODELS_SQLSQL that returns ids of model that should be loaded on the start of the server. | 
| INTERPRETATION_STRATEGYInterpretation strategy of the engine. | 
| LICENSE_RELOAD_INTERVAL_MINUTESLicense is checked by the server, after it's loaded, it's cached. | 
| LINES_OF_EXPRESSION_LOGGED_IN_EXCEPTIONNumber of lines before and after problem in an expression logged in stack trace. | 
| MAX_NUMBER_ENGINE_LOOPSMax number of engine loops. | 
| REPLACE_UNSUPPORTED_XML_CHARACTERSReplace characters that are not supported in xml. | 
| SERIALIZE_MODEL_UPLOADThe setting used for serialization of model upload. | 
| SKIP_LICENSE_CHECKFor some special cases we need to be able skip license check. | 
| SSO_ENABLEDSSO is enabled. | 
| TIMER_INTERVALSmallest interval for timer service. | 
| USER_ACTIVITY_TRACKINGTracking of users. | 
| USER_ACTIVITY_TRACKING_TIMEOUTTracking of users timeout. | 
| Modifier and Type | Method and Description | 
|---|---|
| static boolean | isValidId(java.lang.String nameToCheck)Validates server setting name. | 
| static ServerSettingIds | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ServerSettingIds[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ServerSettingIds ENABLE_DROP_CREATE
public static final ServerSettingIds SERIALIZE_MODEL_UPLOAD
public static final ServerSettingIds INTERPRETATION_STRATEGY
public static final ServerSettingIds DUMP_MODEL_INSTANCE_ON_EXCEPTION
public static final ServerSettingIds INITIAL_MODELS_SQL
public static final ServerSettingIds LINES_OF_EXPRESSION_LOGGED_IN_EXCEPTION
public static final ServerSettingIds CREATE_PROCESS_LOGS
public static final ServerSettingIds CUT_LONG_STRINGS
public static final ServerSettingIds REPLACE_UNSUPPORTED_XML_CHARACTERS
public static final ServerSettingIds CONFIRM_MODEL_UPLOAD
public static final ServerSettingIds TIMER_INTERVAL
public static final ServerSettingIds COMPILE_TO_JAVA
public static final ServerSettingIds USER_ACTIVITY_TRACKING
public static final ServerSettingIds USER_ACTIVITY_TRACKING_TIMEOUT
public static final ServerSettingIds SSO_ENABLED
public static final ServerSettingIds MAX_NUMBER_ENGINE_LOOPS
public static final ServerSettingIds HEALTHCHECK_NUMBER_ENGINE_LOOPS
public static final ServerSettingIds GLOBAL_ADMIN_MESSAGE
public static final ServerSettingIds LICENSE_RELOAD_INTERVAL_MINUTES
public static final ServerSettingIds SKIP_LICENSE_CHECK
public static ServerSettingIds[] values()
for (ServerSettingIds c : ServerSettingIds.values()) System.out.println(c);
public static ServerSettingIds valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static boolean isValidId(java.lang.String nameToCheck)
nameToCheck - Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.