Appendix B: Application Properties
This appendix describes all available application properties in alphabetical order.
- cuba.additionalStores
-  
     Defines the names of additional data stores used in the application. Used in all standard blocks. Example: cuba.additionalStores = db1, mem1
- cuba.allowQueryFromSelected
-  
     Allows the generic filter to use sequential filtering mode. See also Sequential Queries. Default value: trueStored in the database. Interface: GlobalConfigUsed in the Web Client and the Middleware blocks. 
- cuba.anonymousLogin
-  
     Login name of the user on behalf of which the anonymous session is created (see cuba.anonymousSessionId). Default value: anonymousStored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.anonymousSessionId
-  
     Defines the UUID of the anonymous user session which is available before user login. This session is always created automatically on the server startup. See also cuba.anonymousLogin. Interface: GlobalConfigUsed in all standard blocks. 
- cuba.automaticDatabaseUpdate
-  
     Determines whether server should run DB update scripts at application start. Default value: falseStored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.availableLocales
-  
     List of supported user interface languages. Property format: {language_name1}|{language_code_1};{language_name2}|{language_code_2};…Example: cuba.availableLocales=French|fr;English|en{language_name}– name displayed in the list of available languages. For example, such lists can be found on the login screen and on the user edit screen.{language_code}– corresponds to language code returned by theLocale.getLanguage()method. Used as a suffix for message pack file names. For example,messages_fr.properties.The first language listed in the cuba.availableLocalesproperty, will be selected in the list of available languages by default, if the list does not contain the user’s operating system language. Otherwise, user’s operating system language will be selected by default.Default value: English|en;Russian|ru;French|frInterface: GlobalConfigUsed in all standard blocks. 
- cuba.backgroundWorker.maxActiveTasksCount
-  
     The maximum number of active background tasks. Default value: 100Interface: WebConfigUsed in the Web Client block. 
- cuba.backgroundWorker.timeoutCheckInterval
-  
     Defines an interval in milliseconds for checking timeouts of background tasks. Default value: 5000Interface: ClientConfigUsed in the Web Client and Desktop Client. 
- cuba.bruteForceProtection.enabled
-  
     Enables a mechanism for the protection against password brute force cracking. Default value: falseStored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.bruteForceProtection.blockIntervalSec
-  
     Blocking interval in seconds after exceeding a maximum number of failed login attempts, if the cuba.bruteForceProtection.enabled property is on. Default value: 60 Stored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.bruteForceProtection.maxLoginAttemptsNumber
-  
     A maximum number of failed login attempts for the combination of user login and IP address, if the cuba.bruteForceProtection.enabled property is on. Default value: 5 Stored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.cluster.enabled
-  
     Enables interaction between Middleware servers in a cluster. See Configuring Interaction between Middleware Servers for details. Default value: falseUsed in the Middleware block. 
- cuba.cluster.messageSendingQueueCapacity
-  
     Limits the queue of middleware cluster messages. When the queue exceeds its maximum size, new messages are rejected. Default value: Integer.MAX_VALUEUsed in the Middleware block. 
- cuba.confDir
-  
     Defines location of the configuration folder for an application block. Default value for the Middleware, Web Client and Web Portal blocks: ${catalina.home}/conf/${cuba.webContextName}In case of a standard Tomcat deployment, this points to a sub-folder with the name of the current web app in the tomcat/conffolder, for example, tomcat/conf/app-core.Default value for the Desktop Client block: ${cuba.desktop.home}/conf.Interface: GlobalConfigUsed in all standard blocks. 
- cuba.connectionReadTimeout
-  
     Sets Middleware connection timeout for client blocks. Non-negative value is passed to the setReadTimeout()method ofURLConnection.See also cuba.connectionTimeout. Default value: -1Used in the Web Client, Web Portal and Desktop Client blocks. 
- cuba.connectionTimeout
-  
     Sets Middleware connection timeout for client blocks. Non-negative value is passed to the setConnectTimeout()method ofURLConnection.See also cuba.connectionReadTimeout. Default value: -1Used in the Web Client, Web Portal and Desktop Client blocks. 
- cuba.connectionUrlList
-  
     Sets Middleware server connection URL for client blocks. Property value should contain one or more comma separated URLs http[s]://host[:port]/app-core, wherehostis the server hostname,portis the server port, andapp-coreis the name of the the Middleware block web application. For example:cuba.connectionUrlList = http://localhost:8080/app-coreWhen using a cluster of Middleware servers, their addresses should be listed, separated with commas: cuba.connectionUrlList = http://server1:8080/app-core,http://server2:8080/app-coreThe order of servers in the list, determines the order in which the client will attempt to send requests. In the example above, the client will send request to server1first, and if it is inaccessible, toserver2. If a request toserver2completes successfully, the client will useserver2as the primary server and will continue working with it. Restarting the client will reset the list to the initial value. Uniform distribution of clients across a cluster of servers can be achieved by using the cuba.randomServerPriority property.See also cuba.useLocalServiceInvocation. Interface: ClientConfigUsed in the Web Client, Web Portal and Desktop Client blocks. 
