Merge branch '1.5.x' into 2.0.x

This commit is contained in:
Phillip Webb
2019-06-28 23:27:59 -07:00
342 changed files with 332 additions and 139 deletions

View File

@@ -40,6 +40,7 @@ import org.springframework.util.Assert;
* (wrappers for AuditEvent).
*
* @author Dave Syer
* @since 1.0.0
* @see AuditEventRepository
*/
@JsonInclude(Include.NON_EMPTY)

View File

@@ -24,6 +24,7 @@ import java.util.List;
*
* @author Dave Syer
* @author Vedran Pavic
* @since 1.0.0
*/
public interface AuditEventRepository {

View File

@@ -28,6 +28,7 @@ import org.springframework.util.Assert;
* @author Dave Syer
* @author Phillip Webb
* @author Vedran Pavic
* @since 1.0.0
*/
public class InMemoryAuditEventRepository implements AuditEventRepository {

View File

@@ -27,6 +27,7 @@ import org.springframework.util.Assert;
* Spring {@link ApplicationEvent} to encapsulate {@link AuditEvent}s.
*
* @author Dave Syer
* @since 1.0.0
*/
public class AuditApplicationEvent extends ApplicationEvent {

View File

@@ -29,6 +29,7 @@ import org.springframework.boot.actuate.audit.AuditEventRepository;
* @author Dave Syer
* @author Stephane Nicoll
* @author Vedran Pavic
* @since 1.0.0
*/
public class AuditListener extends AbstractAuditListener {

View File

@@ -24,6 +24,7 @@ import org.springframework.util.Assert;
* the endpoint.
*
* @author Phillip Webb
* @since 2.0.0
*/
public abstract class DiscovererEndpointFilter implements EndpointFilter<DiscoveredEndpoint<?>> {

View File

@@ -30,6 +30,7 @@ import org.springframework.util.StringUtils;
* Contains details of a servlet that is exposed as an actuator endpoint.
*
* @author Phillip Webb
* @since 2.0.0
*/
public final class EndpointServlet {

View File

@@ -33,6 +33,7 @@ import org.springframework.util.Assert;
* A collection of {@link PathMappedEndpoint path mapped endpoints}.
*
* @author Phillip Webb
* @since 2.0.0
*/
public class PathMappedEndpoints implements Iterable<PathMappedEndpoint> {

View File

@@ -21,6 +21,7 @@ package org.springframework.boot.actuate.health;
*
* @author Dave Syer
* @author Christian Dupuis
* @since 1.2.0
* @see Status#UP
*/
public class ApplicationHealthIndicator extends AbstractHealthIndicator {

View File

@@ -20,6 +20,7 @@ package org.springframework.boot.actuate.health;
* Strategy interface used to provide an indication of application health.
*
* @author Dave Syer
* @since 1.0.0
* @see ApplicationHealthIndicator
*/
@FunctionalInterface

View File

@@ -31,7 +31,7 @@ import org.springframework.util.Assert;
*
* @author Eddú Meléndez
* @author Stephane Nicoll
* @version 2.0.0
* @since 2.0.0
*/
public class LdapHealthIndicator extends AbstractHealthIndicator {

View File

@@ -37,7 +37,6 @@ import org.springframework.web.util.UriTemplateHandler;
*
* @author Jon Schneider
* @author Phillip Webb
* @since 2.0.0
*/
class MetricsClientHttpRequestInterceptor implements ClientHttpRequestInterceptor {

View File

@@ -31,6 +31,7 @@ import org.springframework.util.ClassUtils;
*
* @author Dave Syer
* @author Vedran Pavic
* @since 1.0.0
*/
public class AuthenticationAuditListener extends AbstractAuthenticationAuditListener {

View File

@@ -29,6 +29,7 @@ import org.springframework.security.access.event.AuthorizationFailureEvent;
*
* @author Dave Syer
* @author Vedran Pavic
* @since 1.0.0
*/
public class AuthorizationAuditListener extends AbstractAuthorizationAuditListener {

View File

@@ -32,7 +32,7 @@ import org.springframework.web.context.WebApplicationContext;
* Servlets} registered with a {@link ServletContext}.
*
* @author Andy Wilkinson
* @since 2.0
* @since 2.0.0
*/
public class ServletsMappingDescriptionProvider implements MappingDescriptionProvider {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2018 the original author or authors.
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.