From 962b3df9c69335b5539cc32f38b18b1c95f844fc Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 14 Sep 2017 17:44:37 +0100 Subject: [PATCH] Add and polish package-info.java for actuator Closes gh-10298 --- .../endpoint/condition/package-info.java | 20 ++++++++++++++++++ .../endpoint/jmx/package-info.java | 20 ++++++++++++++++++ .../autoconfigure/endpoint/package-info.java | 2 +- .../endpoint/web/jersey/package-info.java | 20 ++++++++++++++++++ .../endpoint/web/reactive/package-info.java | 20 ++++++++++++++++++ .../endpoint/web/servlet/package-info.java | 20 ++++++++++++++++++ .../autoconfigure/mail/package-info.java | 2 +- .../metrics/export/atlas/package-info.java | 20 ++++++++++++++++++ .../metrics/export/datadog/package-info.java | 20 ++++++++++++++++++ .../metrics/export/ganglia/package-info.java | 20 ++++++++++++++++++ .../metrics/export/graphite/package-info.java | 20 ++++++++++++++++++ .../metrics/export/influx/package-info.java | 20 ++++++++++++++++++ .../metrics/export/jmx/package-info.java | 20 ++++++++++++++++++ .../metrics/export/package-info.java | 20 ++++++++++++++++++ .../export/prometheus/package-info.java | 20 ++++++++++++++++++ .../metrics/export/simple/package-info.java | 20 ++++++++++++++++++ .../autoconfigure/metrics/package-info.java | 20 ++++++++++++++++++ .../metrics/reactive/server/package-info.java | 20 ++++++++++++++++++ .../metrics/web/client/package-info.java | 20 ++++++++++++++++++ .../metrics/web/servlet/package-info.java | 20 ++++++++++++++++++ .../web/jersey/package-info.java | 20 ++++++++++++++++++ .../autoconfigure/web/package-info.java | 20 ++++++++++++++++++ .../web/reactive/package-info.java | 20 ++++++++++++++++++ .../web/servlet/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/amqp/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/cassandra/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/couchbase/package-info.java | 20 ++++++++++++++++++ .../actuate/elasticsearch/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/endpoint/package-info.java | 2 +- .../endpoint/web/annotation/package-info.java | 2 +- .../boot/actuate/env/package-info.java | 21 +++++++++++++++++++ .../boot/actuate/flyway/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/health/package-info.java | 2 +- .../boot/actuate/jdbc/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/jms/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/ldap/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/liquibase/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/logger/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/logging/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/mail/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/management/package-info.java | 20 ++++++++++++++++++ .../export/prometheus/package-info.java | 20 ++++++++++++++++++ .../metrics/integration/package-info.java | 20 ++++++++++++++++++ .../actuate/metrics/jdbc/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/metrics/package-info.java | 20 ++++++++++++++++++ .../metrics/web/client/package-info.java | 20 ++++++++++++++++++ .../web/reactive/server/package-info.java | 20 ++++++++++++++++++ .../metrics/web/servlet/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/mongo/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/neo4j/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/redis/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/security/package-info.java | 3 +-- .../boot/actuate/solr/package-info.java | 20 ++++++++++++++++++ .../boot/actuate/system/package-info.java | 20 ++++++++++++++++++ 54 files changed, 967 insertions(+), 7 deletions(-) create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/condition/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/jmx/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/jersey/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/reactive/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/servlet/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/atlas/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/datadog/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/ganglia/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/graphite/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/influx/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/jmx/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/prometheus/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/simple/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/reactive/server/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/web/client/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/jersey/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/package-info.java create mode 100644 spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/servlet/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/amqp/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cassandra/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/couchbase/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/elasticsearch/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/flyway/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/jdbc/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/jms/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/ldap/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/liquibase/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logger/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logging/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/mail/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/management/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/export/prometheus/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/integration/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/jdbc/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/client/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/reactive/server/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/servlet/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/mongo/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/neo4j/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/redis/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/solr/package-info.java create mode 100644 spring-boot-actuator/src/main/java/org/springframework/boot/actuate/system/package-info.java diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/condition/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/condition/package-info.java new file mode 100644 index 0000000000..8b0507b7d9 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/condition/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator endpoint auto-configuration conditions. + */ +package org.springframework.boot.actuate.autoconfigure.endpoint.condition; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/jmx/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/jmx/package-info.java new file mode 100644 index 0000000000..37d0d56d47 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/jmx/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator JMX endpoint auto-configuration. + */ +package org.springframework.boot.actuate.autoconfigure.endpoint.jmx; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/package-info.java index 2592c13b20..cf4eb61976 100644 --- a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/package-info.java +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/package-info.java @@ -15,6 +15,6 @@ */ /** - * Additional actuator endpoint conditions and utilities. + * Core classes for actuator endpoint auto-configuration. */ package org.springframework.boot.actuate.autoconfigure.endpoint; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/jersey/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/jersey/package-info.java new file mode 100644 index 0000000000..381797156a --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/jersey/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Auto-configuration for exposing actuator web endpoints using Jersey. + */ +package org.springframework.boot.actuate.autoconfigure.endpoint.web.jersey; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/reactive/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/reactive/package-info.java new file mode 100644 index 0000000000..a88d6c328b --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/reactive/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Auto-configuration for exposing actuator web endpoints using WebFlux. + */ +package org.springframework.boot.actuate.autoconfigure.endpoint.web.reactive; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/servlet/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/servlet/package-info.java new file mode 100644 index 0000000000..f3a4ec7e61 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/servlet/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Auto-configuration for exposing actuator web endpoints using Spring MVC. + */ +package org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/mail/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/mail/package-info.java index 1f2ad84c53..66761abdd3 100644 --- a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/mail/package-info.java +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/mail/package-info.java @@ -15,6 +15,6 @@ */ /** - * Auto-configuration for actuator Java Mail concerns. + * Auto-configuration for actuator JavaMail concerns. */ package org.springframework.boot.actuate.autoconfigure.mail; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/atlas/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/atlas/package-info.java new file mode 100644 index 0000000000..34845cf1ae --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/atlas/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Support for exporting actuator metrics to Atlas. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export.atlas; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/datadog/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/datadog/package-info.java new file mode 100644 index 0000000000..1a9e041088 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/datadog/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Support for exporting actuator metrics to Datadog. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export.datadog; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/ganglia/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/ganglia/package-info.java new file mode 100644 index 0000000000..a636dbf4a1 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/ganglia/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Support for exporting actuator metrics to Ganglia. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export.ganglia; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/graphite/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/graphite/package-info.java new file mode 100644 index 0000000000..5998271ec7 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/graphite/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Support for exporting actuator metrics to Graphite. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export.graphite; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/influx/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/influx/package-info.java new file mode 100644 index 0000000000..0bfffb286c --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/influx/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Support for exporting actuator metrics to InfluxDB. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export.influx; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/jmx/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/jmx/package-info.java new file mode 100644 index 0000000000..a3cd420766 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/jmx/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Support for exporting actuator metrics to JMX. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export.jmx; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/package-info.java new file mode 100644 index 0000000000..25d5b52c5c --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Core classes for exporting actuator metrics. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/prometheus/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/prometheus/package-info.java new file mode 100644 index 0000000000..83e0a89099 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/prometheus/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Support for exporting actuator metrics to Prometheus. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/simple/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/simple/package-info.java new file mode 100644 index 0000000000..5090ef5537 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/export/simple/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Support for exporting actuator metrics to a simple in-memory store. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.export.simple; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/package-info.java new file mode 100644 index 0000000000..d48a3a2680 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Auto-configuration for actuator metrics and Micrometer. + */ +package org.springframework.boot.actuate.autoconfigure.metrics; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/reactive/server/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/reactive/server/package-info.java new file mode 100644 index 0000000000..1db72668d5 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/reactive/server/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Auto-configuration for WebFlux actuator metrics. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.reactive.server; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/web/client/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/web/client/package-info.java new file mode 100644 index 0000000000..a3a93f5e38 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/web/client/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Auto-configuration for web client actuator metrics. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.web.client; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/package-info.java new file mode 100644 index 0000000000..dbddaa5656 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Auto-configuration for Spring MVC actuator metrics. + */ +package org.springframework.boot.actuate.autoconfigure.metrics.web.servlet; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/jersey/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/jersey/package-info.java new file mode 100644 index 0000000000..ee747d8522 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/jersey/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Configuration for a Jersey-based management context. + */ +package org.springframework.boot.actuate.autoconfigure.web.jersey; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/package-info.java new file mode 100644 index 0000000000..1f5db7069f --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Core classes for auto-configuration of actuator web concerns. + */ +package org.springframework.boot.actuate.autoconfigure.web; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/package-info.java new file mode 100644 index 0000000000..869af6c3e2 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Configuration for a WebFlux-based management context. + */ +package org.springframework.boot.actuate.autoconfigure.web.reactive; diff --git a/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/servlet/package-info.java b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/servlet/package-info.java new file mode 100644 index 0000000000..a0a04bc497 --- /dev/null +++ b/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/servlet/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator Spring MVC support. + */ +package org.springframework.boot.actuate.autoconfigure.web.servlet; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/amqp/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/amqp/package-info.java new file mode 100644 index 0000000000..a8ddb71962 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/amqp/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for AMQP and RabbitMQ. + */ +package org.springframework.boot.actuate.amqp; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cassandra/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cassandra/package-info.java new file mode 100644 index 0000000000..0c54a35b2a --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cassandra/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Cassandra. + */ +package org.springframework.boot.actuate.cassandra; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/couchbase/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/couchbase/package-info.java new file mode 100644 index 0000000000..d10b5f191e --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/couchbase/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Cassandra. + */ +package org.springframework.boot.actuate.couchbase; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/elasticsearch/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/elasticsearch/package-info.java new file mode 100644 index 0000000000..9d402aef07 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/elasticsearch/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Elasticsearch. + */ +package org.springframework.boot.actuate.elasticsearch; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/package-info.java index 3eb35b770c..03610f7d71 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/package-info.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/package-info.java @@ -15,6 +15,6 @@ */ /** - * Endpoints used to expose actuator information. + * Actuator endpoint infrastructure. */ package org.springframework.boot.actuate.endpoint; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/annotation/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/annotation/package-info.java index 08d543dee2..fddc72d2cc 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/annotation/package-info.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/annotation/package-info.java @@ -15,6 +15,6 @@ */ /** - * Annotation support for actuator Web endpoints. + * Annotation support for actuator web endpoints. */ package org.springframework.boot.actuate.endpoint.web.annotation; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/package-info.java new file mode 100644 index 0000000000..04288b92d3 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/env/package-info.java @@ -0,0 +1,21 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Spring Framework's + * {@link org.springframework.core.env.Environment}. + */ +package org.springframework.boot.actuate.env; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/flyway/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/flyway/package-info.java new file mode 100644 index 0000000000..5c9798c1fa --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/flyway/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Flyway. + */ +package org.springframework.boot.actuate.flyway; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/package-info.java index 27d9a60179..d6e8321a46 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/package-info.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/package-info.java @@ -15,6 +15,6 @@ */ /** - * Actuator health indicators. + * Actuator health indicator and endpoints. */ package org.springframework.boot.actuate.health; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/jdbc/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/jdbc/package-info.java new file mode 100644 index 0000000000..70316a98c7 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/jdbc/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for JDBC. + */ +package org.springframework.boot.actuate.jdbc; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/jms/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/jms/package-info.java new file mode 100644 index 0000000000..428e5d9bab --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/jms/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for JMS. + */ +package org.springframework.boot.actuate.jms; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/ldap/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/ldap/package-info.java new file mode 100644 index 0000000000..c474a63292 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/ldap/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for LDAP. + */ +package org.springframework.boot.actuate.ldap; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/liquibase/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/liquibase/package-info.java new file mode 100644 index 0000000000..e9614be55d --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/liquibase/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Liquibase. + */ +package org.springframework.boot.actuate.liquibase; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logger/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logger/package-info.java new file mode 100644 index 0000000000..db84ae9a43 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logger/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for logging. + */ +package org.springframework.boot.actuate.logger; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logging/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logging/package-info.java new file mode 100644 index 0000000000..34ca7ce0a2 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/logging/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for AMQP and RabbitMQ. + */ +package org.springframework.boot.actuate.logging; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/mail/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/mail/package-info.java new file mode 100644 index 0000000000..1d22d2d6ea --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/mail/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for JavaMail. + */ +package org.springframework.boot.actuate.mail; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/management/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/management/package-info.java new file mode 100644 index 0000000000..d54234c2fa --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/management/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for JVM management. + */ +package org.springframework.boot.actuate.management; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/export/prometheus/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/export/prometheus/package-info.java new file mode 100644 index 0000000000..ce0655e047 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/export/prometheus/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for exporting metrics to Prometheus. + */ +package org.springframework.boot.actuate.metrics.export.prometheus; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/integration/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/integration/package-info.java new file mode 100644 index 0000000000..ff3b2d5942 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/integration/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Spring Integration metrics. + */ +package org.springframework.boot.actuate.metrics.integration; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/jdbc/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/jdbc/package-info.java new file mode 100644 index 0000000000..0b7221b02a --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/jdbc/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for JDBC metrics. + */ +package org.springframework.boot.actuate.metrics.jdbc; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/package-info.java new file mode 100644 index 0000000000..9f58c2a36f --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Core actuator support for metrics. + */ +package org.springframework.boot.actuate.metrics; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/client/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/client/package-info.java new file mode 100644 index 0000000000..24c4db655d --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/client/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for web client metrics. + */ +package org.springframework.boot.actuate.metrics.web.client; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/reactive/server/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/reactive/server/package-info.java new file mode 100644 index 0000000000..82a929f193 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/reactive/server/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for WebFlux metrics. + */ +package org.springframework.boot.actuate.metrics.web.reactive.server; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/servlet/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/servlet/package-info.java new file mode 100644 index 0000000000..f2126e035d --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/servlet/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Spring MVC metrics. + */ +package org.springframework.boot.actuate.metrics.web.servlet; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/mongo/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/mongo/package-info.java new file mode 100644 index 0000000000..1af4516176 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/mongo/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Mongo. + */ +package org.springframework.boot.actuate.mongo; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/neo4j/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/neo4j/package-info.java new file mode 100644 index 0000000000..21f810276f --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/neo4j/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Neo4j. + */ +package org.springframework.boot.actuate.neo4j; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/redis/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/redis/package-info.java new file mode 100644 index 0000000000..6ceaa04e88 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/redis/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Redis. + */ +package org.springframework.boot.actuate.redis; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/security/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/security/package-info.java index 22e17128e9..7af5589709 100644 --- a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/security/package-info.java +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/security/package-info.java @@ -15,8 +15,7 @@ */ /** - * Metrics integration with Dropwizard Metrics. + * Actuator support for security. * - * @see org.springframework.boot.actuate.metrics.rich.RichGauge */ package org.springframework.boot.actuate.security; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/solr/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/solr/package-info.java new file mode 100644 index 0000000000..dbc4720b1a --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/solr/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for Solr. + */ +package org.springframework.boot.actuate.solr; diff --git a/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/system/package-info.java b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/system/package-info.java new file mode 100644 index 0000000000..ded2850d86 --- /dev/null +++ b/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/system/package-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2012-2017 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Actuator support for system-related concerns. + */ +package org.springframework.boot.actuate.system;