- cuba.creditsConfig
-  
     Additive property defining a credits.xmlfile containing information about the software components used by the application.The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. Used in the Web Client and the Desktop Client blocks. Example: cuba.creditsConfig = +com/company/base/credits.xml
- cuba.crossDataStoreReferenceLoadingBatchSize
-  
     Batch size for loading related entities from different data stores by DataManager. Default value: 50Stored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.dataManagerChecksSecurityOnMiddleware
-  
     Indicates that DataManager should apply security restrictions when invoked on the middleware. Default value: falseStored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.dataSourceJndiName
-  
     Defines JNDI name of the javax.sql.DataSourceobject used for connection to the application database.Default value: java:comp/env/jdbc/CubaDSUsed in the Middleware block. 
- cuba.dataDir
-  
     Defines the location of the work folder for an application block. Default value for the Middleware, Web Client and Web Portal blocks: ${catalina.home}/work/${cuba.webContextName}In case of a standard Tomcat deployment, this points to a sub-folder with the name of the current web-app inside the tomcat/workfolder, for example,tomcat/work/app-core.Default value for the Desktop Client block: ${cuba.desktop.home}/work.Interface: GlobalConfigUsed in all standard blocks. 
- cuba.dbDir
-  
     Defines the location of the database scripts folder. Default value: ${catalina.home}/webapps/${cuba.webContextName}/WEB-INF/db, which points to theWEB-INF/dbsub-folder of the current web-app folder in Tomcat.Interface: ServerConfigUsed in the Middleware block. 
- cuba.dbmsType
-  
     Defines the DBMS type. Affects the choice of DBMS integration interface implementations and the search for database init and update scripts together with cuba.dbmsVersion. See DBMS Types for details. Default value: hsqlUsed in the Middleware block. 
- cuba.dbmsVersion
-  
     An optional property that sets the database version. Affects the choice of DBMS integration interface implementations and the search for database init and update scripts together with cuba.dbmsType. See DBMS Types for details. Default value: noneUsed in the Middleware block. 
- cuba.defaultQueryTimeoutSec
-  
     Defines default transaction timeout. Default value: 0(no timeout).Stored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.desktop.useServerTime
-  
     Enables adjustment of the time provided by the TimeSource interface of the Desktop Client block.The time will approximately equal to the time of the Middleware the client is connected to. Default value: trueInterface: DesktopConfigUsed in the Desktop Client block. 
- cuba.desktop.useServerTimeZone
-  
     Enables adjustment of the Desktop Client block’s JVM timezone to the timezone of the Middleware the client is connected to. Default value: trueInterface: DesktopConfigUsed in the Desktop Client block. 
- cuba.disableOrmXmlGeneration
-  
     Disables automatic generation of the orm.xmlfile for extended entities.Default value: false(orm.xmlwill be created automatically if any extended entity exist).Used in the Middleware block. 
- cuba.dispatcherSpringContextConfig
-  
     Additive property defining a dispatcher-spring.xml file of a client block. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. Used in the Web Client and Web Portal blocks. Example: cuba.dispatcherSpringContextConfig = +com/company/sample/portal-dispatcher-spring.xml
- cuba.download.directories
-  
     Defines a list of folders from which the Middleware files can be downloaded from via com.haulmont.cuba.core.controllers.FileDownloadController. For example, file downloading is utilized by the server log display mechanism found in the Administration > Server Log web client screen.The folder list should be separated with semicolon. Default value: ${cuba.tempDir};${cuba.logDir}(files can be downloaded from the temporary folder and the logs folder).Used in the Middleware block. 
- cuba.email.*
-  
     Email sending parameters described in Configuring Email Sending Parameters. 
- cuba.fileStorageDir
-  
     Defines file storage folder structure roots. For more information, see Standard File Storage Implementation. Default value: nullUsed in the Middleware block. 
- cuba.entityAttributePermissionChecking
-  
     If set to false, turns off checking entity attribute permissions on Middleware.Default value: falseStored in the database. Used in the Middleware block. 
- cuba.entityLog.enabled
-  
     Activates the entity log mechanism. Default value: trueStored in the database. Interface: EntityLogConfigUsed in the Middleware block. 
- cuba.groovyEvaluationPoolMaxIdle
-  
     Sets the maximum number of unused compiled Groovy expressions in the pool during Scripting.evaluateGroovy()method execution. It is recommended to increment this parameter when intensive execution of Groovy expressions is required, for example, for a large number of application folders.Default value: 8 Used in all standard blocks. 
- cuba.groovyEvaluatorImport
-  
     Defines a list of classes imported by all Groovy expressions executed through Scripting. Class names in the list should be separated with commas or semicolons. Default value: com.haulmont.cuba.core.global.PersistenceHelperUsed in all standard blocks. Example: cuba.groovyEvaluatorImport = com.haulmont.cuba.core.global.PersistenceHelper,com.abc.sales.CommonUtils
- cuba.gui.genericFilterChecking
-  
     Influences the behavior of the Filter component. When set to true, does not allow to apply a filter without specifying parameters.Default value: falseStored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
