Rename ops package to actuate

This commit is contained in:
Dave Syer 2013-08-06 13:15:02 +01:00
parent e967c2d551
commit 12f0d4d95e
87 changed files with 242 additions and 242 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.audit;
package org.springframework.boot.actuate.audit;
import java.io.Serializable;
import java.util.Collections;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.audit;
package org.springframework.boot.actuate.audit;
import java.util.Date;
import java.util.List;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.audit;
package org.springframework.boot.actuate.audit;
import java.util.ArrayList;
import java.util.Collections;

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.boot.ops.audit.listener;
package org.springframework.boot.actuate.audit.listener;
import java.util.Date;
import java.util.Map;
import org.springframework.boot.ops.audit.AuditEvent;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.context.ApplicationEvent;
import org.springframework.util.Assert;

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.boot.ops.audit.listener;
package org.springframework.boot.actuate.audit.listener;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.boot.ops.audit.AuditEvent;
import org.springframework.boot.ops.audit.AuditEventRepository;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.boot.actuate.audit.AuditEventRepository;
import org.springframework.context.ApplicationListener;
/**

View File

@ -14,18 +14,18 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.boot.actuate.audit.AuditEventRepository;
import org.springframework.boot.actuate.audit.InMemoryAuditEventRepository;
import org.springframework.boot.actuate.audit.listener.AuditListener;
import org.springframework.boot.actuate.security.AuthenticationAuditListener;
import org.springframework.boot.actuate.security.AuthorizationAuditListener;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.ops.audit.AuditEvent;
import org.springframework.boot.ops.audit.AuditEventRepository;
import org.springframework.boot.ops.audit.InMemoryAuditEventRepository;
import org.springframework.boot.ops.audit.listener.AuditListener;
import org.springframework.boot.ops.security.AuthenticationAuditListener;
import org.springframework.boot.ops.security.AuthorizationAuditListener;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import java.util.LinkedHashMap;
import java.util.Map;
@ -22,26 +22,26 @@ import java.util.Properties;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.actuate.endpoint.BeansEndpoint;
import org.springframework.boot.actuate.endpoint.DumpEndpoint;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.boot.actuate.endpoint.EnvironmentEndpoint;
import org.springframework.boot.actuate.endpoint.HealthEndpoint;
import org.springframework.boot.actuate.endpoint.InfoEndpoint;
import org.springframework.boot.actuate.endpoint.MetricsEndpoint;
import org.springframework.boot.actuate.endpoint.PublicMetrics;
import org.springframework.boot.actuate.endpoint.ShutdownEndpoint;
import org.springframework.boot.actuate.endpoint.TraceEndpoint;
import org.springframework.boot.actuate.endpoint.VanillaPublicMetrics;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.boot.actuate.health.VanillaHealthIndicator;
import org.springframework.boot.actuate.metrics.InMemoryMetricRepository;
import org.springframework.boot.actuate.metrics.MetricRepository;
import org.springframework.boot.actuate.trace.InMemoryTraceRepository;
import org.springframework.boot.actuate.trace.TraceRepository;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.bind.PropertiesConfigurationFactory;
import org.springframework.boot.ops.endpoint.BeansEndpoint;
import org.springframework.boot.ops.endpoint.DumpEndpoint;
import org.springframework.boot.ops.endpoint.Endpoint;
import org.springframework.boot.ops.endpoint.EnvironmentEndpoint;
import org.springframework.boot.ops.endpoint.HealthEndpoint;
import org.springframework.boot.ops.endpoint.InfoEndpoint;
import org.springframework.boot.ops.endpoint.MetricsEndpoint;
import org.springframework.boot.ops.endpoint.PublicMetrics;
import org.springframework.boot.ops.endpoint.ShutdownEndpoint;
import org.springframework.boot.ops.endpoint.TraceEndpoint;
import org.springframework.boot.ops.endpoint.VanillaPublicMetrics;
import org.springframework.boot.ops.health.HealthIndicator;
import org.springframework.boot.ops.health.VanillaHealthIndicator;
import org.springframework.boot.ops.metrics.InMemoryMetricRepository;
import org.springframework.boot.ops.metrics.MetricRepository;
import org.springframework.boot.ops.trace.InMemoryTraceRepository;
import org.springframework.boot.ops.trace.TraceRepository;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.ConfigurableEnvironment;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import javax.servlet.Servlet;
@ -22,6 +22,10 @@ import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerAdapter;
import org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping;
import org.springframework.boot.actuate.properties.ManagementServerProperties;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration;
@ -31,10 +35,6 @@ import org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoCo
import org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration;
import org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext;
import org.springframework.boot.context.embedded.properties.ServerProperties;
import org.springframework.boot.ops.endpoint.Endpoint;
import org.springframework.boot.ops.endpoint.mvc.EndpointHandlerAdapter;
import org.springframework.boot.ops.endpoint.mvc.EndpointHandlerMapping;
import org.springframework.boot.ops.properties.ManagementServerProperties;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.ApplicationListener;

View File

@ -14,22 +14,22 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import javax.servlet.Filter;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.HierarchicalBeanFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerAdapter;
import org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping;
import org.springframework.boot.actuate.properties.ManagementServerProperties;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.SearchStrategy;
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainerFactory;
import org.springframework.boot.context.embedded.EmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.boot.ops.endpoint.mvc.EndpointHandlerAdapter;
import org.springframework.boot.ops.endpoint.mvc.EndpointHandlerMapping;
import org.springframework.boot.ops.properties.ManagementServerProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;

View File

@ -14,19 +14,19 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import javax.servlet.Servlet;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.actuate.web.BasicErrorController;
import org.springframework.boot.actuate.web.ErrorController;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainerFactory;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.boot.context.embedded.ErrorPage;
import org.springframework.boot.ops.web.BasicErrorController;
import org.springframework.boot.ops.web.ErrorController;
import org.springframework.context.annotation.Bean;
import org.springframework.web.servlet.DispatcherServlet;

View File

@ -14,14 +14,14 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.springframework.boot.actuate.properties.ManagementServerProperties;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.properties.ManagementServerProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import java.io.IOException;
@ -28,12 +28,12 @@ import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.metrics.CounterService;
import org.springframework.boot.actuate.metrics.GaugeService;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.ops.metrics.CounterService;
import org.springframework.boot.ops.metrics.GaugeService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.Ordered;

View File

@ -14,16 +14,16 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.springframework.boot.actuate.metrics.CounterService;
import org.springframework.boot.actuate.metrics.DefaultCounterService;
import org.springframework.boot.actuate.metrics.DefaultGaugeService;
import org.springframework.boot.actuate.metrics.GaugeService;
import org.springframework.boot.actuate.metrics.InMemoryMetricRepository;
import org.springframework.boot.actuate.metrics.MetricRepository;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.ops.metrics.CounterService;
import org.springframework.boot.ops.metrics.DefaultCounterService;
import org.springframework.boot.ops.metrics.DefaultGaugeService;
import org.springframework.boot.ops.metrics.GaugeService;
import org.springframework.boot.ops.metrics.InMemoryMetricRepository;
import org.springframework.boot.ops.metrics.MetricRepository;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,21 +14,21 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping;
import org.springframework.boot.actuate.properties.SecurityProperties;
import org.springframework.boot.actuate.web.ErrorController;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.Endpoint;
import org.springframework.boot.ops.endpoint.mvc.EndpointHandlerMapping;
import org.springframework.boot.ops.properties.SecurityProperties;
import org.springframework.boot.ops.web.ErrorController;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.Ordered;

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.springframework.boot.actuate.trace.InMemoryTraceRepository;
import org.springframework.boot.actuate.trace.TraceRepository;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.ops.trace.InMemoryTraceRepository;
import org.springframework.boot.ops.trace.TraceRepository;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,18 +14,18 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import javax.servlet.Servlet;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.actuate.trace.TraceRepository;
import org.springframework.boot.actuate.trace.WebRequestTraceFilter;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.ops.trace.TraceRepository;
import org.springframework.boot.ops.trace.WebRequestTraceFilter;
import org.springframework.context.annotation.Bean;
import org.springframework.web.servlet.DispatcherServlet;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Pattern;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
/**
* Tagging interface used to indicate that {@link Endpoint} that performs some action.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import org.springframework.beans.BeansException;
import org.springframework.boot.context.properties.ConfigurationProperties;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.lang.management.ManagementFactory;
import java.lang.management.ThreadInfo;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import org.springframework.http.MediaType;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.LinkedHashMap;
import java.util.Map;

View File

@ -14,10 +14,10 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.ops.health.HealthIndicator;
import org.springframework.util.Assert;
/**

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Collections;
import java.util.LinkedHashMap;

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.LinkedHashMap;
import java.util.Map;
import org.springframework.boot.actuate.metrics.Metric;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.ops.metrics.Metric;
import org.springframework.util.Assert;
/**

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Collection;
import org.springframework.boot.ops.metrics.Metric;
import org.springframework.boot.actuate.metrics.Metric;
/**
* Interface to expose specific {@link Metric}s via a {@link MetricsEndpoint}.

View File

@ -14,15 +14,15 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Collections;
import java.util.Map;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.properties.ManagementServerProperties;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.ops.properties.ManagementServerProperties;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.ConfigurableApplicationContext;

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.List;
import org.springframework.boot.actuate.trace.Trace;
import org.springframework.boot.actuate.trace.TraceRepository;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.ops.trace.Trace;
import org.springframework.boot.ops.trace.TraceRepository;
import org.springframework.util.Assert;
/**

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Collection;
import java.util.LinkedHashSet;
import org.springframework.boot.ops.metrics.Metric;
import org.springframework.boot.ops.metrics.MetricRepository;
import org.springframework.boot.actuate.metrics.Metric;
import org.springframework.boot.actuate.metrics.MetricRepository;
import org.springframework.util.Assert;
/**

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint.mvc;
package org.springframework.boot.actuate.endpoint.mvc;
import java.util.ArrayList;
import java.util.Arrays;
@ -28,7 +28,7 @@ import javax.servlet.http.HttpServletResponse;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.boot.ops.endpoint.Endpoint;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint.mvc;
package org.springframework.boot.actuate.endpoint.mvc;
import java.util.ArrayList;
import java.util.Collection;
@ -25,8 +25,8 @@ import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.BeanFactoryUtils;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.boot.ops.endpoint.ActionEndpoint;
import org.springframework.boot.ops.endpoint.Endpoint;
import org.springframework.boot.actuate.endpoint.ActionEndpoint;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.util.Assert;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.health;
package org.springframework.boot.actuate.health;
/**
* Strategy interface used to provide an indication of application health.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.health;
package org.springframework.boot.actuate.health;
/**
* Default implementation of {@link HealthIndicator} that simply returns "ok".

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
/**
* A service that can be used to increment, decrement and reset a {@link Metric}.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import java.util.Date;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import java.util.Date;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
/**
* A service that can be used to manage a {@link Metric} as a gauge.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import java.util.ArrayList;
import java.util.Collection;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import java.util.Date;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import org.springframework.util.Assert;
import org.springframework.util.ObjectUtils;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import java.util.Collection;
import java.util.Date;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.properties;
package org.springframework.boot.actuate.properties;
import java.net.InetAddress;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.properties;
package org.springframework.boot.actuate.properties;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.security.config.annotation.web.configurers.SessionCreationPolicy;

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.security;
package org.springframework.boot.actuate.security;
import java.util.HashMap;
import java.util.Map;
import org.springframework.boot.ops.audit.AuditEvent;
import org.springframework.boot.ops.audit.listener.AuditApplicationEvent;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.boot.actuate.audit.listener.AuditApplicationEvent;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.context.ApplicationListener;

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.security;
package org.springframework.boot.actuate.security;
import java.util.HashMap;
import java.util.Map;
import org.springframework.boot.ops.audit.AuditEvent;
import org.springframework.boot.ops.audit.listener.AuditApplicationEvent;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.boot.actuate.audit.listener.AuditApplicationEvent;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.context.ApplicationListener;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.trace;
package org.springframework.boot.actuate.trace;
import java.util.ArrayList;
import java.util.Collections;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.trace;
package org.springframework.boot.actuate.trace;
import java.util.Date;
import java.util.Map;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.trace;
package org.springframework.boot.actuate.trace;
import java.util.List;
import java.util.Map;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.trace;
package org.springframework.boot.actuate.trace;
import java.io.IOException;
import java.util.Collections;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.web;
package org.springframework.boot.actuate.web;
import java.io.PrintWriter;
import java.io.StringWriter;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.web;
package org.springframework.boot.actuate.web;
import org.springframework.stereotype.Controller;

View File

@ -1,11 +1,11 @@
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
org.springframework.boot.ops.autoconfigure.AuditAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.EndpointAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.EndpointWebMvcAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.ErrorMvcAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.ManagementServerPropertiesAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.MetricFilterAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.MetricRepositoryAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.SecurityAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.TraceRepositoryAutoConfiguration,\
org.springframework.boot.ops.autoconfigure.TraceWebFilterAutoConfiguration
org.springframework.boot.actuate.autoconfigure.AuditAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.EndpointAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.EndpointWebMvcAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.ErrorMvcAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.ManagementServerPropertiesAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.MetricFilterAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.MetricRepositoryAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.SecurityAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.TraceRepositoryAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.TraceWebFilterAutoConfiguration

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.boot.ops.audit;
package org.springframework.boot.actuate.audit;
import java.util.Collections;
import org.junit.Test;
import org.springframework.boot.ops.audit.AuditEvent;
import org.springframework.boot.actuate.audit.AuditEvent;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.audit;
package org.springframework.boot.actuate.audit;
import java.util.Date;
import org.junit.Test;
import org.springframework.boot.ops.audit.AuditEvent;
import org.springframework.boot.ops.audit.InMemoryAuditEventRepository;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.boot.actuate.audit.InMemoryAuditEventRepository;
import static org.junit.Assert.assertEquals;

View File

@ -14,15 +14,15 @@
* limitations under the License.
*/
package org.springframework.boot.ops.audit.listener;
package org.springframework.boot.actuate.audit.listener;
import java.util.Collections;
import org.junit.Test;
import org.springframework.boot.ops.audit.AuditEvent;
import org.springframework.boot.ops.audit.AuditEventRepository;
import org.springframework.boot.ops.audit.listener.AuditApplicationEvent;
import org.springframework.boot.ops.audit.listener.AuditListener;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.boot.actuate.audit.AuditEventRepository;
import org.springframework.boot.actuate.audit.listener.AuditApplicationEvent;
import org.springframework.boot.actuate.audit.listener.AuditListener;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;

