@DeprecatedConfigurationProperty(replacement = "custom.connection.address") @Deprecated public String getServer() { return getAddress(); }
/** * Get if pooling is enabled. * @return if pooling is enabled * @deprecated as of 1.4 in favor of "spring.activemq.pool.enabled" */ @Deprecated @DeprecatedConfigurationProperty(replacement = "spring.activemq.pool.enabled") public boolean isPooled() { return getPool().isEnabled(); }
@Deprecated @DeprecatedConfigurationProperty(reason = "ObjectMapper.setSerializationInclusion was deprecated in Jackson 2.7", replacement = "spring.jackson.default-property-inclusion") public JsonInclude.Include getSerializationInclusion() { return getDefaultPropertyInclusion(); }
@Deprecated @DeprecatedConfigurationProperty(replacement = "spring.jpa.hibernate.naming.strategy") public String getNamingStrategy() { return getNaming().getStrategy(); }
/** * Get the session timeout. * @return the session timeout * @deprecated since 1.3.0 in favor of {@code session.timeout}. */ @Deprecated @DeprecatedConfigurationProperty(replacement = "server.session.timeout") public Integer getSessionTimeout() { return this.session.getTimeout(); }
/** * Specify if access log is enabled. * @return {@code true} if access log is enabled * @deprecated since 1.3.0 in favor of {@code server.tomcat.accesslog.enabled} */ @Deprecated @DeprecatedConfigurationProperty(replacement = "server.tomcat.accesslog.enabled") public boolean getAccessLogEnabled() { return this.accesslog.isEnabled(); }
/** * Get the format pattern for access logs. * @return the format pattern for access logs * @deprecated since 1.3.0 in favor of {@code server.tomcat.accesslog.pattern} */ @Deprecated @DeprecatedConfigurationProperty(replacement = "server.tomcat.accesslog.pattern") public String getAccessLogPattern() { return this.accesslog.getPattern(); }
/** * Get the format pattern for access logs. * @return the format pattern for access logs * @deprecated since 1.3.0 in favor of {@code server.undertow.accesslog.pattern} */ @Deprecated @DeprecatedConfigurationProperty(replacement = "server.undertow.accesslog.pattern") public String getAccessLogPattern() { return this.accesslog.getPattern(); }
/** * Specify if access log is enabled. * @return {@code true} if access log is enabled * @deprecated since 1.3.0 in favor of {@code server.undertow.accesslog.enabled} */ @Deprecated @DeprecatedConfigurationProperty(replacement = "server.undertow.accesslog.enabled") public boolean isAccessLogEnabled() { return this.accesslog.isEnabled(); }
/** * Get the access log directory. * @return the access log directory * @deprecated since 1.3.0 in favor of {@code server.undertow.accesslog.dir} */ @Deprecated @DeprecatedConfigurationProperty(replacement = "server.undertow.accesslog.dir") public File getAccessLogDir() { return this.accesslog.getDir(); }
@DeprecatedConfigurationProperty(reason = "replaced by headers", replacement = "headers") @Deprecated public String getAuthorization() { return this.authorization; }
/** * Get the max http header size. * @return the max http header size. * @deprecated as of 1.4 in favor of * {@link ServerProperties#getMaxHttpHeaderSize()} */ @Deprecated @DeprecatedConfigurationProperty(replacement = "server.max-http-header-size") public int getMaxHttpHeaderSize() { return this.maxHttpHeaderSize; }