- cuba.gui.genericFilterControlsLayout
-  
     Sets a template for Filter controls layout. Each control has the following format: [component_name | options-comma-separated], e.g.[pin | no-caption, no-icon].Available controls: -  filters_popup- popup button for selecting a filter, combined with the Search button.
-  filters_lookup- lookup field for selecting a filter. The Search button should be added as a separate control.
-  search- Search button. Do not add if usefilters_popup.
-  add_condition- link button for adding new conditions.
-  spacer- an empty space between controls.
-  settings- Settings button. Specify action names that should be displayed in Settings popup as options (see below).
-  max_results- group of controls for setting maximum number of records to be selected.
-  fts_switch- checkbox for switching to the Full-Text Search mode.
 The following actions can be used as options of the settingscontrol:save,save_as,edit,remove,pin,make_default,save_search_folder,save_app_folder.The actions can also be used as independent controls outside of the Settings popup. In this case, they can have the following options: -  no-icon- if an action button should be dispalyed without an icon. For example:[save | no-icon].
-  no-caption- if an action button should be dispalyed without a caption. For example:[pin | no-caption].
 Default value: [filters_popup] [add_condition] [spacer] \ [settings | save, save_as, edit, remove, make_default, pin, save_search_folder, save_app_folder] \ [max_results] [fts_switch]Stored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
-  
- cuba.gui.genericFilterManualApplyRequired
-  
     Influences the behavior of the Filter component. When set to true, the screens containing filters will not load the corresponding datasources automatically, until user clicks the filter Apply button.The value of cuba.gui.genericFilterManualApplyRequiredis ignored, when opening browser screens using an application or search folders, i.e. the filter is applied. The filter will not be applied, if theapplyDefaultvalue for a folder is explicitly set tofalse.Default value: falseStored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
- cuba.gui.genericFilterMaxResultsOptions
-  
     Defines the options for the Show rows drop-down list of the Filter component. NULL option indicates that the list should contain an empty value. Default value: NULL, 20, 50, 100, 500, 1000, 5000Stored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
- cuba.gui.genericFilterColumnsCount
-  
     Defines the number of columns with conditions for the Filter component. Default value: 3Stored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
- cuba.gui.genericFilterConditionsLocation
-  
     Defines the location of the conditions panel in the Filter component. Two locations are available: top(above the filter control elements) andbottom(below the filter control elements).Default value: topStored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
- cuba.gui.genericFilterPopupListSize
-  
     Defines the number of items displayed in the popup list of the Search button. If the number of filters exceeds this value, Show more… action is added to the popup list. The action opens a new dialog window with a list of all possible filters. Default value: 10Stored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
- cuba.gui.layoutAnalyzerEnabled
-  
     Allows you to disable the screen analyzer available in the context menu of the main window tabs and the modal window captions. Default value: trueStored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
- cuba.gui.lookupFieldPageLength
-  
     Defines the default number of options on one page of the drop-down list in the LookupField and LookupPickerField components. It can be overridden for a concrete instance of the component using the pageLength XML attribute. Default value: 10 Stored in the database. Interface: ClientConfigUsed in the Web Client. 
- cuba.gui.manualScreenSettingsSaving
-  
     If the property is set to true, screens will not save their settings automatically on close. In this mode, a user can save or reset settings using the context menu which appears on clicking a screen tab or a dialog window caption.Default value: falseInterface: ClientConfigStored in the database. Used in the Web Client and Desktop Client blocks. 
- cuba.gui.showIconsForPopupMenuActions
-  
     Enables displaying action icons in Table context menu and PopupButton items. Default value: falseStored in the database. Interface: ClientConfigUsed in the Web Client block. 
- cuba.gui.systemInfoScriptsEnabled
-  
     Enables the display of SQL-scripts for creating / updating / retrieving an entity instance in the System Information window. Such scripts actually show the contents of the database rows that store the selected entity instance, regardless of security settings that may deny viewing of some attributes. That is why it is reasonable to revoke the CUBA / Generic UI / System Information specific permission for all user roles except the administrators, or set the cuba.gui.systemInfoScriptsEnabledtofalsefor the whole application.Default value: trueStored in the database. Interface: ClientConfigUsed in the Web Client and the Desktop Client blocks. 
- cuba.gui.useSaveConfirmation
-  
     Defines the layout of the dialog displayed when a user attempts closing a screen with unsaved changes in datasources. Value of truecorresponds to a layout with three possible actions: Save changes, Don’t Save, Don’t close the screen.The value of falsecorresponds to a form with two options: Close the screen without saving changes, Don’t close the screen.Default value: trueStored in the database. Interface: ClientConfigUsed in the Web Client and Desktop Client blocks. 
- cuba.httpSessionExpirationTimeoutSec
-  
     Defines HTTP-session inactivity timeout in seconds. Default value: 1800Interface: WebConfigUsed in the Web Client block. TipIt is recommended to use the same values for cuba.userSessionExpirationTimeoutSec and cuba.httpSessionExpirationTimeoutSecproperties.