View File

@ -14,14 +14,14 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.junit.Test;
import org.springframework.boot.ops.audit.AuditEventRepository;
import org.springframework.boot.ops.audit.InMemoryAuditEventRepository;
import org.springframework.boot.ops.autoconfigure.AuditAutoConfiguration;
import org.springframework.boot.ops.security.AuthenticationAuditListener;
import org.springframework.boot.ops.security.AuthorizationAuditListener;
import org.springframework.boot.actuate.audit.AuditEventRepository;
import org.springframework.boot.actuate.audit.InMemoryAuditEventRepository;
import org.springframework.boot.actuate.autoconfigure.AuditAutoConfiguration;
import org.springframework.boot.actuate.security.AuthenticationAuditListener;
import org.springframework.boot.actuate.security.AuthorizationAuditListener;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,20 +14,20 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.junit.Before;
import org.junit.Test;
import org.springframework.boot.TestUtils;
import org.springframework.boot.ops.autoconfigure.EndpointAutoConfiguration;
import org.springframework.boot.ops.endpoint.BeansEndpoint;
import org.springframework.boot.ops.endpoint.DumpEndpoint;
import org.springframework.boot.ops.endpoint.EnvironmentEndpoint;
import org.springframework.boot.ops.endpoint.HealthEndpoint;
import org.springframework.boot.ops.endpoint.InfoEndpoint;
import org.springframework.boot.ops.endpoint.MetricsEndpoint;
import org.springframework.boot.ops.endpoint.ShutdownEndpoint;
import org.springframework.boot.ops.endpoint.TraceEndpoint;
import org.springframework.boot.actuate.autoconfigure.EndpointAutoConfiguration;
import org.springframework.boot.actuate.endpoint.BeansEndpoint;
import org.springframework.boot.actuate.endpoint.DumpEndpoint;
import org.springframework.boot.actuate.endpoint.EnvironmentEndpoint;
import org.springframework.boot.actuate.endpoint.HealthEndpoint;
import org.springframework.boot.actuate.endpoint.InfoEndpoint;
import org.springframework.boot.actuate.endpoint.MetricsEndpoint;
import org.springframework.boot.actuate.endpoint.ShutdownEndpoint;
import org.springframework.boot.actuate.endpoint.TraceEndpoint;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import static org.junit.Assert.assertEquals;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import java.io.FileNotFoundException;
import java.net.SocketException;
@ -24,16 +24,16 @@ import java.nio.charset.Charset;
import org.junit.After;
import org.junit.Test;
import org.springframework.boot.TestUtils;
import org.springframework.boot.actuate.autoconfigure.EndpointWebMvcAutoConfiguration;
import org.springframework.boot.actuate.autoconfigure.ManagementServerPropertiesAutoConfiguration;
import org.springframework.boot.actuate.endpoint.AbstractEndpoint;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.boot.actuate.properties.ManagementServerProperties;
import org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration;
import org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration;
import org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration;
import org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration;
import org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext;
import org.springframework.boot.ops.autoconfigure.EndpointWebMvcAutoConfiguration;
import org.springframework.boot.ops.autoconfigure.ManagementServerPropertiesAutoConfiguration;
import org.springframework.boot.ops.endpoint.AbstractEndpoint;
import org.springframework.boot.ops.endpoint.Endpoint;
import org.springframework.boot.ops.properties.ManagementServerProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpMethod;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.junit.Test;
import org.springframework.boot.ops.autoconfigure.ManagementServerPropertiesAutoConfiguration;
import org.springframework.boot.ops.properties.ManagementServerProperties;
import org.springframework.boot.actuate.autoconfigure.ManagementServerPropertiesAutoConfiguration;
import org.springframework.boot.actuate.properties.ManagementServerProperties;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
@ -22,9 +22,9 @@ import javax.servlet.FilterChain;
import org.junit.Test;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import org.springframework.boot.ops.autoconfigure.MetricFilterAutoConfiguration;
import org.springframework.boot.ops.metrics.CounterService;
import org.springframework.boot.ops.metrics.GaugeService;
import org.springframework.boot.actuate.autoconfigure.MetricFilterAutoConfiguration;
import org.springframework.boot.actuate.metrics.CounterService;
import org.springframework.boot.actuate.metrics.GaugeService;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,14 +14,14 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.junit.Test;
import org.springframework.boot.ops.autoconfigure.MetricRepositoryAutoConfiguration;
import org.springframework.boot.ops.metrics.CounterService;
import org.springframework.boot.ops.metrics.DefaultCounterService;
import org.springframework.boot.ops.metrics.DefaultGaugeService;
import org.springframework.boot.ops.metrics.GaugeService;
import org.springframework.boot.actuate.autoconfigure.MetricRepositoryAutoConfiguration;
import org.springframework.boot.actuate.metrics.CounterService;
import org.springframework.boot.actuate.metrics.DefaultCounterService;
import org.springframework.boot.actuate.metrics.DefaultGaugeService;
import org.springframework.boot.actuate.metrics.GaugeService;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.junit.Test;
import org.springframework.boot.actuate.autoconfigure.EndpointAutoConfiguration;
import org.springframework.boot.actuate.autoconfigure.SecurityAutoConfiguration;
import org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration;
import org.springframework.boot.ops.autoconfigure.EndpointAutoConfiguration;
import org.springframework.boot.ops.autoconfigure.SecurityAutoConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.mock.web.MockServletContext;

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.junit.Test;
import org.springframework.boot.ops.autoconfigure.TraceRepositoryAutoConfiguration;
import org.springframework.boot.ops.trace.InMemoryTraceRepository;
import org.springframework.boot.ops.trace.TraceRepository;
import org.springframework.boot.actuate.autoconfigure.TraceRepositoryAutoConfiguration;
import org.springframework.boot.actuate.trace.InMemoryTraceRepository;
import org.springframework.boot.actuate.trace.TraceRepository;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.autoconfigure;
package org.springframework.boot.actuate.autoconfigure;
import org.junit.Test;
import org.springframework.boot.actuate.autoconfigure.TraceRepositoryAutoConfiguration;
import org.springframework.boot.actuate.autoconfigure.TraceWebFilterAutoConfiguration;
import org.springframework.boot.actuate.trace.WebRequestTraceFilter;
import org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration;
import org.springframework.boot.ops.autoconfigure.TraceRepositoryAutoConfiguration;
import org.springframework.boot.ops.autoconfigure.TraceWebFilterAutoConfiguration;
import org.springframework.boot.ops.trace.WebRequestTraceFilter;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import static org.junit.Assert.assertNotNull;

