com.haulmont.cuba.core.config.defaults.Default.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.3k)|赞(0)|评价(0)|浏览(158)

本文整理了Java中com.haulmont.cuba.core.config.defaults.Default.<init>()方法的一些代码示例,展示了Default.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Default.<init>()方法的具体详情如下:
包路径:com.haulmont.cuba.core.config.defaults.Default
类名称:Default
方法名:<init>

Default.<init>介绍

暂无

代码示例

代码示例来源:origin: com.haulmont.cuba/cuba-core

/**
 * @return Path to the exception report email body template.
 */
@Property("cuba.email.exceptionReportEmailTemplateBody")
@Default("/com/haulmont/cuba/core/app/exceptionemail/exception-report-template-body.gsp")
String getExceptionReportEmailBodyTemplate();

代码示例来源:origin: com.haulmont.cuba/cuba-web

/**
 * @return Default user login to set in the login dialog.
 */
@Property("cuba.web.loginDialogDefaultUser")
@Default("admin")
String getLoginDialogDefaultUser();

代码示例来源:origin: com.haulmont.cuba/cuba-web

/**
 * @return Default user password to set in the login dialog.
 */
@Property("cuba.web.loginDialogDefaultPassword")
@Default("admin")
String getLoginDialogDefaultPassword();

代码示例来源:origin: com.haulmont.cuba/cuba-core

/**
 * Default "from" address
 */
@Property("cuba.email.fromAddress")
@Default("DoNotReply@localhost")
String getFromAddress();

代码示例来源:origin: com.haulmont.cuba/cuba-global

/**
 * @return response of the HTTP GET request on the health check URL
 */
@Property("cuba.healthCheckResponse")
@Default("ok")
String getHealthCheckResponse();

代码示例来源:origin: com.haulmont.cuba/cuba-web

/**
 * @return Theme
 */
@Default("halo")
@Property("cuba.web.theme")
String getAppWindowTheme();

代码示例来源:origin: com.haulmont.cuba/cuba-core

/**
 * @return Path to the exception report email subject template.
 */
@Property("cuba.email.exceptionReportEmailTemplateSubject")
@Default("/com/haulmont/cuba/core/app/exceptionemail/exception-report-template-subject.gsp")
String getExceptionReportEmailSubjectTemplate();

代码示例来源:origin: com.haulmont.cuba/cuba-core

/**
   * User login used by asynchronous sending mechanism to be able to store information in the database.
   */
  @Property("cuba.emailerUserLogin")
  @Default("admin")
  String getEmailerUserLogin();
}

代码示例来源:origin: de.diedavids.cuba.xero/xero-global

@Override
@Property("xero.appType")
@Default("Public")
String getAppType();

代码示例来源:origin: de.diedavids.cuba.xero/xero-global

@Override
@Property("xero.authorizeUrl")
@Default("https://api.xero.com/oauth/Authorize")
String getAuthorizeUrl();

代码示例来源:origin: de.diedavids.cuba.xero/xero-global

@Override
@Property("xero.userAgent")
@Default("Xero-Java-SDK")
String getUserAgent();

代码示例来源:origin: de.diedavids.cuba.xero/xero-global

@Override
@Property("xero.usingAppFirewall")
@Default("false")
boolean isUsingAppFirewall();

代码示例来源:origin: com.haulmont.cuba/cuba-client

/**
 * @return location of panel with conditions in generic filter component.
 * If {@code top} then conditions will be placed above filter control elements
 * or below them if {@code bottom}.
 */
@Property("cuba.gui.genericFilterConditionsLocation")
@Source(type = SourceType.DATABASE)
@Default("top")
String getGenericFilterConditionsLocation();

代码示例来源:origin: com.haulmont.cuba/cuba-client

/**
 * Returns a comma-separated list of values that are used as options for "Show rows" lookup field
 * of generic filter component. Add NULL option to the list if the lookup field should contain an empty value.
 */
@Property("cuba.gui.genericFilterMaxResultsOptions")
@Source(type = SourceType.DATABASE)
@Default("NULL, 20, 50, 100, 500, 1000, 5000")
String getGenericFilterMaxResultsOptions();

代码示例来源:origin: com.haulmont.cuba/cuba-web

/**
 * @return how URL changes should be handled
 *
 * @see UrlHandlingMode
 */
@Property("cuba.web.urlHandlingMode")
@Default("URL_ROUTES")
@Factory(factory = UrlHandlingModeFactory.class)
UrlHandlingMode getUrlHandlingMode();

代码示例来源:origin: com.haulmont.cuba/cuba-web

/**
 * Sets how the managed main TabSheet switches its tabs: hides or unloads them.
 *
 * @return one of {@link ManagedMainTabSheetMode} values
 */
@Property("cuba.web.managedMainTabSheetMode")
@Default("HIDE_TABS")
@Factory(factory = ManagedMainTabSheetModeFactory.class)
ManagedMainTabSheetMode getManagedMainTabSheetMode();

代码示例来源:origin: com.haulmont.cuba/cuba-web

/**
 *  @return Comma-separated list of URLs for CubaHttpFilter to bypass.
 */
@Property("cuba.web.cubaHttpFilterBypassUrls")
@Factory(factory = CommaSeparatedStringListTypeFactory.class)
@Default("/ws/,/dispatch/,/rest/,/front/")
List<String> getCubaHttpFilterBypassUrls();

代码示例来源:origin: com.haulmont.cuba/cuba-idp

/**
 * @return mode of authentication: STANDARD or LDAP
 */
@Property("cuba.idp.authenticationMode")
@Default("STANDARD")
@EnumStore(EnumStoreMode.NAME)
IdpAuthMode getAuthenticationMode();

代码示例来源:origin: it.nexbit.cuba.security.forgotpassword/nxsecfp-global

@Property("ext.security.resetPasswordLinkPortalUrl")
@Default("http://localhost:8080/portal/reset")
@Source(type = SourceType.DATABASE)
String getResetPasswordLinkPortalUrl();

代码示例来源:origin: com.haulmont.addon.samplebase/sample-base-global

@Property("base.permittedScreens")
@Factory(factory = StringListTypeFactory.class)
@Default("aboutWindow|jmxConsole|jmxConsoleInspectMbean|jmxConsoleEditAttribute|jmxConsoleOperationResult")
List<String> getPermittedScreens();

相关文章

Default类方法