- cuba.idp.serviceProviderLogoutUrls
-  
     For a SSO Identity Provider, sets a list of URLs that are used to notify service providers about user logout or session expiration. The values must be separated by commas. For example: cuba.idp.serviceProviderLogoutUrls = http://foo:8081/app/dispatch/idpc/logout,http://bar:8082/app/dispatch/idpc/logoutInterface: IdpConfigUsed in the Web Client block. 
- cuba.idp.serviceProviderUrls
-  
     For a SSO Identity Provider, sets a list of service provider URLs. The values must be separated by commas. Trailing '/' in URLs are required. For example: cuba.idp.serviceProviderUrls = http://foo:8081/app/,http://bar:8082/app/Interface: IdpConfigUsed in the Web Client block. 
- cuba.idp.sessionExpirationTimeoutSec
-  
     For a SSO Identity Provider, sets a timeout of IDP session inactivity in seconds. Default value: 18000 (5 hours) Interface: IdpConfigUsed in the Web Client block. 
- cuba.idp.sessionExpirationCheckIntervalMs
-  
     For a SSO Identity Provider, sets an interval of checking IDP session inactivity in milliseconds. Default value: 30000 (30 sec) Interface: IdpConfigUsed in the Web Client block. 
- cuba.idp.ticketExpirationTimeoutSec
-  
     For a SSO Identity Provider, sets a timeout of SSO ticket in seconds. Default value: 180 (3 min) Interface: IdpConfigUsed in the Web Client block. 
- cuba.idp.trustedServicePassword
-  
     For a SSO Identity Provider, sets a password which is used in server-to-server communication between SP and IDP. Interface: IdpConfigUsed in the Web Client block. 
- cuba.inMemoryDistinct
-  
     Enables in-memory filtering of duplicate records instead of using select distinctat the database level. Used by the DataManager.Default value: falseStored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.jmxUserLogin
-  
     Defines a user login that should be used for system authentication. Default value: adminUsed in the Middleware block. 
- cuba.localeSelectVisible
-  
     Disables the user interface language selection when logging in. If cuba.localeSelectVisibleis set to false, the locale for a user session is selected in the following way:-  If the Userentity instance has alanguageattribute defined, the system will use this language.
-  If the user’s operating system language is included in the list of available locales (set by the cuba.availableLocales property), the system will use this language. 
-  Otherwise, the system will use the first language defined in the cuba.availableLocales property. 
 Default value: trueInterface: GlobalConfigUsed in all standard blocks. 
-  
- cuba.logDir
-  
     Defines the location of the log folder for an application block. Default value for the Middleware, Web Client and Web Portal blocks: ${catalina.home}/logsIn case of a standard Tomcat deployment, this property points to the tomcat/logsfolder.Default value for the Desktop Client block: ${cuba.desktop.home}/logs.Interface: GlobalConfigUsed in all standard blocks. 
- cuba.mainMessagePack
-  
     Additive property defining a main message pack for an application block. The value may include a single pack or a list of packs separated with spaces. Used in all standard blocks. Example: cuba.mainMessagePack = +com.company.sample.gui com.company.sample.web
- cuba.maxUploadSizeMb
-  
     Maximum file size (in megabytes) that can be uploaded using the FileUploadField and FileMiltiUploadField components. Default value: 20Stored in the database. Interface: ClientConfigUsed in the Web Client and the Desktop Client blocks. 
- cuba.metadataConfig
-  
     Additive property defining a metadata.xml file. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. Used in all standard blocks. Example: cuba.metadataConfig = +com/company/sample/metadata.xml
- cuba.passwordEncryptionModule
-  
     Defines the name of the bean used for user password hashing. Default value: cuba_Sha1EncryptionModuleUsed in all standard blocks. 
- cuba.passwordPolicyEnabled
-  
     Enables password policy enforcement. If the property is set to true, all new user passwords will be checked according to the cuba.passwordPolicyRegExp property.Default value: falseStored in the database. Interface: ClientConfigUsed in the client blocks: Web Client, Web Portal, Desktop Client. 
- cuba.passwordPolicyRegExp
-  
     Defines a regular expression used by the password checking policy. Default value: ((?=.*\\d)(?=.*\\p{javaLowerCase}) (?=.*\\p{javaUpperCase}).{6,20})The expression above ensures that password contains from 6 to 20 characters, uses numbers and Latin letters, contains at least one number, one lower case and one upper case letter. More information on regular expression syntax is available at https://en.wikipedia.org/wiki/Regular_expression and http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html. Stored in the database. Interface: ClientConfigUsed in the client level blocks: Web Client, Web Portal, Desktop Client. 
- cuba.permissionConfig
-  
     Additive property defining a permissions.xml file. Used in the Web Client and Desktop Client blocks. Example: cuba.permissionConfig = +com/company/sample/web-permissions.xml
- cuba.persistenceConfig
-  
     Additive property defining a persistence.xml file. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. Used in all standard blocks. Example: cuba.persistenceConfig = +com/company/sample/persistence.xml