View File

@ -14,14 +14,14 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Collections;
import org.junit.Before;
import org.junit.Test;
import org.springframework.boot.TestUtils;
import org.springframework.boot.ops.endpoint.Endpoint;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.core.env.MapPropertySource;
import org.springframework.core.env.PropertySource;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import org.junit.Test;
import org.springframework.boot.actuate.endpoint.BeansEndpoint;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.BeansEndpoint;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType;

View File

@ -14,14 +14,14 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.lang.management.ThreadInfo;
import java.util.List;
import org.junit.Test;
import org.springframework.boot.actuate.endpoint.DumpEndpoint;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.DumpEndpoint;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import org.junit.Test;
import org.springframework.boot.actuate.endpoint.EnvironmentEndpoint;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.EnvironmentEndpoint;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import org.junit.Test;
import org.springframework.boot.actuate.endpoint.HealthEndpoint;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.HealthEndpoint;
import org.springframework.boot.ops.health.HealthIndicator;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Collections;
import org.junit.Test;
import org.springframework.boot.actuate.endpoint.InfoEndpoint;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.InfoEndpoint;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,16 +14,16 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Collection;
import java.util.Collections;
import org.junit.Test;
import org.springframework.boot.actuate.endpoint.MetricsEndpoint;
import org.springframework.boot.actuate.endpoint.PublicMetrics;
import org.springframework.boot.actuate.metrics.Metric;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.MetricsEndpoint;
import org.springframework.boot.ops.endpoint.PublicMetrics;
import org.springframework.boot.ops.metrics.Metric;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,12 +14,12 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import org.junit.Test;
import org.springframework.boot.actuate.endpoint.ShutdownEndpoint;
import org.springframework.boot.actuate.properties.ManagementServerProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.ShutdownEndpoint;
import org.springframework.boot.ops.properties.ManagementServerProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,16 +14,16 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Collections;
import org.junit.Test;
import org.springframework.boot.actuate.endpoint.TraceEndpoint;
import org.springframework.boot.actuate.trace.InMemoryTraceRepository;
import org.springframework.boot.actuate.trace.Trace;
import org.springframework.boot.actuate.trace.TraceRepository;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.ops.endpoint.TraceEndpoint;
import org.springframework.boot.ops.trace.InMemoryTraceRepository;
import org.springframework.boot.ops.trace.Trace;
import org.springframework.boot.ops.trace.TraceRepository;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@ -14,16 +14,16 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint;
package org.springframework.boot.actuate.endpoint;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import org.junit.Test;
import org.springframework.boot.ops.endpoint.VanillaPublicMetrics;
import org.springframework.boot.ops.metrics.InMemoryMetricRepository;
import org.springframework.boot.ops.metrics.Metric;
import org.springframework.boot.actuate.endpoint.VanillaPublicMetrics;
import org.springframework.boot.actuate.metrics.InMemoryMetricRepository;
import org.springframework.boot.actuate.metrics.Metric;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertThat;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint.mvc;
package org.springframework.boot.actuate.endpoint.mvc;
import org.junit.Test;
import org.springframework.boot.ops.endpoint.Endpoint;
import org.springframework.boot.ops.endpoint.mvc.EndpointHandlerAdapter;
import org.springframework.boot.actuate.endpoint.Endpoint;
import org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerAdapter;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

