...
The following is a sample system preference configuration systempreferences.properties (as per the name given in the default descriptor):
Code Block | ||
---|---|---|
| ||
# This property will define the application layout. Possible values "TAB" or "CARD" or # "EXCARD" or "APP" or "TABLE_TOP" or "MENU". APPLICATION_LAYOUTTYPE=CARD APPLICATION_NAME=MODELHOUSE # This property will define the language country codes that whichwill isbe used by the # application. LANG_COUNTRY_CODE=en_US # This property will define the default currency whichthat will be used by the application. DEFAULT_CURR=USD # This property will define the default amount whichthat will be used by the application. DEFAULT_AMOUNT_FORMAT=USA # This property will define the default theme of the application. DEFAULT_THEME=blue # This property will define the default font size of the application. DEFAULT_FONT_SIZE=Medium # This property will define the server time zone. SERVER_TIMEZONE = 23 # This property will define the handlers. HANDLER_PROPERTIES_FILE = handler # This property will define the tools rendering style. SHOW_TOOLS_AS_LINEAR = N # This property will define the widget needs to be shrink or not. ENABLE_WIDGET_DATA_SHRINK=N # This property will define the list of layouts categories needed for Design Your # Canvas DYC_VALID_LAYOUT_CATAGORIES_FOR_APPSTORE=Stack,Two-Column,Three-Column # This property will define the widget limit for Design Your Canvas DYC_ALLOWED_WIDGETS_LIMIT_FOR_APPSTORE = 9 # This property will define an indicator to include all categories in design your canvas. DYC_INCLUDE_ALL_CATAGORY_IN_APPSTORE = Y # This property will define the list of menu that are acceptable in Design Your Canvas DYC_CUSTOM_WORKSPACE_MENU_ITEMS=CT_CHILD_MENU1,CT_TAB_WSPACE,CT_STACK_WSPACE1,CT_STACK_WSPACE2,CT_STACK_WSPACE3 # This property will define the default workspace that will be used by Design Your Canvas to get default menu DYC_DEFAULT_WORKSPACE = CT_TAB_WSPACE # This property will define an indicator to enable Design Your Canvas DYC_ENABLE_IND = Y # This property will define the property file for alert templates ALERT_TEMPLATE_PROP_FILE= message_templates # This property will define the position of positive buttons in form container POS_BTN_ALIGN=LEFT # This property will define the position of negative buttons in form container NEG_BTN_ALIGN=RIGHT # This property will define an indicator to enable the navigational property for mobile M_NAVIGATION_ENABLED = Y # This property will define an indicator to enable the encryption in the Request/Response ENCRYPT_SERVER_CALLS = N # This property is to enable or disable piggy back flag ALERT_VIA_PIGGY_BACKFLAG=Y # This property is to enable or disable header of the application ENABLE_HEADER=Y # This property is to enable or disable footer of the application ENABLE_FOOTER=Y # This property is to set the footer of excard layout to be APP or TABLE_TOP EXCARD_LAYOUT_FOOTER=APP # This property is to set the default color palette for the chart apps DEFAULT_COLOR_PALETTE = 008ED6,F6BD0F,006600,F26D7D,ABA000,588526,008ED6,9D080D,CC6600,6DCFF6,AA4643,89A54E,80699B,3D96AE, DB843D,92A8CD,A47D7C,B5CA92,008ED6,9D080D,A186BE,CC6600,FDC689,ABA000,F26D7D,FFF200,0054A6,F7941C,CC3300,006600,663300, 6DCFF6,008ED6,F6BD0F,006600,F26D7D,ABA000,588526,008ED6,9D080D,CC6600,6DCFF6,AA4643,89A54E,80699B,3D96AE,DB843D,92A8CD, A47D7C,B5CA92,008ED6,9D080D,A186BE,CC6600,FDC689,ABA000,F26D7D,FFF200,0054A6,F7941C,CC3300,006600,663300,6DCFF6 # This property is to set the weekends.This is a comma separated list of the week ends # #UseUse 0 for Sunday, Use 1 for Monday, Use 2 for Tuesday, Use 3 for Wednesday, # Use 4 for Thursday, Use 5 for #Friday, Use 6 for Saturday WEEKENDS_TO_HIGHLIGHT=5,6 # This property will define the property file for email templates EMAIL_TEMPLATE_FILE_NAME=mail_templates # This property will define an indicator to enable form container full screen mode FORM_CONTAINER_FULLSCREEN_IND=N ##################################################################################################### # This property will define an indicator to enable redesign canvas ###################################################################################################### RYC_ENABLED_IND=Y ###################################################################################################### # This property will define the workspace menu render type. Possible values "RIBBON" or "ACCORDION". ###################################################################################################### WS_MENU_RENDER_TYPE=RIBBON ###################################################################################################### # This property will define the Application LOGO. ###################################################################################################### APPLICATION_LOGO=/images/CT-logo.png ###################################################################################################### # This property will define implementation path ###################################################################################################### IMPL_TEMPLATES_FOLDER_PATH = templates/html/ ###################################################################################################### # This property will define the duration limit in days for audit data ###################################################################################################### AUDIT_ENQUIRY_DATE_LIMIT=90 ###################################################################################################### # This property will define the availability currencies ###################################################################################################### AVAIL_CURRENCY_LIST=EUR,VEF,GBP,USD,EUR,USD,AED,AUD,ANG,KWD,JPY,INR,VND ###################################################################################################### # This property will define the availability Themes ###################################################################################################### AVAIL_THEME_LIST=RED,BLUE,GREEN,BLACK,WHITE,LIGHTBLUE,GRAY,ROYALBLUE,CANVAS ################################################################################################################# # This property will determine whether TLS is enabled for SMTP communication. ################################################################################################################# smtp.enabletls=true ################################################################################################################# # This property will define the SMTP Host. ################################################################################################################# smtp.host=email.email.com ################################################################################################################# # This property will define the SMTP port. ################################################################################################################# smtp.port=8080 ################################################################################################################# # This property will define the sender's emailaddress from which export to email should be sent. ################################################################################################################# smtp.credentials.username=xxxxx@email.com ################################################################################################################# # This property will define the password for sender's email address from which export to email will be sent. ############################################################################################################ smtp.credentials.password=XxXxXxXx ################################################################################################################# # This property will define the datasource details where implementation team can override the getAttachmentEncryptionPassword. ############################################################################################################ EXPORT_TO_EMAIL_DATASOURCE=com.intellectdesign.canvas.alert.handler.DefaultAlertDataSource ################################################################################################################# # This property will define the size limit for the email attachment. ############################################################################################################ MAIL_ATTACHMENT_LIMIT=5 ####################################################################################################### # This property will define the FCM Server Key ############################################################################################################ fcm.server.key=AAAA8vRqo9E:APA91bGAH_mayzwS8fHU2FmHdOMk_hUc0Yi3GxMcS72VN18sPBIJCKs7Wv7uauKnLScTTVH7gFWy_fKhGq20m-0fNuEhStlBarz4BCzIR |
...