- cuba.portal.anonymousUserLogin
-  
     Defines a user login that should be used for anonymous session in the Web Portal block. The user with the specified login should exist in the security subsystem and should have the required permissions. User password is not required, because anonymous portal sessions are created via the loginTrusted() method with the password defined in the cuba.trustedClientPassword property. Interface: PortalConfigUsed in the Web Portal block. 
- cuba.queryCache.enabled
-  
     If set to false, the query cache functionality is disabled.Default value: trueInterface: QueryCacheConfigUsed in the Middleware block. 
- cuba.queryCache.maxSize
-  
     Maximum number of query cache entries. A cache entry is defined by the query text, query parameters, paging parameters and soft deletion. As the cache size grows close to the maximum, the cache evicts entries that are less likely to be used again. Default value: 100 Interface: QueryCacheConfigUsed in the Middleware block. 
- cuba.randomServerPriority
-  
     Enables random selection of a Middleware server to connect to in a cluster, to ensure uniform distribution of clients between servers. See also the cuba.connectionUrlList property. Default value: falseUsed in the Web Client, Web Portal, Desktop Client blocks. 
- cuba.remotingSpringContextConfig
-  
     Additive property defining a remoting-spring.xml file of the Middleware block. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. Used in the Middleware block. Example: cuba.remotingSpringContextConfig = +com/company/sample/remoting-spring.xml
- cuba.rest.productionMode
-  
     Activates the REST API production mode that does not return exception text to client. Default value: falseInterface: RestConfigUsed in the Web Client and Web Portal block. 
- cuba.rest.apiVersion
-  
     Defines the REST API version. If the value is set to 1, the REST API of the platform versions before 5.4 is used. Setting the value to2enables the new REST API version with support for service calls.Default value: 2Interface: RestConfigUsed in the Web Client and Web Portal block. 
- cuba.restApiUrl
-  
     URL to the application’s REST API. Default value: http://localhost:8080/app-portal/apiStored in the database. Interface: GlobalConfigCan be used in all standard blocks. 
- cuba.restServicesConfig
-  
     Additive property defining a file that contains a list of services available for application REST API calls. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. The XSD of the file is available at http://schemas.haulmont.com/cuba/6.4/restapi-service-v2.xsd. Default value: none Example: cuba.restServicesConfig = +com/company/sample/app-rest-services.xmlUsed in the Web Client and Web Portal block. 
- cuba.rest.allowedOrigins
-  
     Defines a comma-separated list of origins that can access the REST API Version 2. Default value: *Used in the Web Client and Web Portal blocks. 
- cuba.rest.anonymousEnabled
-  
     Enables an anonymous access to the REST API Version 2 endpoints. Default value: falseUsed in the Web Client and Web Portal blocks. 
- cuba.rest.client.id
-  
     Defines an identifier of the REST API client. Client in this case is not a platform user, but an application (some web portal or mobile app) that uses REST API Version 2. Client credentials are used for basic authentication when accessing the REST API token endpoint. Default value: clientUsed in the Web Client and Web Portal blocks. 
- cuba.rest.client.secret
-  
     Defines a password of the REST API client. Client in this case is not a platform user, but an application (some web portal or mobile app) that uses REST API Version 2. Client credentials are used for basic authentication when accessing the REST API token endpoint. Default value: secretUsed in the Web Client and Web Portal blocks. 
- cuba.rest.client.tokenExpirationTimeSec
-  
     Defines a REST API Version 2 token expiration timeout for the default client in seconds. Default value: 43200(12 hours)Used in the Web Client and Web Portal blocks. 
- cuba.rest.maxUploadSize
-  
     Maximum file size (in bytes) that can be uploaded with the REST API Version 2. Default value: 20971520(20 Mb)Used in the Web Client and Web Portal blocks. 
- cuba.rest.servicesConfig
-  
     Additive property defining a file that contains a list of services available for application REST API Version 2 calls. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. The XSD of the file is available at http://schemas.haulmont.com/cuba/6.4/rest-services-v2.xsd. Default value: none Example: cuba.rest.servicesConfig = +com/company/sample/app-rest-services.xmlUsed in the Web Client and Web Portal blocks. 
- cuba.rest.queriesConfig
-  
     Additive property defining a file that contains a list of JPQL queries available for application REST API Version 2 calls. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. The XSD of the file is available at http://schemas.haulmont.com/cuba/6.4/rest-queries.xsd. Default value: none Example: cuba.rest.queriesConfig = +com/company/sample/app-rest-queries.xmlUsed in the Web Client and Web Portal blocks. 
- cuba.schedulingActive
-  
     Enables the CUBA scheduled tasks mechanism. Default value: falseStored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.serialization.impl
-  
     Specifies an implementation of the Serializationinterface which is used for serialization of objects transferred between the application blocks. The platform contains two implementations:-  StandardSerialization- standard Java serialization.
-  KryoSerialization- serialization based on the Kryo framework.
 Default value: com.haulmont.cuba.core.sys.serialization.StandardSerializationUsed in all standard blocks. 
-  
- cuba.springContextConfig
-  
     Additive property defining a spring.xml file in all standard application blocks. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. Used in all standard blocks. Example: cuba.springContextConfig = +com/company/sample/spring.xml