View File

@ -14,14 +14,14 @@
* limitations under the License.
*/
package org.springframework.boot.ops.endpoint.mvc;
package org.springframework.boot.actuate.endpoint.mvc;
import java.util.Arrays;
import org.junit.Test;
import org.springframework.boot.ops.endpoint.AbstractEndpoint;
import org.springframework.boot.ops.endpoint.ActionEndpoint;
import org.springframework.boot.ops.endpoint.mvc.EndpointHandlerMapping;
import org.springframework.boot.actuate.endpoint.AbstractEndpoint;
import org.springframework.boot.actuate.endpoint.ActionEndpoint;
import org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping;
import org.springframework.mock.web.MockHttpServletRequest;
import static org.hamcrest.Matchers.equalTo;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.ops.fixme;
package org.springframework.boot.actuate.fixme;
/**
* @author Dave Syer

View File

@ -14,10 +14,10 @@
* limitations under the License.
*/
package org.springframework.boot.ops.health;
package org.springframework.boot.actuate.health;
import org.junit.Test;
import org.springframework.boot.ops.health.VanillaHealthIndicator;
import org.springframework.boot.actuate.health.VanillaHealthIndicator;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertThat;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.ops.metrics.DefaultCounterService;
import org.springframework.boot.actuate.metrics.DefaultCounterService;
import static org.junit.Assert.fail;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.ops.metrics.DefaultGaugeService;
import org.springframework.boot.actuate.metrics.DefaultGaugeService;
import static org.junit.Assert.fail;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.metrics;
package org.springframework.boot.actuate.metrics;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.ops.metrics.InMemoryMetricRepository;
import org.springframework.boot.actuate.metrics.InMemoryMetricRepository;
import static org.junit.Assert.fail;

