Skip to content

Commit

Permalink
Remote trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Webb committed Jul 2, 2014
1 parent 2076607 commit fa88c48
Show file tree
Hide file tree
Showing 875 changed files with 958 additions and 958 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Users can inject a {@link AuditEventRepository} to publish their own events or
* alternatively use Springs {@link AuthenticationEventPublisher} (usually obtained by
* implementing {@link ApplicationEventPublisherAware}).
*
*
* @author Dave Syer
* @see AuditEventRepository
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

/**
* Repository for {@link AuditEvent}s.
*
*
* @author Dave Syer
*/
public interface AuditEventRepository {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* In-memory {@link AuditEventRepository} implementation.
*
*
* @author Dave Syer
*/
public class InMemoryAuditEventRepository implements AuditEventRepository {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* Spring {@link ApplicationEvent} to encapsulate {@link AuditEvent}s.
*
*
* @author Dave Syer
*/
public class AuditApplicationEvent extends ApplicationEvent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* {@link ApplicationListener} that listens for {@link AuditEvent}s and stores them in a
* {@link AuditEventRepository}.
*
*
* @author Dave Syer
*/
public class AuditListener implements ApplicationListener<AuditApplicationEvent> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

/**
* {@link EnableAutoConfiguration Auto-configuration} for {@link AuditEvent}s.
*
*
* @author Dave Syer
*/
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
* using the following classpath scanning pattern <code>classpath*:/commands/**</code>. To
* add different locations or override the default use
* <code>shell.command_path_patterns</code> in your application configuration.
*
*
* @author Christian Dupuis
* @see ShellProperties
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
/**
* {@link EnableAutoConfiguration Auto-configuration} for common management
* {@link Endpoint}s.
*
*
* @author Dave Syer
* @author Phillip Webb
* @author Greg Turnquist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**
* {@link EnableAutoConfiguration Auto-configuration} to enable JMX export for
* {@link Endpoint}s.
*
*
* @author Christian Dupuis
*/
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
* Configuration properties for JMX.
*
*
* @author Christian Dupuis
*/
@ConfigurationProperties(prefix = "endpoints.jmx")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
* different port to {@link ServerProperties} a new child context is created, otherwise it
* is assumed that endpoint requests will be mapped and handled via an already registered
* {@link DispatcherServlet}.
*
*
* @author Dave Syer
* @author Phillip Webb
* @author Christian Dupuis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
/**
* Configuration triggered from {@link EndpointWebMvcAutoConfiguration} when a new
* {@link EmbeddedServletContainer} running on a different port is required.
*
*
* @author Dave Syer
* @see EndpointWebMvcAutoConfiguration
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

/**
* {@link EnableAutoConfiguration Auto-configuration} for {@link HealthIndicator}s.
*
*
* @author Christian Dupuis
* @author Andy Wilkinson
* @since 1.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* Configuration properties for the {@link HealthMvcEndpoint}.
*
*
* @author Christian Dupuis
* @since 1.1.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@
/**
* {@link EnableAutoConfiguration Auto-configuration} for embedding Jolokia, a JMX-HTTP
* bridge giving an alternative to JSR-160 connectors.
*
*
* <p>
* This configuration will get automatically enabled as soon as the Jolokia
* {@link AgentServlet} is on the classpath. To disable set
* <code>endpoints.jolokia.enabled: false</code>.
*
*
* <p>
* Additional configuration parameters for Jolokia can be provided by specifying
* <code>jolokia.config.*</code> properties. See the <a
* href="http://jolokia.org">http://jolokia.org</a> web site for more information on
* supported configuration parameters.
*
*
* @author Christian Dupuis
* @author Dave Syer
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
* Configuration properties for Jolokia.
*
*
* @author Christian Dupuis
* @author Dave Syer
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
* Many aspects of the behavior can be controller with {@link ManagementServerProperties}
* via externalized application properties (or via an bean definition of that type to set
* the defaults).
*
*
* <p>
* The framework {@link Endpoint}s (used to expose application information to operations)
* include a {@link Endpoint#isSensitive() sensitive} configuration option which will be
* used as a security hint by the filter created here.
*
*
* @author Dave Syer
*/
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

/**
* Properties for the management server (e.g. port and path settings).
*
*
* @author Dave Syer
* @see ServerProperties
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* {@link EnableAutoConfiguration Auto-configuration} for the
* {@link ManagementServerProperties} bean.
*
*
* @author Dave Syer
*/
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
/**
* {@link EnableAutoConfiguration Auto-configuration} that records Servlet interactions
* with a {@link CounterService} and {@link GaugeService}.
*
*
* @author Dave Syer
* @author Phillip Webb
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@
* updates from the default counter and gauge services. Alternatively you can provide your
* own counter and gauge services and wire them to whichever writer you choose.
* </p>
*
*
* @see GaugeService
* @see CounterService
* @see MetricWriter
* @see InMemoryMetricRepository
* @see CodahaleMetricWriter
* @see Exporter
*
*
* @author Dave Syer
*/
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

/**
* Configuration properties for the shell subsystem.
*
*
* @author Christian Dupuis
* @author Phillip Webb
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* {@link EnableAutoConfiguration Auto-configuration} for {@link TraceRepository tracing}.
*
*
* @author Dave Syer
*/
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**
* {@link EnableAutoConfiguration Auto-configuration} for {@link WebRequestTraceFilter
* tracing}.
*
*
* @author Dave Syer
*/
@ConditionalOnClass({ Servlet.class, DispatcherServlet.class, ServletRegistration.class })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

/**
* Abstract base for {@link Endpoint} implementations.
*
*
* @author Phillip Webb
* @author Christian Dupuis
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

/**
* {@link Endpoint} to expose the {@link ConditionEvaluationReport}.
*
*
* @author Greg Turnquist
* @author Phillip Webb
* @author Dave Syer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* the {@link LiveBeansView#MBEAN_DOMAIN_PROPERTY_NAME} then all application contexts in
* the JVM will be shown (and the corresponding MBeans will be registered per the standard
* behavior of LiveBeansView). Otherwise only the current application context.
*
*
* @author Dave Syer
*/
@ConfigurationProperties(prefix = "endpoints.beans", ignoreUnknownFields = false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
/**
* {@link Endpoint} to expose application properties from {@link ConfigurationProperties}
* annotated beans.
*
*
* <p>
* To protect sensitive information from being exposed, certain property values are masked
* if their names end with a set of configurable values (default "password" and "secret").
* Configure property names by using <code>endpoints.configprops.keys_to_sanitize</code>
* in your Spring Boot application configuration.
*
*
* @author Christian Dupuis
* @author Dave Syer
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* {@link Endpoint} to expose thread info.
*
*
* @author Dave Syer
*/
@ConfigurationProperties(prefix = "endpoints.dump", ignoreUnknownFields = false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* An endpoint that can be used to expose useful information to operations. Usually
* exposed via Spring MVC but could also be exposed using some other technique.
*
*
* @author Phillip Webb
* @author Dave Syer
* @author Christian Dupuis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

/**
* {@link Endpoint} to expose {@link ConfigurableEnvironment environment} information.
*
*
* @author Dave Syer
* @author Phillip Webb
* @author Christian Dupuis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

/**
* {@link Endpoint} to expose application health.
*
*
* @author Dave Syer
* @author Christian Dupuis
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* {@link Endpoint} to expose arbitrary application information.
*
*
* @author Dave Syer
*/
@ConfigurationProperties(prefix = "endpoints.info", ignoreUnknownFields = false)
Expand All @@ -35,7 +35,7 @@ public class InfoEndpoint extends AbstractEndpoint<Map<String, Object>> {

/**
* Create a new {@link InfoEndpoint} instance.
*
*
* @param info the info to expose
*/
public InfoEndpoint(Map<String, ? extends Object> info) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* {@link Endpoint} to expose {@link PublicMetrics}.
*
*
* @author Dave Syer
*/
@ConfigurationProperties(prefix = "endpoints.metrics", ignoreUnknownFields = false)
Expand All @@ -35,7 +35,7 @@ public class MetricsEndpoint extends AbstractEndpoint<Map<String, Object>> {

/**
* Create a new {@link MetricsEndpoint} instance.
*
*
* @param metrics the metrics to expose
*/
public MetricsEndpoint(PublicMetrics metrics) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* Interface to expose specific {@link Metric}s via a {@link MetricsEndpoint}.
*
*
* @author Dave Syer
* @see VanillaPublicMetrics
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

/**
* {@link Endpoint} to expose Spring MVC mappings.
*
*
* @author Dave Syer
*/
@ConfigurationProperties(prefix = "endpoints.mappings", ignoreUnknownFields = false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

/**
* {@link Endpoint} to shutdown the {@link ApplicationContext}.
*
*
* @author Dave Syer
* @author Christian Dupuis
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* {@link Endpoint} to expose {@link Trace} information.
*
*
* @author Dave Syer
*/
@ConfigurationProperties(prefix = "endpoints.trace", ignoreUnknownFields = false)
Expand Down
Loading

0 comments on commit fa88c48

Please sign in to comment.