- cuba.supportEmail
-  
     Specifies an email address to which exception reports from the default exception handler screen, as well as user messages from the Help > Feedback screen will be sent. Report button in the exception handler screen will be hidden, if this property is set to an empty string. In order to successfully send emails, the parameters described in Configuring Email Sending Parameters must also be configured. Default value: empty string. Stored in the database. Interface: WebConfigUsed in the Web Client block. 
- cuba.tempDir
-  
     Defines the location of the temporary directory for an application block. The default value for the Middleware, Web Client, Web Portal blocks: ${catalina.home}/temp/${cuba.webContextName}In case of a standard Tomcat deployment, this points to a sub-folder with the name of the current web-app in the tomcat/tempfolder, for example,tomcat/temp/app-core.The default value for the Desktop Client block: ${cuba.desktop.home}/temp.Interface: GlobalConfigUsed in all standard blocks. 
- cuba.themeConfig
-  
     Defines a set of *-theme.propertiesfiles that store theme variables, such as default popup window dimensions and input field width.The property takes a list of files separated by spaces. The files are loaded as defined by the Resources interface. Default value for Web Client: havana-theme.properties halo-theme.propertiesDefault value for Desktop Client: nimbus-theme.propertiesUsed in the Web Client and Desktop Client block. 
- cuba.triggerFilesCheck
-  
     Enables the processing of bean invocation trigger files. The trigger file is a file that is placed in the triggerssubdirectory of the application block’s temporary directory. The trigger file name consists of two parts separated with a period. The first part is the bean name, the second part is the method name of the bean to invoke. For example:cuba_Messages.clearCache. The trigger files handler monitors the folder for new trigger files, invokes the appropriate methods and then removes the files.By default, the trigger files processing is configured in the cuba-web-spring.xmlfile and performed for the Web Client block only. At the project level, the processing for other modules can be performed by periodically invoking theprocess()method of thecuba_TriggerFilesProcessorbean.Default value: trueUsed in blocks with the configured processing, default is Web Client. 
- cuba.triggerFilesCheckInterval
-  
     Defines the period in milliseconds of trigger files processing if the cuba.triggerFilesCheck is set to true.Default value: 5000Used in blocks with the configured processing, default is Web Client. 
- cuba.trustedClientPassword
-  
     Defines password used by the LoginService.loginTrusted()method. The Middleware layer can authenticate users who connect via the trusted client block without checking the user password.This property is used when user passwords are not stored in the database, while the client block performs the actual authentication itself. For example, by integrating with Active Directory. Interfaces: ServerConfig,WebAuthConfig,PortalConfigUsed in blocks: Middleware, Web Client, Web Portal. 
- cuba.trustedClientPermittedIpList
-  
     Defines the list of IP addresses, from which the invocation of the LoginService.loginTrusted()method is allowed. For example:cuba.trustedClientPermittedIpList = 127.0.0.1, 10.17.*.*Default value: 127.0.0.1Interfaces: ServerConfigUsed in the Middleware block. 
- cuba.uniqueConstraintViolationPattern
-  
     A regular expression which is used to find out that the exception is caused by a database unique constraint violation. The first or second group of the expression must return the constraint name. For example: ERROR: duplicate key value violates unique constraint "(.+)"The constraint name can be used to display a localized message that indicates what entity is concerned. For this the main message pack should contain keys equal to constraint names. For example: IDX_SEC_USER_UNIQ_LOGIN = A user with the same login already existsThis property allows you to define a reaction to unique constraint violations depending on DBMS locale and version. Default value is returned by the PersistenceManagerService.getUniqueConstraintViolationPattern()method for the current DBMS.Can be defined in the database. Used in all client blocks. 
- cuba.useCurrentTxForConfigEntityLoad
-  
     Enables using current transaction, if there is one at the moment, for loading entity instances via the configuration interfaces. This could have a positive impact on performance. Otherwise, a new transaction is always created and committed, and the detached instances are returned. Default value: falseUsed in the Middleware block. 
- cuba.useInnerJoinOnClause
-  
     Indicates that EclipseLink ORM will use JOIN ONclause for inner joins instead of conditions inWHEREclause.Default value: false Used in the Middleware block. 
- cuba.useLocalServiceInvocation
-  
     When set to true, and Tomcat fast deployment is used, the Web Client and Web Portal blocks invoke the Middleware services locally, bypassing the network stack, which has a positive impact on system performance. This property should be set to false for all other deployment options.Default value: falseUsed in the Web Client and Web Portal blocks. 
- cuba.useReadOnlyTransactionForLoad
-  
     Indicates that all loadmethods of DataManager use read-only transactions.Default value: trueStored in the database. Interface: ServerConfigUsed in the Middleware block. 
- cuba.user.fullNamePattern
-  
     Defines the full name pattern for user. Default value: {FF| }{LL}The full name pattern can be formed from the user’s first, last and middle names. The following rules apply to the pattern: -  The pattern parts are separated by {}