View File

@ -14,14 +14,14 @@
* limitations under the License.
*/
package org.springframework.boot.ops.properties;
package org.springframework.boot.actuate.properties;
import java.util.Collections;
import org.junit.Test;
import org.springframework.beans.MutablePropertyValues;
import org.springframework.boot.actuate.properties.SecurityProperties;
import org.springframework.boot.bind.RelaxedDataBinder;
import org.springframework.boot.ops.properties.SecurityProperties;
import org.springframework.core.convert.support.DefaultConversionService;
import static org.junit.Assert.assertEquals;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.security;
package org.springframework.boot.actuate.security;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.ops.security.AuthenticationAuditListener;
import org.springframework.boot.actuate.security.AuthenticationAuditListener;
import static org.junit.Assert.fail;

View File

@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.boot.ops.security;
package org.springframework.boot.actuate.security;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.ops.security.AuthenticationAuditListener;
import org.springframework.boot.actuate.security.AuthenticationAuditListener;
import static org.junit.Assert.fail;

View File

@ -14,14 +14,14 @@
* limitations under the License.
*/
package org.springframework.boot.ops.trace;
package org.springframework.boot.actuate.trace;
import java.util.Collections;
import java.util.List;
import org.junit.Test;
import org.springframework.boot.ops.trace.InMemoryTraceRepository;
import org.springframework.boot.ops.trace.Trace;
import org.springframework.boot.actuate.trace.InMemoryTraceRepository;
import org.springframework.boot.actuate.trace.Trace;
import static org.junit.Assert.assertEquals;

View File

@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.ops.trace;
package org.springframework.boot.actuate.trace;
import java.util.Map;
import org.junit.Test;
import org.springframework.boot.ops.trace.InMemoryTraceRepository;
import org.springframework.boot.ops.trace.WebRequestTraceFilter;
import org.springframework.boot.actuate.trace.InMemoryTraceRepository;
import org.springframework.boot.actuate.trace.WebRequestTraceFilter;
import org.springframework.mock.web.MockHttpServletRequest;
import static org.junit.Assert.assertEquals;

View File

@ -20,8 +20,8 @@ import java.util.Date;
import java.util.Map;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.actuate.properties.SecurityProperties;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.ops.properties.SecurityProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.stereotype.Controller;