-  The pattern inside {}must contain one of the following characters followed by the|character without any spaces:LL– long form of user’s last name (Smith)L– short form of user’s last name (S)FF– long form of user’s first name (John)F– short form of user’s first name (J)MM– long form of user’s middle name (Paul)M– short form of user’s middle name (P)
-  The |character can be followed by any symbols including spaces.
 Used in the Web Client and Desktop Client blocks. 
-  
- cuba.user.namePattern
-  
     Defines the display name pattern for the Userentity. The display name is used in different places, including the upper right corner of the system’s main window.Default value: {1} [{0}]{0}is substituted with theloginattribute,{1}– with thenameattribute.Used in the Middleware, Web Client and Desktop Client blocks. 
- cuba.userSessionExpirationTimeoutSec
-  
     Defines the user session expiration timeout in seconds. Default value: 1800Interface: ServerConfigUsed in the Middleware block. TipIt is recommended to use the same values for cuba.userSessionExpirationTimeoutSecand cuba.httpSessionExpirationTimeoutSec.
- cuba.userSessionProviderUrl
-  
     Defines the Middleware block URL used for logging users in. This parameter should be set in additional middleware blocks that execute client requests, but do not share the user session cache. If there is no required session in the local cache at the start of the request, this block invokes the LoginService.getSession()method at the specified URL, and caches the retrieved session.Interface: ServerConfigUsed in the Middleware block. 
- cuba.viewsConfig
- cuba.webAppUrl
-  
     Defines URL of the Web Client application. In particular, used to generate external application screen links, as well as by the ScreenHistorySupportclass.Default value: http://localhost:8080/appStored in the database. Interface: GlobalConfigCan be used in all standard blocks. 
- cuba.windowConfig
-  
     Additive property defining a screens.xml file. The file is loaded using the Resources interface, so it can be located in classpath or in the configuration directory. Used in the Web Client and Desktop Client blocks. Example: cuba.windowConfig = +com/company/sample/web-screens.xml
- cuba.web.allowHandleBrowserHistoryBack
-  
     Enables handling of browser Back button in the application if the login and/or main window implements the CubaHistoryControl.HistoryBackHandlerinterface. If the property is true, the standard browser behavior is replaced with this method invocation.See Web Client Specifics. Default value: trueInterface: WebConfigUsed in the Web Client block. 
- cuba.web.appFoldersRefreshPeriodSec
-  
     Defines application folders refresh period in seconds. Default value: 180Interface: WebConfigUsed in the Web Client block. 
- cuba.web.appWindowMode
-  
     Determines the initial mode for the main application window – tabbed or single screen ( TABBEDorSINGLErespectively). In single screen mode, screens opened in theNEW_TABmodewill replace the current screen, instead of opening a new tab. This can be useful for simple applications and inexperienced users.The user is able to change the mode later, using the Help > Settings screen. Default value: TABBEDInterface: WebConfigUsed in the Web Client block. 
- cuba.web.externalAuthentication
-  
     Indicates that the authentication is done through an external mechanism like LDAP or SSO Identity Provider. See also cuba.web.externalAuthenticationProviderClass. Default value: falseInterface: WebAuthConfigUsed in the Web Client block. 
- cuba.web.externalAuthenticationProviderClass
-  
     A class implementing the CubaAuthProviderinterface which is used when cuba.web.externalAuthentication is set totrue.See Integration with LDAP and Single-Sign-On for CUBA Applications sections for examples. Interface: WebAuthConfigUsed in the Web Client block. 
- cuba.web.foldersPaneDefaultWidth
-  
     Defines default width (in pixels) for the folders panel. Default value: 200Interface: WebConfigUsed in the Web Client block. 
- cuba.web.foldersPaneEnabled
-  
     Enables the folders panel functionality. Default value: falseInterface: WebConfigUsed in the Web Client block. 
- cuba.web.foldersPaneVisibleByDefault
-  
     Determines whether the folders panel should be expanded by default. Default value: falseInterface: WebConfigUsed in the Web Client block. 
- cuba.web.idp.baseUrl
-  
     For a SSO Service Provider, sets the URL of an Identity Provider. Standard CUBA IDP uses the idp/path (the trailing/is requred).For example: cuba.web.idp.baseUrl = http://main:8080/app/idp/Interface: WebAuthConfigUsed in the Web Client block. 
- cuba.web.idp.trustedServicePassword
-  
     For a SSO Service Provider, sets a password which is used in server-to-server communication between SP and IDP. Must be equal to cuba.idp.trustedServicePassword. Interface: WebAuthConfigUsed in the Web Client block. 
- cuba.web.linkHandlerActions
-  
     Defines a list of URL commands handled by the LinkHandlerbean. See Screen Links for more information.The elements should be separated with the |character.Default value: open|oInterface: WebConfigUsed in the Web Client block. 
- cuba.web.loginDialogDefaultUser
-  
     Defines default user name, which will be automatically populated in the login screen. This is very convenient during development. This property should be set to <disabled>value in production environment.Default value: adminInterface: WebConfigUsed in the Web Client block. 
- cuba.web.loginDialogDefaultPassword
-  
     Defines default user password, which will be automatically populated in the login screen. This is very convenient during development. This property should be set to <disabled>value in production environment.Default value: adminInterface: WebConfigUsed in the Web Client block. 
- cuba.web.loginDialogPoweredByLinkVisible
-  
     Set to falseto hide the "powered by CUBA Platform" link on the login dialog.Default value: trueInterface: WebConfigUsed in the Web Client block. 
- cuba.web.maxTabCount
-  
     Defines the maximum number of tabs that can be opened in the main application window. The value of 0disables this limitation.Default value: 7Interface: WebConfigUsed in the Web Client block. 
- cuba.web.productionMode
-  
     Allows you to completely disable opening the Vaadin developer console in browser by adding ?debugto the application URL, and, therefore, disabling the JavaScript debug mode and reducing the amount of server information available from the browser.Default value: falseInterface: WebConfigUsed in the Web Client block. 
- cuba.web.pushEnabled
-  
     Allows you to completely disable server push. The Background Tasks mechanism will not work in this case. Default value: trueInterface: WebConfigUsed in Web Client. 
- cuba.web.pushLongPolling
-  
     Enables switching to long polling instead of WebSocket for server push implementation. Default value: falseInterface: WebConfigUsed in Web Client. 
- cuba.web.rememberMeEnabled
-  
     Enables displaying Remember Me checkbox in the standard login screen of the web client. Default value: trueInterface: WebConfigUsed in Web Client. 
- cuba.web.resourcesRoot
-  
     Sets a directory for loading files to display by Embedded component. For example: cuba.web.resourcesRoot = ${cuba.confDir}/resourcesDefault value: nullInterface: WebConfigUsed in Web Client. 
- cuba.web.showBreadCrumbs
-  
     Enables hiding of the breadcrumbs panel which normally appears on top of the main window working area. Default value: trueInterface: WebConfigUsed in the Web Client block. 
- cuba.web.showFolderIcons
-  
     Enables the folders panel icons. When enabled, the following application theme files are used: -  icons/app-folder-small.png– for application folders.
-  icons/search-folder-small.png– for search folders.
-  icons/set-small.png– for record sets.
 Default value: falseInterface: WebConfigUsed in the Web Client block. 
-  
- cuba.web.table.cacheRate
-  
     Adjusts Table caching in the web browser. The amount of cached rows will be cacheRatemultiplied with pageLength both below and above visible area.Default value: 2Interface: WebConfigUsed in the Web Client block. 
- cuba.web.table.pageLength
-  
     Sets the number of rows to be fetched from the server into the web browser when Table is rendered first time on refresh. See also cuba.web.table.cacheRate. Default value: 15Interface: WebConfigUsed in the Web Client block. 
- cuba.web.theme
-  
     Defines the name of the theme used as default for the web client. See also cuba.themeConfig. Default value: havanaInterface: WebConfigUsed in the Web Client block. 
- cuba.web.useFontIcons
-  
     If this property is enabled for Halo theme, Font Awesome glyphs will be used for standard actions and platform screens instead of images. The correspondence between the name in the icon attribute of a visual component or action and font element is defined in the halo-theme.propertiesfile of the platform. Keys withcuba.web.iconsprefixes correspond to icon names, and their values - tocom.vaadin.server.FontAwesomeenumeration constants. For example, a font element for the standardcreateaction is defined as follows:cuba.web.icons.create.png = FILE_ODefault value: trueInterface: WebConfigUsed in the Web Client block. 
- cuba.web.useInverseHeader
-  
     Controls the web client application header for Halo theme and its inheritors. If true, the header will be dark (inverse), iffalse- the header takes the colour of the main application background.This property is ignored in case $v-support-inverse-menu: false;property is set in the application theme. This makes sense for a dark theme, if the user has the option to choose between a light and a dark theme. In this case, the header will be inverse for the light theme, and the same as the main background in the dark theme. Default value: trueInterface: WebConfigUsed in the Web Client block. 
- cuba.web.viewFileExtensions
-  
     Defines a list of file extensions displayed in the browser when downloading the file using ExportDisplay.show(). The|character should be used to separate the list items.Default value: htm|html|jpg|png|jpeg|pdfInterface: WebConfigUsed in the Web Client block. 
- cuba.webContextName
-  
     Defines the web application context name. It is usually equivalent to the name of the directory or WAR-file containing this application block. Interface: GlobalConfigUsed in blocks: Middleware, Web Client, Web Portal. For example, for the Middleware block, located in tomcat/webapps/app-coreand available athttp://somehost:8080/app-core, the property should be set to the following value:cuba.webContextName = app-core
- cuba.webHostName
-  
     Defines the host name of the machine, on which this application block is running. Default value: localhostInterface: GlobalConfigUsed in blocks: Middleware, Web Client, Web Portal. For example, for the Middleware block, available at http://somehost:8080/app-core, the property should be set to the following value:cuba.webHostName = somehost
- cuba.webPort
-  
     Defines the port, on which this application block is running. Default value: 8080Interface: GlobalConfigUsed in blocks: Middleware, Web Client, Web Portal. For example, for the Middleware block, available at http://somehost:8080/app-core, this property should be set to the following value:cuba.webPort = 8080