diff --git a/docs/target/antrun/build-main.xml b/docs/target/antrun/build-main.xml new file mode 100644 index 00000000..7843a44b --- /dev/null +++ b/docs/target/antrun/build-main.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/docs/target/generated-docs/ghpages.sh b/docs/target/generated-docs/ghpages.sh new file mode 100644 index 00000000..57c5da3a --- /dev/null +++ b/docs/target/generated-docs/ghpages.sh @@ -0,0 +1,330 @@ +#!/bin/bash -x + +set -e + +# Set default props like MAVEN_PATH, ROOT_FOLDER etc. +function set_default_props() { + # The script should be executed from the root folder + ROOT_FOLDER=`pwd` + echo "Current folder is ${ROOT_FOLDER}" + + if [[ ! -e "${ROOT_FOLDER}/.git" ]]; then + echo "You're not in the root folder of the project!" + exit 1 + fi + + # Prop that will let commit the changes + COMMIT_CHANGES="no" + MAVEN_PATH=${MAVEN_PATH:-} + echo "Path to Maven is [${MAVEN_PATH}]" + REPO_NAME=${PWD##*/} + echo "Repo name is [${REPO_NAME}]" + SPRING_CLOUD_STATIC_REPO=${SPRING_CLOUD_STATIC_REPO:-git@github.com:spring-cloud/spring-cloud-static.git} + echo "Spring Cloud Static repo is [${SPRING_CLOUD_STATIC_REPO}" +} + +# Check if gh-pages exists and docs have been built +function check_if_anything_to_sync() { + git remote set-url --push origin `git config remote.origin.url | sed -e 's/^git:/https:/'` + + if ! (git remote set-branches --add origin gh-pages && git fetch -q); then + echo "No gh-pages, so not syncing" + exit 0 + fi + + if ! [ -d docs/target/generated-docs ] && ! [ "${BUILD}" == "yes" ]; then + echo "No gh-pages sources in docs/target/generated-docs, so not syncing" + exit 0 + fi +} + +function retrieve_current_branch() { + # Code getting the name of the current branch. For master we want to publish as we did until now + # http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch + # If there is a branch already passed will reuse it - otherwise will try to find it + CURRENT_BRANCH=${BRANCH} + if [[ -z "${CURRENT_BRANCH}" ]] ; then + CURRENT_BRANCH=$(git symbolic-ref -q HEAD) + CURRENT_BRANCH=${CURRENT_BRANCH##refs/heads/} + CURRENT_BRANCH=${CURRENT_BRANCH:-HEAD} + fi + echo "Current branch is [${CURRENT_BRANCH}]" + git checkout ${CURRENT_BRANCH} || echo "Failed to check the branch... continuing with the script" +} + +# Switches to the provided value of the release version. We always prefix it with `v` +function switch_to_tag() { + git checkout v${VERSION} +} + +# Build the docs if switch is on +function build_docs_if_applicable() { + if [[ "${BUILD}" == "yes" ]] ; then + ./mvnw clean install -P docs -pl docs -DskipTests + fi +} + +# Get the name of the `docs.main` property +# Get whitelisted branches - assumes that a `docs` module is available under `docs` profile +function retrieve_doc_properties() { + MAIN_ADOC_VALUE=$("${MAVEN_PATH}"mvn -q \ + -Dexec.executable="echo" \ + -Dexec.args='${docs.main}' \ + --non-recursive \ + org.codehaus.mojo:exec-maven-plugin:1.3.1:exec) + echo "Extracted 'main.adoc' from Maven build [${MAIN_ADOC_VALUE}]" + + + WHITELIST_PROPERTY=${WHITELIST_PROPERTY:-"docs.whitelisted.branches"} + WHITELISTED_BRANCHES_VALUE=$("${MAVEN_PATH}"mvn -q \ + -Dexec.executable="echo" \ + -Dexec.args="\${${WHITELIST_PROPERTY}}" \ + org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \ + -P docs \ + -pl docs) + echo "Extracted '${WHITELIST_PROPERTY}' from Maven build [${WHITELISTED_BRANCHES_VALUE}]" +} + +# Stash any outstanding changes +function stash_changes() { + git diff-index --quiet HEAD && dirty=$? || (echo "Failed to check if the current repo is dirty. Assuming that it is." && dirty="1") + if [ "$dirty" != "0" ]; then git stash; fi +} + +# Switch to gh-pages branch to sync it with current branch +function add_docs_from_target() { + local DESTINATION_REPO_FOLDER + if [[ -z "${DESTINATION}" && -z "${CLONE}" ]] ; then + DESTINATION_REPO_FOLDER=${ROOT_FOLDER} + elif [[ "${CLONE}" == "yes" ]]; then + mkdir -p ${ROOT_FOLDER}/target + local clonedStatic=${ROOT_FOLDER}/target/spring-cloud-static + if [[ ! -e "${clonedStatic}/.git" ]]; then + echo "Cloning Spring Cloud Static to target" + git clone ${SPRING_CLOUD_STATIC_REPO} ${clonedStatic} && git checkout gh-pages + else + echo "Spring Cloud Static already cloned - will pull changes" + cd ${clonedStatic} && git checkout gh-pages && git pull origin gh-pages + fi + DESTINATION_REPO_FOLDER=${clonedStatic}/${REPO_NAME} + mkdir -p ${DESTINATION_REPO_FOLDER} + else + if [[ ! -e "${DESTINATION}/.git" ]]; then + echo "[${DESTINATION}] is not a git repository" + exit 1 + fi + DESTINATION_REPO_FOLDER=${DESTINATION}/${REPO_NAME} + mkdir -p ${DESTINATION_REPO_FOLDER} + echo "Destination was provided [${DESTINATION}]" + fi + cd ${DESTINATION_REPO_FOLDER} + git checkout gh-pages + git pull origin gh-pages + + # Add git branches + ################################################################### + if [[ -z "${VERSION}" ]] ; then + copy_docs_for_current_version + else + copy_docs_for_provided_version + fi + commit_changes_if_applicable +} + + +# Copies the docs by using the retrieved properties from Maven build +function copy_docs_for_current_version() { + if [[ "${CURRENT_BRANCH}" == "master" ]] ; then + echo -e "Current branch is master - will copy the current docs only to the root folder" + for f in docs/target/generated-docs/*; do + file=${f#docs/target/generated-docs/*} + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then + # Not ignored... + cp -rf $f ${ROOT_FOLDER}/ + git add -A ${ROOT_FOLDER}/$file + fi + done + COMMIT_CHANGES="yes" + else + echo -e "Current branch is [${CURRENT_BRANCH}]" + # http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin + if [[ ",${WHITELISTED_BRANCHES_VALUE}," = *",${CURRENT_BRANCH},"* ]] ; then + mkdir -p ${ROOT_FOLDER}/${CURRENT_BRANCH} + echo -e "Branch [${CURRENT_BRANCH}] is whitelisted! Will copy the current docs to the [${CURRENT_BRANCH}] folder" + for f in docs/target/generated-docs/*; do + file=${f#docs/target/generated-docs/*} + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then + # Not ignored... + # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html + if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then + # We don't want to copy the spring-cloud-sleuth.html + # we want it to be converted to index.html + cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html + git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html + else + cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH} + git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/$file + fi + fi + done + COMMIT_CHANGES="yes" + else + echo -e "Branch [${CURRENT_BRANCH}] is not on the white list! Check out the Maven [${WHITELIST_PROPERTY}] property in + [docs] module available under [docs] profile. Won't commit any changes to gh-pages for this branch." + fi + fi +} + +# Copies the docs by using the explicitly provided version +function copy_docs_for_provided_version() { + local FOLDER=${DESTINATION_REPO_FOLDER}/${VERSION} + mkdir -p ${FOLDER} + echo -e "Current tag is [v${VERSION}] Will copy the current docs to the [${FOLDER}] folder" + for f in ${ROOT_FOLDER}/docs/target/generated-docs/*; do + file=${f#${ROOT_FOLDER}/docs/target/generated-docs/*} + copy_docs_for_branch ${file} ${FOLDER} + done + COMMIT_CHANGES="yes" + CURRENT_BRANCH="v${VERSION}" +} + +# Copies the docs from target to the provided destination +# Params: +# $1 - file from target +# $2 - destination to which copy the files +function copy_docs_for_branch() { + local file=$1 + local destination=$2 + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^${file}$; then + # Not ignored... + # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html + if [[ ("${file}" == "${MAIN_ADOC_VALUE}.html") || ("${file}" == "${REPO_NAME}.html") ]] ; then + # We don't want to copy the spring-cloud-sleuth.html + # we want it to be converted to index.html + cp -rf $f ${destination}/index.html + git add -A ${destination}/index.html + else + cp -rf $f ${destination} + git add -A ${destination}/$file + fi + fi +} + +function commit_changes_if_applicable() { + if [[ "${COMMIT_CHANGES}" == "yes" ]] ; then + COMMIT_SUCCESSFUL="no" + git commit -a -m "Sync docs from ${CURRENT_BRANCH} to gh-pages" && COMMIT_SUCCESSFUL="yes" || echo "Failed to commit changes" + + # Uncomment the following push if you want to auto push to + # the gh-pages branch whenever you commit to master locally. + # This is a little extreme. Use with care! + ################################################################### + if [[ "${COMMIT_SUCCESSFUL}" == "yes" ]] ; then + git push origin gh-pages + fi + fi +} + +# Switch back to the previous branch and exit block +function checkout_previous_branch() { + # If -version was provided we need to come back to root project + cd ${ROOT_FOLDER} + git checkout ${CURRENT_BRANCH} || echo "Failed to check the branch... continuing with the script" + if [ "$dirty" != "0" ]; then git stash pop; fi + exit 0 +} + +# Assert if properties have been properly passed +function assert_properties() { +echo "VERSION [${VERSION}], DESTINATION [${DESTINATION}], CLONE [${CLONE}]" +if [[ "${VERSION}" != "" && (-z "${DESTINATION}" && -z "${CLONE}") ]] ; then echo "Version was set but destination / clone was not!"; exit 1;fi +if [[ ("${DESTINATION}" != "" && "${CLONE}" != "") && -z "${VERSION}" ]] ; then echo "Destination / clone was set but version was not!"; exit 1;fi +if [[ "${DESTINATION}" != "" && "${CLONE}" == "yes" ]] ; then echo "Destination and clone was set. Pick one!"; exit 1;fi +} + +# Prints the usage +function print_usage() { +cat </` +- if the destination switch is passed (-d) then the script will check if the provided dir is a git repo and then will + switch to gh-pages of that repo and copy the generated docs to `docs//` + +USAGE: + +You can use the following options: + +-v|--version - the script will apply the whole procedure for a particular library version +-d|--destination - the root of destination folder where the docs should be copied. You have to use the full path. + E.g. point to spring-cloud-static folder. Can't be used with (-c) +-b|--build - will run the standard build process after checking out the branch +-c|--clone - will automatically clone the spring-cloud-static repo instead of providing the destination. + Obviously can't be used with (-d) + +EOF +} + + +# ========================================== +# ____ ____ _____ _____ _____ _______ +# / ____|/ ____| __ \|_ _| __ \__ __| +# | (___ | | | |__) | | | | |__) | | | +# \___ \| | | _ / | | | ___/ | | +# ____) | |____| | \ \ _| |_| | | | +# |_____/ \_____|_| \_\_____|_| |_| +# +# ========================================== + +while [[ $# > 0 ]] +do +key="$1" +case ${key} in + -v|--version) + VERSION="$2" + shift # past argument + ;; + -d|--destination) + DESTINATION="$2" + shift # past argument + ;; + -b|--build) + BUILD="yes" + ;; + -c|--clone) + CLONE="yes" + ;; + -h|--help) + print_usage + exit 0 + ;; + *) + echo "Invalid option: [$1]" + print_usage + exit 1 + ;; +esac +shift # past argument or value +done + +assert_properties +set_default_props +check_if_anything_to_sync +if [[ -z "${VERSION}" ]] ; then + retrieve_current_branch +else + switch_to_tag +fi +build_docs_if_applicable +retrieve_doc_properties +stash_changes +add_docs_from_target +checkout_previous_branch \ No newline at end of file diff --git a/docs/target/generated-docs/spring-cloud-commons.html b/docs/target/generated-docs/spring-cloud-commons.html new file mode 100644 index 00000000..2059a373 --- /dev/null +++ b/docs/target/generated-docs/spring-cloud-commons.html @@ -0,0 +1,1131 @@ + + + + + + + +Cloud Native Applications + + + + + +
+
+
+
+

Cloud Native is a style of application development that encourages easy adoption of best practices in the areas of continuous delivery and value-driven development. A related discipline is that of building 12-factor Apps in which development practices are aligned with delivery and operations goals, for instance by using declarative programming and management and monitoring. Spring Cloud facilitates these styles of development in a number of specific ways and the starting point is a set of features that all components in a distributed system either need or need easy access to when required.

+
+
+

Many of those features are covered by Spring Boot, which we build on in Spring Cloud. Some more are delivered by Spring Cloud as two libraries: Spring Cloud Context and Spring Cloud Commons. Spring Cloud Context provides utilities and special services for the ApplicationContext of a Spring Cloud application (bootstrap context, encryption, refresh scope and environment endpoints). Spring Cloud Commons is a set of abstractions and common classes used in different Spring Cloud implementations (eg. Spring Cloud Netflix vs. Spring Cloud Consul).

+
+
+

If you are getting an exception due to "Illegal key size" and you are using Sun’s JDK, you need to install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files. See the following links for more information:

+
+
+ +
+
+

Extract files into JDK/jre/lib/security folder (whichever version of JRE/JDK x64/x86 you are using).

+
+
+ + + + + +
+
Note
+
+Spring Cloud is released under the non-restrictive Apache 2.0 license. If you would like to contribute to this section of the documentation or if you find an error, please find the source code and issue trackers in the project at github. +
+
+
+
+
+

Spring Cloud Context: Application Context Services

+
+
+

Spring Boot has an opinionated view of how to build an application +with Spring: for instance it has conventional locations for common +configuration file, and endpoints for common management and monitoring +tasks. Spring Cloud builds on top of that and adds a few features that +probably all components in a system would use or occasionally need.

+
+
+

The Bootstrap Application Context

+
+

A Spring Cloud application operates by creating a "bootstrap" +context, which is a parent context for the main application. Out of +the box it is responsible for loading configuration properties from +the external sources, and also decrypting properties in the local +external configuration files. The two contexts share an Environment +which is the source of external properties for any Spring +application. Bootstrap properties are added with high precedence, so +they cannot be overridden by local configuration, by default.

+
+
+

The bootstrap context uses a different convention for locating +external configuration than the main application context, so instead +of application.yml (or .properties) you use bootstrap.yml, +keeping the external configuration for bootstrap and main context +nicely separate. Example:

+
+
+
bootstrap.yml
+
+
spring:
+  application:
+    name: foo
+  cloud:
+    config:
+      uri: ${SPRING_CONFIG_URI:http://localhost:8888}
+
+
+
+

It is a good idea to set the spring.application.name (in +bootstrap.yml or application.yml) if your application needs any +application-specific configuration from the server.

+
+
+

You can disable the bootstrap process completely by setting +spring.cloud.bootstrap.enabled=false (e.g. in System properties).

+
+
+
+

Application Context Hierarchies

+
+

If you build an application context from SpringApplication or +SpringApplicationBuilder, then the Bootstrap context is added as a +parent to that context. It is a feature of Spring that child contexts +inherit property sources and profiles from their parent, so the "main" +application context will contain additional property sources, compared +to building the same context without Spring Cloud Config. The +additional property sources are:

+
+
+
    +
  • +

    "bootstrap": an optional CompositePropertySource appears with high +priority if any PropertySourceLocators are found in the Bootstrap +context, and they have non-empty properties. An example would be +properties from the Spring Cloud Config Server. See +below for instructions +on how to customize the contents of this property source.

    +
  • +
  • +

    "applicationConfig: [classpath:bootstrap.yml]" (and friends if +Spring profiles are active). If you have a bootstrap.yml (or +properties) then those properties are used to configure the Bootstrap +context, and then they get added to the child context when its parent +is set. They have lower precedence than the application.yml (or +properties) and any other property sources that are added to the child +as a normal part of the process of creating a Spring Boot +application. See below for +instructions on how to customize the contents of these property +sources.

    +
  • +
+
+
+

Because of the ordering rules of property sources the "bootstrap" +entries take precedence, but note that these do not contain any data +from bootstrap.yml, which has very low precedence, but can be used +to set defaults.

+
+
+

You can extend the context hierarchy by simply setting the parent +context of any ApplicationContext you create, e.g. using its own +interface, or with the SpringApplicationBuilder convenience methods +(parent(), child() and sibling()). The bootstrap context will be +the parent of the most senior ancestor that you create yourself. +Every context in the hierarchy will have its own "bootstrap" property +source (possibly empty) to avoid promoting values inadvertently from +parents down to their descendants. Every context in the hierarchy can +also (in principle) have a different spring.application.name and +hence a different remote property source if there is a Config +Server. Normal Spring application context behaviour rules apply to +property resolution: properties from a child context override those in +the parent, by name and also by property source name (if the child has +a property source with the same name as the parent, the one from the +parent is not included in the child).

+
+
+

Note that the SpringApplicationBuilder allows you to share an +Environment amongst the whole hierarchy, but that is not the +default. Thus, sibling contexts in particular do not need to have the +same profiles or property sources, even though they will share common +things with their parent.

+
+
+
+

Changing the Location of Bootstrap Properties

+
+

The bootstrap.yml (or .properties) location can be specified using +spring.cloud.bootstrap.name (default "bootstrap") or +spring.cloud.bootstrap.location (default empty), e.g. in System +properties. Those properties behave like the spring.config.* +variants with the same name, in fact they are used to set up the +bootstrap ApplicationContext by setting those properties in its +Environment. If there is an active profile (from +spring.profiles.active or through the Environment API in the +context you are building) then properties in that profile will be +loaded as well, just like in a regular Spring Boot app, e.g. from +bootstrap-development.properties for a "development" profile.

+
+
+
+

Overriding the Values of Remote Properties

+
+

The property sources that are added to you application by the +bootstrap context are often "remote" (e.g. from a Config Server), and +by default they cannot be overridden locally, except on the command +line. If you want to allow your applications to override the remote +properties with their own System properties or config files, the +remote property source has to grant it permission by setting +spring.cloud.config.allowOverride=true (it doesn’t work to set this +locally). Once that flag is set there are some finer grained settings +to control the location of the remote properties in relation to System +properties and the application’s local configuration: +spring.cloud.config.overrideNone=true to override with any local +property source, and +spring.cloud.config.overrideSystemProperties=false if only System +properties and env vars should override the remote settings, but not +the local config files.

+
+
+
+

Customizing the Bootstrap Configuration

+
+

The bootstrap context can be trained to do anything you like by adding +entries to /META-INF/spring.factories under the key +org.springframework.cloud.bootstrap.BootstrapConfiguration. This is +a comma-separated list of Spring @Configuration classes which will +be used to create the context. Any beans that you want to be available +to the main application context for autowiring can be created here, +and also there is a special contract for @Beans of type +ApplicationContextInitializer. Classes can be marked with an @Order +if you want to control the startup sequence (the default order is +"last").

+
+
+ + + + + +
+
Warning
+
+Be careful when adding custom BootstrapConfiguration that the +classes you add are not @ComponentScanned by mistake into your +"main" application context, where they might not be needed. +Use a separate package name for boot configuration classes that is +not already covered by your @ComponentScan or @SpringBootApplication +annotated configuration classes. +
+
+
+

The bootstrap process ends by injecting initializers into the main +SpringApplication instance (i.e. the normal Spring Boot startup +sequence, whether it is running as a standalone app or deployed in an +application server). First a bootstrap context is created from the +classes found in spring.factories and then all @Beans of type +ApplicationContextInitializer are added to the main +SpringApplication before it is started.

+
+
+
+

Customizing the Bootstrap Property Sources

+
+

The default property source for external configuration added by the +bootstrap process is the Config Server, but you can add additional +sources by adding beans of type PropertySourceLocator to the +bootstrap context (via spring.factories). You could use this to +insert additional properties from a different server, or from a +database, for instance.

+
+
+

As an example, consider the following trivial custom locator:

+
+
+
+
@Configuration
+public class CustomPropertySourceLocator implements PropertySourceLocator {
+
+    @Override
+    public PropertySource<?> locate(Environment environment) {
+        return new MapPropertySource("customProperty",
+                Collections.<String, Object>singletonMap("property.from.sample.custom.source", "worked as intended"));
+    }
+
+}
+
+
+
+

The Environment that is passed in is the one for the +ApplicationContext about to be created, i.e. the one that we are +supplying additional property sources for. It will already have its +normal Spring Boot-provided property sources, so you can use those to +locate a property source specific to this Environment (e.g. by +keying it on the spring.application.name, as is done in the default +Config Server property source locator).

+
+
+

If you create a jar with this class in it and then add a +META-INF/spring.factories containing:

+
+
+
+
org.springframework.cloud.bootstrap.BootstrapConfiguration=sample.custom.CustomPropertySourceLocator
+
+
+
+

then the "customProperty" PropertySource will show up in any +application that includes that jar on its classpath.

+
+
+
+

Environment Changes

+
+

The application will listen for an EnvironmentChangeEvent and react +to the change in a couple of standard ways (additional +ApplicationListeners can be added as @Beans by the user in the +normal way). When an EnvironmentChangeEvent is observed it will +have a list of key values that have changed, and the application will +use those to:

+
+
+
    +
  • +

    Re-bind any @ConfigurationProperties beans in the context

    +
  • +
  • +

    Set the logger levels for any properties in logging.level.*

    +
  • +
+
+
+

Note that the Config Client does not by default poll for changes in +the Environment, and generally we would not recommend that approach +for detecting changes (although you could set it up with a +@Scheduled annotation). If you have a scaled-out client application +then it is better to broadcast the EnvironmentChangeEvent to all +the instances instead of having them polling for changes (e.g. using +the Spring Cloud +Bus).

+
+
+

The EnvironmentChangeEvent covers a large class of refresh use +cases, as long as you can actually make a change to the Environment +and publish the event (those APIs are public and part of core +Spring). You can verify the changes are bound to +@ConfigurationProperties beans by visiting the /configprops +endpoint (normal Spring Boot Actuator feature). For instance a +DataSource can have its maxPoolSize changed at runtime (the +default DataSource created by Spring Boot is an +@ConfigurationProperties bean) and grow capacity +dynamically. Re-binding @ConfigurationProperties does not cover +another large class of use cases, where you need more control over the +refresh, and where you need a change to be atomic over the whole +ApplicationContext. To address those concerns we have +@RefreshScope.

+
+
+
+

Refresh Scope

+
+

A Spring @Bean that is marked as @RefreshScope will get special +treatment when there is a configuration change. This addresses the +problem of stateful beans that only get their configuration injected +when they are initialized. For instance if a DataSource has open +connections when the database URL is changed via the Environment, we +probably want the holders of those connections to be able to complete +what they are doing. Then the next time someone borrows a connection +from the pool he gets one with the new URL.

+
+
+

Refresh scope beans are lazy proxies that initialize when they are +used (i.e. when a method is called), and the scope acts as a cache of +initialized values. To force a bean to re-initialize on the next +method call you just need to invalidate its cache entry.

+
+
+

The RefreshScope is a bean in the context and it has a public method +refreshAll() to refresh all beans in the scope by clearing the +target cache. There is also a refresh(String) method to refresh an +individual bean by name. This functionality is exposed in the +/refresh endpoint (over HTTP or JMX).

+
+
+ + + + + +
+
Note
+
+@RefreshScope works (technically) on an @Configuration +class, but it might lead to surprising behaviour: e.g. it does not +mean that all the @Beans defined in that class are themselves +@RefreshScope. Specifically, anything that depends on those beans +cannot rely on them being updated when a refresh is initiated, unless +it is itself in @RefreshScope (in which it will be rebuilt on a +refresh and its dependencies re-injected, at which point they will be +re-initialized from the refreshed @Configuration). +
+
+
+
+

Encryption and Decryption

+
+

Spring Cloud has an Environment pre-processor for decrypting +property values locally. It follows the same rules as the Config +Server, and has the same external configuration via encrypt.*. Thus +you can use encrypted values in the form {cipher}* and as long as +there is a valid key then they will be decrypted before the main +application context gets the Environment. To use the encryption +features in an application you need to include Spring Security RSA in +your classpath (Maven co-ordinates +"org.springframework.security:spring-security-rsa") and you also need +the full strength JCE extensions in your JVM.

+
+
+

If you are getting an exception due to "Illegal key size" and you are using Sun’s JDK, you need to install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files. See the following links for more information:

+
+
+ +
+
+

Extract files into JDK/jre/lib/security folder (whichever version of JRE/JDK x64/x86 you are using).

+
+
+
+

Endpoints

+
+

For a Spring Boot Actuator application there are some additional management endpoints:

+
+
+
    +
  • +

    POST to /env to update the Environment and rebind @ConfigurationProperties and log levels

    +
  • +
  • +

    /refresh for re-loading the boot strap context and refreshing the @RefreshScope beans

    +
  • +
  • +

    /restart for closing the ApplicationContext and restarting it (disabled by default)

    +
  • +
  • +

    /pause and /resume for calling the Lifecycle methods (stop() and start() on the ApplicationContext)

    +
  • +
+
+
+
+
+
+

Spring Cloud Commons: Common Abstractions

+
+
+

Patterns such as service discovery, load balancing and circuit breakers lend themselves to a common abstraction layer that can be consumed by all Spring Cloud clients, independent of the implementation (e.g. discovery via Eureka or Consul).

+
+
+

@EnableDiscoveryClient

+
+

Commons provides the @EnableDiscoveryClient annotation. This looks for implementations of the DiscoveryClient interface via META-INF/spring.factories. Implementations of Discovery Client will add a configuration class to spring.factories under the org.springframework.cloud.client.discovery.EnableDiscoveryClient key. Examples of DiscoveryClient implementations: are Spring Cloud Netflix Eureka, Spring Cloud Consul Discovery and Spring Cloud Zookeeper Discovery.

+
+
+

By default, implementations of DiscoveryClient will auto-register the local Spring Boot server with the remote discovery server. This can be disabled by setting autoRegister=false in @EnableDiscoveryClient.

+
+
+
+

ServiceRegistry

+
+

Commons now provides a ServiceRegistry interface which provides methods like register(Registration) and deregister(Registration) which allow you to provide custom registered services. Registration is a marker interface.

+
+
+
+
@Configuration
+@EnableDiscoveryClient(autoRegister=false)
+public class MyConfiguration {
+    private ServiceRegistry registry;
+
+    public MyConfiguration(ServiceRegistry registry) {
+        this.registry = registry;
+    }
+
+    // called via some external process, such as an event or a custom actuator endpoint
+    public void register() {
+        Registration registration = constructRegistration();
+        this.registry.register(registration);
+    }
+}
+
+
+
+

Each ServiceRegistry implementation has its own Registry implementation.

+
+
+

ServiceRegistry Auto-Registration

+
+

By default, the ServiceRegistry implementation will auto-register the running service. To disable that behavior, there are two methods. You can set @EnableDiscoveryClient(autoRegister=false) to permanently disable auto-registration. You can also set spring.cloud.service-registry.auto-registration.enabled=false to disable the behavior via configuration.

+
+
+
+

Service Registry Actuator Endpoint

+
+

A /service-registry actuator endpoint is provided by Commons. This endpoint relys on a Registration bean in the Spring Application Context. Calling /service-registry/instance-status via a GET will return the status of the Registration. A POST to the same endpoint with a String body will change the status of the current Registration to the new value. Please see the documentation of the ServiceRegistry implementation you are using for the allowed values for updating the status and the values retured for the status.

+
+
+
+
+

Spring RestTemplate as a Load Balancer Client

+
+

RestTemplate can be automatically configured to use ribbon. To create a load balanced RestTemplate create a RestTemplate @Bean and use the @LoadBalanced qualifier.

+
+
+ + + + + +
+
Warning
+
+A RestTemplate bean is no longer created via auto configuration. It must be created by individual applications. +
+
+
+
+
@Configuration
+public class MyConfiguration {
+
+    @LoadBalanced
+    @Bean
+    RestTemplate restTemplate() {
+        return new RestTemplate();
+    }
+}
+
+public class MyClass {
+    @Autowired
+    private RestTemplate restTemplate;
+
+    public String doOtherStuff() {
+        String results = restTemplate.getForObject("http://stores/stores", String.class);
+        return results;
+    }
+}
+
+
+
+

The URI needs to use a virtual host name (ie. service name, not a host name). +The Ribbon client is used to create a full physical address. See +RibbonAutoConfiguration +for details of how the RestTemplate is set up.

+
+
+

Retrying Failed Requests

+
+

A load balanced RestTemplate can be configured to retry failed requests. +By default this logic is disabled, you can enable it by adding Spring Retry to your application’s classpath. The load balanced RestTemplate will +honor some of the Ribbon configuration values related to retrying failed requests. If +you would like to disable the retry logic with Spring Retry on the classpath +you can set spring.cloud.loadbalancer.retry.enabled=false. +The properties you can use are client.ribbon.MaxAutoRetries, +client.ribbon.MaxAutoRetriesNextServer, and client.ribbon.OkToRetryOnAllOperations. +See the Ribbon documentation +for a description of what there properties do.

+
+
+ + + + + +
+
Note
+
+client in the above examples should be replaced with your Ribbon client’s +name. +
+
+
+
+
+

Multiple RestTemplate objects

+
+

If you want a RestTemplate that is not load balanced, create a RestTemplate +bean and inject it as normal. To access the load balanced RestTemplate use +the @LoadBalanced qualifier when you create your @Bean.

+
+
+ + + + + +
+
Important
+
+Notice the @Primary annotation on the plain RestTemplate declaration in the example below, to disambiguate the unqualified @Autowired injection. +
+
+
+
+
@Configuration
+public class MyConfiguration {
+
+    @LoadBalanced
+    @Bean
+    RestTemplate loadBalanced() {
+        return new RestTemplate();
+    }
+
+    @Primary
+    @Bean
+    RestTemplate restTemplate() {
+        return new RestTemplate();
+    }
+}
+
+public class MyClass {
+    @Autowired
+    private RestTemplate restTemplate;
+
+    @Autowired
+    @LoadBalanced
+    private RestTemplate loadBalanced;
+
+    public String doOtherStuff() {
+        return loadBalanced.getForObject("http://stores/stores", String.class);
+    }
+
+    public String doStuff() {
+        return restTemplate.getForObject("http://example.com", String.class);
+    }
+}
+
+
+
+ + + + + +
+
Tip
+
+If you see errors like java.lang.IllegalArgumentException: Can not set org.springframework.web.client.RestTemplate field com.my.app.Foo.restTemplate to com.sun.proxy.$Proxy89 try injecting RestOperations instead or setting spring.aop.proxyTargetClass=true. +
+
+
+
+

Ignore Network Interfaces

+
+

Sometimes it is useful to ignore certain named network interfaces so they can be excluded from Service Discovery registration (eg. running in a Docker container). A list of regular expressions can be set that will cause the desired network interfaces to be ignored. The following configuration will ignore the "docker0" interface and all interfaces that start with "veth".

+
+
+
application.yml
+
+
spring:
+  cloud:
+    inetutils:
+      ignoredInterfaces:
+        - docker0
+        - veth.*
+
+
+
+

You can also force to use only specified network addresses using list of regular expressions:

+
+
+
application.yml
+
+
spring:
+  cloud:
+    inetutils:
+      preferredNetworks:
+        - 192.168
+        - 10.0
+
+
+
+

You can also force to use only site local addresses. See Inet4Address.html.isSiteLocalAddress() for more details what is site local address.

+
+
+
application.yml
+
+
spring:
+  cloud:
+    inetutils:
+      useOnlySiteLocalInterfaces: true
+
+
+
+
+
+
+ + \ No newline at end of file diff --git a/docs/target/maven-archiver/pom.properties b/docs/target/maven-archiver/pom.properties new file mode 100644 index 00000000..9321bab7 --- /dev/null +++ b/docs/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Created by Apache Maven 3.3.9 +#Tue Apr 04 02:50:41 UTC 2017 +version=1.2.0.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-commons-docs diff --git a/docs/target/spring-cloud-commons-docs-1.2.0.BUILD-SNAPSHOT-tests.jar b/docs/target/spring-cloud-commons-docs-1.2.0.BUILD-SNAPSHOT-tests.jar new file mode 100644 index 00000000..716b6579 Binary files /dev/null and b/docs/target/spring-cloud-commons-docs-1.2.0.BUILD-SNAPSHOT-tests.jar differ diff --git a/docs/target/spring-cloud-commons-docs-1.2.0.BUILD-SNAPSHOT.zip b/docs/target/spring-cloud-commons-docs-1.2.0.BUILD-SNAPSHOT.zip new file mode 100644 index 00000000..4b88a3f6 Binary files /dev/null and b/docs/target/spring-cloud-commons-docs-1.2.0.BUILD-SNAPSHOT.zip differ diff --git a/ghpages.sh b/ghpages.sh new file mode 100644 index 00000000..57c5da3a --- /dev/null +++ b/ghpages.sh @@ -0,0 +1,330 @@ +#!/bin/bash -x + +set -e + +# Set default props like MAVEN_PATH, ROOT_FOLDER etc. +function set_default_props() { + # The script should be executed from the root folder + ROOT_FOLDER=`pwd` + echo "Current folder is ${ROOT_FOLDER}" + + if [[ ! -e "${ROOT_FOLDER}/.git" ]]; then + echo "You're not in the root folder of the project!" + exit 1 + fi + + # Prop that will let commit the changes + COMMIT_CHANGES="no" + MAVEN_PATH=${MAVEN_PATH:-} + echo "Path to Maven is [${MAVEN_PATH}]" + REPO_NAME=${PWD##*/} + echo "Repo name is [${REPO_NAME}]" + SPRING_CLOUD_STATIC_REPO=${SPRING_CLOUD_STATIC_REPO:-git@github.com:spring-cloud/spring-cloud-static.git} + echo "Spring Cloud Static repo is [${SPRING_CLOUD_STATIC_REPO}" +} + +# Check if gh-pages exists and docs have been built +function check_if_anything_to_sync() { + git remote set-url --push origin `git config remote.origin.url | sed -e 's/^git:/https:/'` + + if ! (git remote set-branches --add origin gh-pages && git fetch -q); then + echo "No gh-pages, so not syncing" + exit 0 + fi + + if ! [ -d docs/target/generated-docs ] && ! [ "${BUILD}" == "yes" ]; then + echo "No gh-pages sources in docs/target/generated-docs, so not syncing" + exit 0 + fi +} + +function retrieve_current_branch() { + # Code getting the name of the current branch. For master we want to publish as we did until now + # http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch + # If there is a branch already passed will reuse it - otherwise will try to find it + CURRENT_BRANCH=${BRANCH} + if [[ -z "${CURRENT_BRANCH}" ]] ; then + CURRENT_BRANCH=$(git symbolic-ref -q HEAD) + CURRENT_BRANCH=${CURRENT_BRANCH##refs/heads/} + CURRENT_BRANCH=${CURRENT_BRANCH:-HEAD} + fi + echo "Current branch is [${CURRENT_BRANCH}]" + git checkout ${CURRENT_BRANCH} || echo "Failed to check the branch... continuing with the script" +} + +# Switches to the provided value of the release version. We always prefix it with `v` +function switch_to_tag() { + git checkout v${VERSION} +} + +# Build the docs if switch is on +function build_docs_if_applicable() { + if [[ "${BUILD}" == "yes" ]] ; then + ./mvnw clean install -P docs -pl docs -DskipTests + fi +} + +# Get the name of the `docs.main` property +# Get whitelisted branches - assumes that a `docs` module is available under `docs` profile +function retrieve_doc_properties() { + MAIN_ADOC_VALUE=$("${MAVEN_PATH}"mvn -q \ + -Dexec.executable="echo" \ + -Dexec.args='${docs.main}' \ + --non-recursive \ + org.codehaus.mojo:exec-maven-plugin:1.3.1:exec) + echo "Extracted 'main.adoc' from Maven build [${MAIN_ADOC_VALUE}]" + + + WHITELIST_PROPERTY=${WHITELIST_PROPERTY:-"docs.whitelisted.branches"} + WHITELISTED_BRANCHES_VALUE=$("${MAVEN_PATH}"mvn -q \ + -Dexec.executable="echo" \ + -Dexec.args="\${${WHITELIST_PROPERTY}}" \ + org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \ + -P docs \ + -pl docs) + echo "Extracted '${WHITELIST_PROPERTY}' from Maven build [${WHITELISTED_BRANCHES_VALUE}]" +} + +# Stash any outstanding changes +function stash_changes() { + git diff-index --quiet HEAD && dirty=$? || (echo "Failed to check if the current repo is dirty. Assuming that it is." && dirty="1") + if [ "$dirty" != "0" ]; then git stash; fi +} + +# Switch to gh-pages branch to sync it with current branch +function add_docs_from_target() { + local DESTINATION_REPO_FOLDER + if [[ -z "${DESTINATION}" && -z "${CLONE}" ]] ; then + DESTINATION_REPO_FOLDER=${ROOT_FOLDER} + elif [[ "${CLONE}" == "yes" ]]; then + mkdir -p ${ROOT_FOLDER}/target + local clonedStatic=${ROOT_FOLDER}/target/spring-cloud-static + if [[ ! -e "${clonedStatic}/.git" ]]; then + echo "Cloning Spring Cloud Static to target" + git clone ${SPRING_CLOUD_STATIC_REPO} ${clonedStatic} && git checkout gh-pages + else + echo "Spring Cloud Static already cloned - will pull changes" + cd ${clonedStatic} && git checkout gh-pages && git pull origin gh-pages + fi + DESTINATION_REPO_FOLDER=${clonedStatic}/${REPO_NAME} + mkdir -p ${DESTINATION_REPO_FOLDER} + else + if [[ ! -e "${DESTINATION}/.git" ]]; then + echo "[${DESTINATION}] is not a git repository" + exit 1 + fi + DESTINATION_REPO_FOLDER=${DESTINATION}/${REPO_NAME} + mkdir -p ${DESTINATION_REPO_FOLDER} + echo "Destination was provided [${DESTINATION}]" + fi + cd ${DESTINATION_REPO_FOLDER} + git checkout gh-pages + git pull origin gh-pages + + # Add git branches + ################################################################### + if [[ -z "${VERSION}" ]] ; then + copy_docs_for_current_version + else + copy_docs_for_provided_version + fi + commit_changes_if_applicable +} + + +# Copies the docs by using the retrieved properties from Maven build +function copy_docs_for_current_version() { + if [[ "${CURRENT_BRANCH}" == "master" ]] ; then + echo -e "Current branch is master - will copy the current docs only to the root folder" + for f in docs/target/generated-docs/*; do + file=${f#docs/target/generated-docs/*} + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then + # Not ignored... + cp -rf $f ${ROOT_FOLDER}/ + git add -A ${ROOT_FOLDER}/$file + fi + done + COMMIT_CHANGES="yes" + else + echo -e "Current branch is [${CURRENT_BRANCH}]" + # http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin + if [[ ",${WHITELISTED_BRANCHES_VALUE}," = *",${CURRENT_BRANCH},"* ]] ; then + mkdir -p ${ROOT_FOLDER}/${CURRENT_BRANCH} + echo -e "Branch [${CURRENT_BRANCH}] is whitelisted! Will copy the current docs to the [${CURRENT_BRANCH}] folder" + for f in docs/target/generated-docs/*; do + file=${f#docs/target/generated-docs/*} + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then + # Not ignored... + # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html + if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then + # We don't want to copy the spring-cloud-sleuth.html + # we want it to be converted to index.html + cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html + git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html + else + cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH} + git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/$file + fi + fi + done + COMMIT_CHANGES="yes" + else + echo -e "Branch [${CURRENT_BRANCH}] is not on the white list! Check out the Maven [${WHITELIST_PROPERTY}] property in + [docs] module available under [docs] profile. Won't commit any changes to gh-pages for this branch." + fi + fi +} + +# Copies the docs by using the explicitly provided version +function copy_docs_for_provided_version() { + local FOLDER=${DESTINATION_REPO_FOLDER}/${VERSION} + mkdir -p ${FOLDER} + echo -e "Current tag is [v${VERSION}] Will copy the current docs to the [${FOLDER}] folder" + for f in ${ROOT_FOLDER}/docs/target/generated-docs/*; do + file=${f#${ROOT_FOLDER}/docs/target/generated-docs/*} + copy_docs_for_branch ${file} ${FOLDER} + done + COMMIT_CHANGES="yes" + CURRENT_BRANCH="v${VERSION}" +} + +# Copies the docs from target to the provided destination +# Params: +# $1 - file from target +# $2 - destination to which copy the files +function copy_docs_for_branch() { + local file=$1 + local destination=$2 + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^${file}$; then + # Not ignored... + # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html + if [[ ("${file}" == "${MAIN_ADOC_VALUE}.html") || ("${file}" == "${REPO_NAME}.html") ]] ; then + # We don't want to copy the spring-cloud-sleuth.html + # we want it to be converted to index.html + cp -rf $f ${destination}/index.html + git add -A ${destination}/index.html + else + cp -rf $f ${destination} + git add -A ${destination}/$file + fi + fi +} + +function commit_changes_if_applicable() { + if [[ "${COMMIT_CHANGES}" == "yes" ]] ; then + COMMIT_SUCCESSFUL="no" + git commit -a -m "Sync docs from ${CURRENT_BRANCH} to gh-pages" && COMMIT_SUCCESSFUL="yes" || echo "Failed to commit changes" + + # Uncomment the following push if you want to auto push to + # the gh-pages branch whenever you commit to master locally. + # This is a little extreme. Use with care! + ################################################################### + if [[ "${COMMIT_SUCCESSFUL}" == "yes" ]] ; then + git push origin gh-pages + fi + fi +} + +# Switch back to the previous branch and exit block +function checkout_previous_branch() { + # If -version was provided we need to come back to root project + cd ${ROOT_FOLDER} + git checkout ${CURRENT_BRANCH} || echo "Failed to check the branch... continuing with the script" + if [ "$dirty" != "0" ]; then git stash pop; fi + exit 0 +} + +# Assert if properties have been properly passed +function assert_properties() { +echo "VERSION [${VERSION}], DESTINATION [${DESTINATION}], CLONE [${CLONE}]" +if [[ "${VERSION}" != "" && (-z "${DESTINATION}" && -z "${CLONE}") ]] ; then echo "Version was set but destination / clone was not!"; exit 1;fi +if [[ ("${DESTINATION}" != "" && "${CLONE}" != "") && -z "${VERSION}" ]] ; then echo "Destination / clone was set but version was not!"; exit 1;fi +if [[ "${DESTINATION}" != "" && "${CLONE}" == "yes" ]] ; then echo "Destination and clone was set. Pick one!"; exit 1;fi +} + +# Prints the usage +function print_usage() { +cat </` +- if the destination switch is passed (-d) then the script will check if the provided dir is a git repo and then will + switch to gh-pages of that repo and copy the generated docs to `docs//` + +USAGE: + +You can use the following options: + +-v|--version - the script will apply the whole procedure for a particular library version +-d|--destination - the root of destination folder where the docs should be copied. You have to use the full path. + E.g. point to spring-cloud-static folder. Can't be used with (-c) +-b|--build - will run the standard build process after checking out the branch +-c|--clone - will automatically clone the spring-cloud-static repo instead of providing the destination. + Obviously can't be used with (-d) + +EOF +} + + +# ========================================== +# ____ ____ _____ _____ _____ _______ +# / ____|/ ____| __ \|_ _| __ \__ __| +# | (___ | | | |__) | | | | |__) | | | +# \___ \| | | _ / | | | ___/ | | +# ____) | |____| | \ \ _| |_| | | | +# |_____/ \_____|_| \_\_____|_| |_| +# +# ========================================== + +while [[ $# > 0 ]] +do +key="$1" +case ${key} in + -v|--version) + VERSION="$2" + shift # past argument + ;; + -d|--destination) + DESTINATION="$2" + shift # past argument + ;; + -b|--build) + BUILD="yes" + ;; + -c|--clone) + CLONE="yes" + ;; + -h|--help) + print_usage + exit 0 + ;; + *) + echo "Invalid option: [$1]" + print_usage + exit 1 + ;; +esac +shift # past argument or value +done + +assert_properties +set_default_props +check_if_anything_to_sync +if [[ -z "${VERSION}" ]] ; then + retrieve_current_branch +else + switch_to_tag +fi +build_docs_if_applicable +retrieve_doc_properties +stash_changes +add_docs_from_target +checkout_previous_branch \ No newline at end of file diff --git a/spring-cloud-commons.html b/spring-cloud-commons.html new file mode 100644 index 00000000..2059a373 --- /dev/null +++ b/spring-cloud-commons.html @@ -0,0 +1,1131 @@ + + + + + + + +Cloud Native Applications + + + + + +
+
+
+
+

Cloud Native is a style of application development that encourages easy adoption of best practices in the areas of continuous delivery and value-driven development. A related discipline is that of building 12-factor Apps in which development practices are aligned with delivery and operations goals, for instance by using declarative programming and management and monitoring. Spring Cloud facilitates these styles of development in a number of specific ways and the starting point is a set of features that all components in a distributed system either need or need easy access to when required.

+
+
+

Many of those features are covered by Spring Boot, which we build on in Spring Cloud. Some more are delivered by Spring Cloud as two libraries: Spring Cloud Context and Spring Cloud Commons. Spring Cloud Context provides utilities and special services for the ApplicationContext of a Spring Cloud application (bootstrap context, encryption, refresh scope and environment endpoints). Spring Cloud Commons is a set of abstractions and common classes used in different Spring Cloud implementations (eg. Spring Cloud Netflix vs. Spring Cloud Consul).

+
+
+

If you are getting an exception due to "Illegal key size" and you are using Sun’s JDK, you need to install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files. See the following links for more information:

+
+
+ +
+
+

Extract files into JDK/jre/lib/security folder (whichever version of JRE/JDK x64/x86 you are using).

+
+
+ + + + + +
+
Note
+
+Spring Cloud is released under the non-restrictive Apache 2.0 license. If you would like to contribute to this section of the documentation or if you find an error, please find the source code and issue trackers in the project at github. +
+
+
+
+
+

Spring Cloud Context: Application Context Services

+
+
+

Spring Boot has an opinionated view of how to build an application +with Spring: for instance it has conventional locations for common +configuration file, and endpoints for common management and monitoring +tasks. Spring Cloud builds on top of that and adds a few features that +probably all components in a system would use or occasionally need.

+
+
+

The Bootstrap Application Context

+
+

A Spring Cloud application operates by creating a "bootstrap" +context, which is a parent context for the main application. Out of +the box it is responsible for loading configuration properties from +the external sources, and also decrypting properties in the local +external configuration files. The two contexts share an Environment +which is the source of external properties for any Spring +application. Bootstrap properties are added with high precedence, so +they cannot be overridden by local configuration, by default.

+
+
+

The bootstrap context uses a different convention for locating +external configuration than the main application context, so instead +of application.yml (or .properties) you use bootstrap.yml, +keeping the external configuration for bootstrap and main context +nicely separate. Example:

+
+
+
bootstrap.yml
+
+
spring:
+  application:
+    name: foo
+  cloud:
+    config:
+      uri: ${SPRING_CONFIG_URI:http://localhost:8888}
+
+
+
+

It is a good idea to set the spring.application.name (in +bootstrap.yml or application.yml) if your application needs any +application-specific configuration from the server.

+
+
+

You can disable the bootstrap process completely by setting +spring.cloud.bootstrap.enabled=false (e.g. in System properties).

+
+
+
+

Application Context Hierarchies

+
+

If you build an application context from SpringApplication or +SpringApplicationBuilder, then the Bootstrap context is added as a +parent to that context. It is a feature of Spring that child contexts +inherit property sources and profiles from their parent, so the "main" +application context will contain additional property sources, compared +to building the same context without Spring Cloud Config. The +additional property sources are:

+
+
+
    +
  • +

    "bootstrap": an optional CompositePropertySource appears with high +priority if any PropertySourceLocators are found in the Bootstrap +context, and they have non-empty properties. An example would be +properties from the Spring Cloud Config Server. See +below for instructions +on how to customize the contents of this property source.

    +
  • +
  • +

    "applicationConfig: [classpath:bootstrap.yml]" (and friends if +Spring profiles are active). If you have a bootstrap.yml (or +properties) then those properties are used to configure the Bootstrap +context, and then they get added to the child context when its parent +is set. They have lower precedence than the application.yml (or +properties) and any other property sources that are added to the child +as a normal part of the process of creating a Spring Boot +application. See below for +instructions on how to customize the contents of these property +sources.

    +
  • +
+
+
+

Because of the ordering rules of property sources the "bootstrap" +entries take precedence, but note that these do not contain any data +from bootstrap.yml, which has very low precedence, but can be used +to set defaults.

+
+
+

You can extend the context hierarchy by simply setting the parent +context of any ApplicationContext you create, e.g. using its own +interface, or with the SpringApplicationBuilder convenience methods +(parent(), child() and sibling()). The bootstrap context will be +the parent of the most senior ancestor that you create yourself. +Every context in the hierarchy will have its own "bootstrap" property +source (possibly empty) to avoid promoting values inadvertently from +parents down to their descendants. Every context in the hierarchy can +also (in principle) have a different spring.application.name and +hence a different remote property source if there is a Config +Server. Normal Spring application context behaviour rules apply to +property resolution: properties from a child context override those in +the parent, by name and also by property source name (if the child has +a property source with the same name as the parent, the one from the +parent is not included in the child).

+
+
+

Note that the SpringApplicationBuilder allows you to share an +Environment amongst the whole hierarchy, but that is not the +default. Thus, sibling contexts in particular do not need to have the +same profiles or property sources, even though they will share common +things with their parent.

+
+
+
+

Changing the Location of Bootstrap Properties

+
+

The bootstrap.yml (or .properties) location can be specified using +spring.cloud.bootstrap.name (default "bootstrap") or +spring.cloud.bootstrap.location (default empty), e.g. in System +properties. Those properties behave like the spring.config.* +variants with the same name, in fact they are used to set up the +bootstrap ApplicationContext by setting those properties in its +Environment. If there is an active profile (from +spring.profiles.active or through the Environment API in the +context you are building) then properties in that profile will be +loaded as well, just like in a regular Spring Boot app, e.g. from +bootstrap-development.properties for a "development" profile.

+
+
+
+

Overriding the Values of Remote Properties

+
+

The property sources that are added to you application by the +bootstrap context are often "remote" (e.g. from a Config Server), and +by default they cannot be overridden locally, except on the command +line. If you want to allow your applications to override the remote +properties with their own System properties or config files, the +remote property source has to grant it permission by setting +spring.cloud.config.allowOverride=true (it doesn’t work to set this +locally). Once that flag is set there are some finer grained settings +to control the location of the remote properties in relation to System +properties and the application’s local configuration: +spring.cloud.config.overrideNone=true to override with any local +property source, and +spring.cloud.config.overrideSystemProperties=false if only System +properties and env vars should override the remote settings, but not +the local config files.

+
+
+
+

Customizing the Bootstrap Configuration

+
+

The bootstrap context can be trained to do anything you like by adding +entries to /META-INF/spring.factories under the key +org.springframework.cloud.bootstrap.BootstrapConfiguration. This is +a comma-separated list of Spring @Configuration classes which will +be used to create the context. Any beans that you want to be available +to the main application context for autowiring can be created here, +and also there is a special contract for @Beans of type +ApplicationContextInitializer. Classes can be marked with an @Order +if you want to control the startup sequence (the default order is +"last").

+
+
+ + + + + +
+
Warning
+
+Be careful when adding custom BootstrapConfiguration that the +classes you add are not @ComponentScanned by mistake into your +"main" application context, where they might not be needed. +Use a separate package name for boot configuration classes that is +not already covered by your @ComponentScan or @SpringBootApplication +annotated configuration classes. +
+
+
+

The bootstrap process ends by injecting initializers into the main +SpringApplication instance (i.e. the normal Spring Boot startup +sequence, whether it is running as a standalone app or deployed in an +application server). First a bootstrap context is created from the +classes found in spring.factories and then all @Beans of type +ApplicationContextInitializer are added to the main +SpringApplication before it is started.

+
+
+
+

Customizing the Bootstrap Property Sources

+
+

The default property source for external configuration added by the +bootstrap process is the Config Server, but you can add additional +sources by adding beans of type PropertySourceLocator to the +bootstrap context (via spring.factories). You could use this to +insert additional properties from a different server, or from a +database, for instance.

+
+
+

As an example, consider the following trivial custom locator:

+
+
+
+
@Configuration
+public class CustomPropertySourceLocator implements PropertySourceLocator {
+
+    @Override
+    public PropertySource<?> locate(Environment environment) {
+        return new MapPropertySource("customProperty",
+                Collections.<String, Object>singletonMap("property.from.sample.custom.source", "worked as intended"));
+    }
+
+}
+
+
+
+

The Environment that is passed in is the one for the +ApplicationContext about to be created, i.e. the one that we are +supplying additional property sources for. It will already have its +normal Spring Boot-provided property sources, so you can use those to +locate a property source specific to this Environment (e.g. by +keying it on the spring.application.name, as is done in the default +Config Server property source locator).

+
+
+

If you create a jar with this class in it and then add a +META-INF/spring.factories containing:

+
+
+
+
org.springframework.cloud.bootstrap.BootstrapConfiguration=sample.custom.CustomPropertySourceLocator
+
+
+
+

then the "customProperty" PropertySource will show up in any +application that includes that jar on its classpath.

+
+
+
+

Environment Changes

+
+

The application will listen for an EnvironmentChangeEvent and react +to the change in a couple of standard ways (additional +ApplicationListeners can be added as @Beans by the user in the +normal way). When an EnvironmentChangeEvent is observed it will +have a list of key values that have changed, and the application will +use those to:

+
+
+
    +
  • +

    Re-bind any @ConfigurationProperties beans in the context

    +
  • +
  • +

    Set the logger levels for any properties in logging.level.*

    +
  • +
+
+
+

Note that the Config Client does not by default poll for changes in +the Environment, and generally we would not recommend that approach +for detecting changes (although you could set it up with a +@Scheduled annotation). If you have a scaled-out client application +then it is better to broadcast the EnvironmentChangeEvent to all +the instances instead of having them polling for changes (e.g. using +the Spring Cloud +Bus).

+
+
+

The EnvironmentChangeEvent covers a large class of refresh use +cases, as long as you can actually make a change to the Environment +and publish the event (those APIs are public and part of core +Spring). You can verify the changes are bound to +@ConfigurationProperties beans by visiting the /configprops +endpoint (normal Spring Boot Actuator feature). For instance a +DataSource can have its maxPoolSize changed at runtime (the +default DataSource created by Spring Boot is an +@ConfigurationProperties bean) and grow capacity +dynamically. Re-binding @ConfigurationProperties does not cover +another large class of use cases, where you need more control over the +refresh, and where you need a change to be atomic over the whole +ApplicationContext. To address those concerns we have +@RefreshScope.

+
+
+
+

Refresh Scope

+
+

A Spring @Bean that is marked as @RefreshScope will get special +treatment when there is a configuration change. This addresses the +problem of stateful beans that only get their configuration injected +when they are initialized. For instance if a DataSource has open +connections when the database URL is changed via the Environment, we +probably want the holders of those connections to be able to complete +what they are doing. Then the next time someone borrows a connection +from the pool he gets one with the new URL.

+
+
+

Refresh scope beans are lazy proxies that initialize when they are +used (i.e. when a method is called), and the scope acts as a cache of +initialized values. To force a bean to re-initialize on the next +method call you just need to invalidate its cache entry.

+
+
+

The RefreshScope is a bean in the context and it has a public method +refreshAll() to refresh all beans in the scope by clearing the +target cache. There is also a refresh(String) method to refresh an +individual bean by name. This functionality is exposed in the +/refresh endpoint (over HTTP or JMX).

+
+
+ + + + + +
+
Note
+
+@RefreshScope works (technically) on an @Configuration +class, but it might lead to surprising behaviour: e.g. it does not +mean that all the @Beans defined in that class are themselves +@RefreshScope. Specifically, anything that depends on those beans +cannot rely on them being updated when a refresh is initiated, unless +it is itself in @RefreshScope (in which it will be rebuilt on a +refresh and its dependencies re-injected, at which point they will be +re-initialized from the refreshed @Configuration). +
+
+
+
+

Encryption and Decryption

+
+

Spring Cloud has an Environment pre-processor for decrypting +property values locally. It follows the same rules as the Config +Server, and has the same external configuration via encrypt.*. Thus +you can use encrypted values in the form {cipher}* and as long as +there is a valid key then they will be decrypted before the main +application context gets the Environment. To use the encryption +features in an application you need to include Spring Security RSA in +your classpath (Maven co-ordinates +"org.springframework.security:spring-security-rsa") and you also need +the full strength JCE extensions in your JVM.

+
+
+

If you are getting an exception due to "Illegal key size" and you are using Sun’s JDK, you need to install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files. See the following links for more information:

+
+
+ +
+
+

Extract files into JDK/jre/lib/security folder (whichever version of JRE/JDK x64/x86 you are using).

+
+
+
+

Endpoints

+
+

For a Spring Boot Actuator application there are some additional management endpoints:

+
+
+
    +
  • +

    POST to /env to update the Environment and rebind @ConfigurationProperties and log levels

    +
  • +
  • +

    /refresh for re-loading the boot strap context and refreshing the @RefreshScope beans

    +
  • +
  • +

    /restart for closing the ApplicationContext and restarting it (disabled by default)

    +
  • +
  • +

    /pause and /resume for calling the Lifecycle methods (stop() and start() on the ApplicationContext)

    +
  • +
+
+
+
+
+
+

Spring Cloud Commons: Common Abstractions

+
+
+

Patterns such as service discovery, load balancing and circuit breakers lend themselves to a common abstraction layer that can be consumed by all Spring Cloud clients, independent of the implementation (e.g. discovery via Eureka or Consul).

+
+
+

@EnableDiscoveryClient

+
+

Commons provides the @EnableDiscoveryClient annotation. This looks for implementations of the DiscoveryClient interface via META-INF/spring.factories. Implementations of Discovery Client will add a configuration class to spring.factories under the org.springframework.cloud.client.discovery.EnableDiscoveryClient key. Examples of DiscoveryClient implementations: are Spring Cloud Netflix Eureka, Spring Cloud Consul Discovery and Spring Cloud Zookeeper Discovery.

+
+
+

By default, implementations of DiscoveryClient will auto-register the local Spring Boot server with the remote discovery server. This can be disabled by setting autoRegister=false in @EnableDiscoveryClient.

+
+
+
+

ServiceRegistry

+
+

Commons now provides a ServiceRegistry interface which provides methods like register(Registration) and deregister(Registration) which allow you to provide custom registered services. Registration is a marker interface.

+
+
+
+
@Configuration
+@EnableDiscoveryClient(autoRegister=false)
+public class MyConfiguration {
+    private ServiceRegistry registry;
+
+    public MyConfiguration(ServiceRegistry registry) {
+        this.registry = registry;
+    }
+
+    // called via some external process, such as an event or a custom actuator endpoint
+    public void register() {
+        Registration registration = constructRegistration();
+        this.registry.register(registration);
+    }
+}
+
+
+
+

Each ServiceRegistry implementation has its own Registry implementation.

+
+
+

ServiceRegistry Auto-Registration

+
+

By default, the ServiceRegistry implementation will auto-register the running service. To disable that behavior, there are two methods. You can set @EnableDiscoveryClient(autoRegister=false) to permanently disable auto-registration. You can also set spring.cloud.service-registry.auto-registration.enabled=false to disable the behavior via configuration.

+
+
+
+

Service Registry Actuator Endpoint

+
+

A /service-registry actuator endpoint is provided by Commons. This endpoint relys on a Registration bean in the Spring Application Context. Calling /service-registry/instance-status via a GET will return the status of the Registration. A POST to the same endpoint with a String body will change the status of the current Registration to the new value. Please see the documentation of the ServiceRegistry implementation you are using for the allowed values for updating the status and the values retured for the status.

+
+
+
+
+

Spring RestTemplate as a Load Balancer Client

+
+

RestTemplate can be automatically configured to use ribbon. To create a load balanced RestTemplate create a RestTemplate @Bean and use the @LoadBalanced qualifier.

+
+
+ + + + + +
+
Warning
+
+A RestTemplate bean is no longer created via auto configuration. It must be created by individual applications. +
+
+
+
+
@Configuration
+public class MyConfiguration {
+
+    @LoadBalanced
+    @Bean
+    RestTemplate restTemplate() {
+        return new RestTemplate();
+    }
+}
+
+public class MyClass {
+    @Autowired
+    private RestTemplate restTemplate;
+
+    public String doOtherStuff() {
+        String results = restTemplate.getForObject("http://stores/stores", String.class);
+        return results;
+    }
+}
+
+
+
+

The URI needs to use a virtual host name (ie. service name, not a host name). +The Ribbon client is used to create a full physical address. See +RibbonAutoConfiguration +for details of how the RestTemplate is set up.

+
+
+

Retrying Failed Requests

+
+

A load balanced RestTemplate can be configured to retry failed requests. +By default this logic is disabled, you can enable it by adding Spring Retry to your application’s classpath. The load balanced RestTemplate will +honor some of the Ribbon configuration values related to retrying failed requests. If +you would like to disable the retry logic with Spring Retry on the classpath +you can set spring.cloud.loadbalancer.retry.enabled=false. +The properties you can use are client.ribbon.MaxAutoRetries, +client.ribbon.MaxAutoRetriesNextServer, and client.ribbon.OkToRetryOnAllOperations. +See the Ribbon documentation +for a description of what there properties do.

+
+
+ + + + + +
+
Note
+
+client in the above examples should be replaced with your Ribbon client’s +name. +
+
+
+
+
+

Multiple RestTemplate objects

+
+

If you want a RestTemplate that is not load balanced, create a RestTemplate +bean and inject it as normal. To access the load balanced RestTemplate use +the @LoadBalanced qualifier when you create your @Bean.

+
+
+ + + + + +
+
Important
+
+Notice the @Primary annotation on the plain RestTemplate declaration in the example below, to disambiguate the unqualified @Autowired injection. +
+
+
+
+
@Configuration
+public class MyConfiguration {
+
+    @LoadBalanced
+    @Bean
+    RestTemplate loadBalanced() {
+        return new RestTemplate();
+    }
+
+    @Primary
+    @Bean
+    RestTemplate restTemplate() {
+        return new RestTemplate();
+    }
+}
+
+public class MyClass {
+    @Autowired
+    private RestTemplate restTemplate;
+
+    @Autowired
+    @LoadBalanced
+    private RestTemplate loadBalanced;
+
+    public String doOtherStuff() {
+        return loadBalanced.getForObject("http://stores/stores", String.class);
+    }
+
+    public String doStuff() {
+        return restTemplate.getForObject("http://example.com", String.class);
+    }
+}
+
+
+
+ + + + + +
+
Tip
+
+If you see errors like java.lang.IllegalArgumentException: Can not set org.springframework.web.client.RestTemplate field com.my.app.Foo.restTemplate to com.sun.proxy.$Proxy89 try injecting RestOperations instead or setting spring.aop.proxyTargetClass=true. +
+
+
+
+

Ignore Network Interfaces

+
+

Sometimes it is useful to ignore certain named network interfaces so they can be excluded from Service Discovery registration (eg. running in a Docker container). A list of regular expressions can be set that will cause the desired network interfaces to be ignored. The following configuration will ignore the "docker0" interface and all interfaces that start with "veth".

+
+
+
application.yml
+
+
spring:
+  cloud:
+    inetutils:
+      ignoredInterfaces:
+        - docker0
+        - veth.*
+
+
+
+

You can also force to use only specified network addresses using list of regular expressions:

+
+
+
application.yml
+
+
spring:
+  cloud:
+    inetutils:
+      preferredNetworks:
+        - 192.168
+        - 10.0
+
+
+
+

You can also force to use only site local addresses. See Inet4Address.html.isSiteLocalAddress() for more details what is site local address.

+
+
+
application.yml
+
+
spring:
+  cloud:
+    inetutils:
+      useOnlySiteLocalInterfaces: true
+
+
+
+
+
+
+ + \ No newline at end of file diff --git a/spring-cloud-commons/target/apidocs/allclasses-frame.html b/spring-cloud-commons/target/apidocs/allclasses-frame.html new file mode 100644 index 00000000..d7ffae1e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/allclasses-frame.html @@ -0,0 +1,98 @@ + + + + + + +All Classes (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/spring-cloud-commons/target/apidocs/allclasses-noframe.html b/spring-cloud-commons/target/apidocs/allclasses-noframe.html new file mode 100644 index 00000000..7f8dcad1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/allclasses-noframe.html @@ -0,0 +1,98 @@ + + + + + + +All Classes (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/spring-cloud-commons/target/apidocs/constant-values.html b/spring-cloud-commons/target/apidocs/constant-values.html new file mode 100644 index 00000000..8028c98d --- /dev/null +++ b/spring-cloud-commons/target/apidocs/constant-values.html @@ -0,0 +1,176 @@ + + + + + + +Constant Field Values (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

org.springframework.*

+ +
    +
  • + + + + + + + + + + + + + + +
    org.springframework.cloud.commons.util.InetUtilsProperties 
    Modifier and TypeConstant FieldValue
    + +public static final StringPREFIX"spring.cloud.inetutils"
    +
  • +
+
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/deprecated-list.html b/spring-cloud-commons/target/apidocs/deprecated-list.html new file mode 100644 index 00000000..aba77b54 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/deprecated-list.html @@ -0,0 +1,243 @@ + + + + + + +Deprecated List (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+ +
+
+ + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/help-doc.html b/spring-cloud-commons/target/apidocs/help-doc.html new file mode 100644 index 00000000..3a9f3877 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Overview

    +

    The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    +
  • +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Use

    +

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/index-all.html b/spring-cloud-commons/target/apidocs/index-all.html new file mode 100644 index 00000000..a25a73ce --- /dev/null +++ b/spring-cloud-commons/target/apidocs/index-all.html @@ -0,0 +1,1225 @@ + + + + + + +Index (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
A B C D E F G H I L M N O P R S T U V  + + +

A

+
+
AbstractAutoServiceRegistration<R extends Registration> - Class in org.springframework.cloud.client.serviceregistry
+
+
Lifecycle methods that may be useful and common to ServiceRegistry implementations.
+
+
AbstractAutoServiceRegistration(ServiceRegistry<R>) - Constructor for class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
AbstractDiscoveryLifecycle - Class in org.springframework.cloud.client.discovery
+
+
Deprecated. +
use AbstractAutoServiceRegistration instead. This class will be removed in the next release train.
+
+
+
AbstractDiscoveryLifecycle() - Constructor for class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
abstractFeatures(Class<?>...) - Static method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
ActuatorConfiguration() - Constructor for class org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration
+
 
+
afterPropertiesSet() - Method in class org.springframework.cloud.client.hypermedia.RemoteResourceRefresher
+
 
+
apply(ServiceInstance) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequest
+
 
+
AsyncLoadBalancerAutoConfiguration - Class in org.springframework.cloud.client.loadbalancer
+
+
Auto configuration for Ribbon (client side load balancing).
+
+
AsyncLoadBalancerAutoConfiguration() - Constructor for class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration
+
 
+
AsyncLoadBalancerInterceptor - Class in org.springframework.cloud.client.loadbalancer
+
 
+
AsyncLoadBalancerInterceptor(LoadBalancerClient) - Constructor for class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor
+
 
+
AsyncRestTemplateCustomizer - Interface in org.springframework.cloud.client.loadbalancer
+
 
+
AutoServiceRegistration - Interface in org.springframework.cloud.client.serviceregistry
+
 
+
AutoServiceRegistrationAutoConfiguration - Class in org.springframework.cloud.client.serviceregistry
+
 
+
AutoServiceRegistrationAutoConfiguration() - Constructor for class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration
+
 
+
AutoServiceRegistrationConfiguration - Class in org.springframework.cloud.client.serviceregistry
+
 
+
AutoServiceRegistrationConfiguration() - Constructor for class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration
+
 
+
AutoServiceRegistrationProperties - Class in org.springframework.cloud.client.serviceregistry
+
 
+
AutoServiceRegistrationProperties() - Constructor for class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
+
 
+
+ + + +

B

+
+
Boot15PortFinderConfiguration() - Constructor for class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
+
+
Deprecated.
+
buildTraversal(Traverson) - Method in interface org.springframework.cloud.client.hypermedia.TraversalDefinition
+
 
+
+ + + +

C

+
+
canRetry(RetryContext) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
canRetryNextServer(LoadBalancedRetryContext) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy
+
+
Return true to retry the failed request on the next server from the load balancer.
+
+
canRetrySameServer(LoadBalancedRetryContext) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy
+
+
Return true to retry the failed request on the same server.
+
+
choose(String) - Method in interface org.springframework.cloud.client.loadbalancer.ServiceInstanceChooser
+
+
Choose a ServiceInstance from the LoadBalancer for the specified service
+
+
close(RetryContext) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
close(LoadBalancedRetryContext) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy
+
+
Called when the retry operation has ended.
+
+
close() - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Close the ServiceRegistry.
+
+
close() - Method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
CloudHypermediaAutoConfiguration - Class in org.springframework.cloud.client.hypermedia
+
+
Registers a default RemoteResourceRefresher if at least one RemoteResource is declared in the system + and applies verification timings defined in the application properties.
+
+
CloudHypermediaAutoConfiguration() - Constructor for class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration
+
 
+
CloudHypermediaAutoConfiguration.CloudHypermediaProperties - Class in org.springframework.cloud.client.hypermedia
+
 
+
CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh - Class in org.springframework.cloud.client.hypermedia
+
 
+
CloudHypermediaProperties() - Constructor for class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties
+
 
+
combineParts(String, String, String) - Static method in class org.springframework.cloud.commons.util.IdUtils
+
 
+
CommonsClientAutoConfiguration - Class in org.springframework.cloud.client
+
+
Auto-configuration for Spring Cloud Commons Client.
+
+
CommonsClientAutoConfiguration() - Constructor for class org.springframework.cloud.client.CommonsClientAutoConfiguration
+
 
+
CommonsClientAutoConfiguration.ActuatorConfiguration - Class in org.springframework.cloud.client
+
 
+
CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration - Class in org.springframework.cloud.client
+
 
+
commonsFeatures() - Method in class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+
 
+
convert(InetAddress) - Static method in class org.springframework.cloud.commons.util.InetUtils
+
+
Deprecated. +
use the non-static convertAddress() instead
+
+
+
convertAddress(InetAddress) - Method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
create(String, ServiceInstanceChooser) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory
+
+ +
+
create(String, ServiceInstanceChooser) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory
+
 
+
createRequest(HttpRequest, byte[], ClientHttpRequestExecution) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory
+
 
+
customize(AsyncRestTemplate) - Method in interface org.springframework.cloud.client.loadbalancer.AsyncRestTemplateCustomizer
+
 
+
customize(RestTemplate) - Method in interface org.springframework.cloud.client.loadbalancer.RestTemplateCustomizer
+
 
+
+ + + +

D

+
+
DEFAULT_ORDER - Static variable in interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequestTransformer
+
 
+
DefaultServiceInstance - Class in org.springframework.cloud.client
+
+
Default implementation of ServiceInstance.
+
+
DefaultServiceInstance(String, String, int, boolean) - Constructor for class org.springframework.cloud.client.DefaultServiceInstance
+
 
+
deregister() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
De-register the local service with the DiscoveryClient
+
+
deregister() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
+
De-register the local service with the ServiceRegistry
+
+
deregister(R) - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Deregister the registration.
+
+
deregisterManagement() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
De-register the local management service with the DiscoveryClient
+
+
deregisterManagement() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
+
De-register the local management service with the ServiceRegistry
+
+
description() - Method in interface org.springframework.cloud.client.discovery.DiscoveryClient
+
+
A human readable description of the implementation, used in HealthIndicator
+
+
description() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
description() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
destroy() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
DiscoveredResource - Class in org.springframework.cloud.client.hypermedia
+
+
A REST resource that is defined by a service reference and a traversal operation within that service.
+
+
DiscoveredResource() - Constructor for class org.springframework.cloud.client.hypermedia.DiscoveredResource
+
 
+
discoveredResourceRefresher() - Method in class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration
+
 
+
DiscoveryClient - Interface in org.springframework.cloud.client.discovery
+
+
DiscoveryClient represents read operations commonly available to Discovery service such as + Netflix Eureka or consul.io
+
+
discoveryClient() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+
+
Deprecated.
+
discoveryClientHealthIndicator(DiscoveryClient) - Method in class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+
 
+
DiscoveryClientHealthIndicator - Class in org.springframework.cloud.client.discovery.health
+
 
+
DiscoveryClientHealthIndicator(DiscoveryClient) - Constructor for class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
discoveryCompositeHealthIndicator(HealthAggregator, List<DiscoveryHealthIndicator>) - Method in class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+
 
+
DiscoveryCompositeHealthIndicator - Class in org.springframework.cloud.client.discovery.health
+
+
Gathers all DiscoveryHealthIndicator's from a DiscoveryClient implementation + and aggregates the statuses.
+
+
DiscoveryCompositeHealthIndicator(HealthAggregator, List<DiscoveryHealthIndicator>) - Constructor for class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator
+
 
+
DiscoveryCompositeHealthIndicator.Holder - Class in org.springframework.cloud.client.discovery.health
+
 
+
DiscoveryHealthIndicator - Interface in org.springframework.cloud.client.discovery.health
+
+
A health indicator interface specific for a DiscoveryClient implementation
+
+
DiscoveryLifecycle - Interface in org.springframework.cloud.client.discovery
+
+
Deprecated. +
use AutoServiceRegistration instead. This class will be removed in the next release train.
+
+
+
DiscoveryLoadBalancerConfiguration() - Constructor for class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+
 
+
DynamicServiceInstanceProvider - Class in org.springframework.cloud.client.hypermedia
+
+
ServiceInstanceProvider to work with a DiscoveryClient to lookup a service by name.
+
+
DynamicServiceInstanceProvider() - Constructor for class org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider
+
 
+
+ + + +

E

+
+
EnableCircuitBreaker - Annotation Type in org.springframework.cloud.client.circuitbreaker
+
+
Annotation to enable a CircuitBreaker implementation.
+
+
EnableCircuitBreakerImportSelector - Class in org.springframework.cloud.client.circuitbreaker
+
+
Import a single circuit breaker implementation Configuration
+
+
EnableCircuitBreakerImportSelector() - Constructor for class org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector
+
 
+
EnableDiscoveryClient - Annotation Type in org.springframework.cloud.client.discovery
+
+
Annotation to enable a DiscoveryClient implementation.
+
+
EnableDiscoveryClientImportSelector - Class in org.springframework.cloud.client.discovery
+
 
+
EnableDiscoveryClientImportSelector() - Constructor for class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+
 
+
equals(Object) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
execute(String, LoadBalancerRequest<T>) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerClient
+
+
execute request using a ServiceInstance from the LoadBalancer for the specified + service
+
+
execute(String, ServiceInstance, LoadBalancerRequest<T>) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerClient
+
+
execute request using a ServiceInstance from the LoadBalancer for the specified + service
+
+
+ + + +

F

+
+
FeaturesEndpoint - Class in org.springframework.cloud.client.actuator
+
 
+
FeaturesEndpoint(List<HasFeatures>) - Constructor for class org.springframework.cloud.client.actuator.FeaturesEndpoint
+
 
+
featuresEndpoint() - Method in class org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration
+
 
+
findFirstNonLoopbackAddress() - Method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
findFirstNonLoopbackHostInfo() - Method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
+ + + +

G

+
+
get(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
get(BeanFactory) - Static method in enum org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort
+
 
+
getAbstractFeatures() - Method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
getAnnotationClass() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
getAppName() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getConfig() - Method in class org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent
+
 
+
getConfiguration() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getConfiguredPort() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getContext() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
getDefaultInstanceId(PropertyResolver) - Static method in class org.springframework.cloud.commons.util.IdUtils
+
 
+
getDelegate() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder
+
 
+
getEndpointType() - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
getEnvironment() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getEnvironment() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
getFirstNonLoopbackHostInfo() - Static method in class org.springframework.cloud.commons.util.InetUtils
+
+
Deprecated. +
use the non-static findFirstNonLoopbackHostInfo() instead
+
+
+
getHealthIndicators() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator
+
 
+
getHost() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getHost() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getInstances(String) - Method in interface org.springframework.cloud.client.discovery.DiscoveryClient
+
+
Get all ServiceInstances associated with a particular serviceId
+
+
getInstances(String) - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
getInstances(String) - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
getInstances() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties
+
 
+
getIpAddressAsInt(String) - Static method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
getIpAddressAsInt() - Method in class org.springframework.cloud.commons.util.InetUtils.HostInfo
+
 
+
getLink() - Method in interface org.springframework.cloud.client.hypermedia.RemoteResource
+
+
Returns the Link to the resource in case it is available or null + in case it's gone, i.e.
+
+
getLocalServiceInstance() - Method in interface org.springframework.cloud.client.discovery.DiscoveryClient
+
+
Deprecated. +
use the Registration bean instead
+
+
+
getLocalServiceInstance() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
getLocalServiceInstance() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
getManagementPort() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getManagementRegistration() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
getManagementServiceId() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getManagementServiceName() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getMetadata() - Method in class org.springframework.cloud.client.DefaultServiceInstance
+
 
+
getMetadata() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getMetadata() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getName() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
getName() - Method in interface org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator
+
 
+
getNamedFeatures() - Method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
getOrder() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
getOrder() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
getOrder() - Method in class org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
+
 
+
getPath() - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
getPhase() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
getPort() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getPort(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
getPort() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getPort() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getRegistration() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
getRequest() - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Gets the request that is being load balanced.
+
+
getRunning() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
getServiceId() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getServiceId() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getServiceId() - Method in interface org.springframework.cloud.client.serviceregistry.Registration
+
 
+
getServiceInstance() - Method in class org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider
+
 
+
getServiceInstance() - Method in interface org.springframework.cloud.client.hypermedia.ServiceInstanceProvider
+
+
Returns the service instance or null in case the service is currently unavailable.
+
+
getServiceInstance() - Method in class org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider
+
 
+
getServiceInstance() - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Gets the service instance used during the retry.
+
+
getServiceRegistry() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
getServices() - Method in interface org.springframework.cloud.client.discovery.DiscoveryClient
+
 
+
getServices() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
getServices() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
getSimpleName() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
getStatus() - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
getStatus(R) - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Gets the status of a particular registration.
+
+
getUri() - Method in class org.springframework.cloud.client.DefaultServiceInstance
+
 
+
getUri(ServiceInstance) - Static method in class org.springframework.cloud.client.DefaultServiceInstance
+
+
Create a uri from the given ServiceInstance's host:port
+
+
getUri() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getURI() - Method in class org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper
+
 
+
getUri() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getValue() - Method in class org.springframework.cloud.client.discovery.event.HeartbeatEvent
+
+
A value representing the state of the service catalog.
+
+
getValue() - Method in class org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent
+
 
+
+ + + +

H

+
+
hasDefaultFactory() - Method in class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+
 
+
hasDefaultFactory() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
HasFeatures - Class in org.springframework.cloud.client.actuator
+
 
+
HasFeatures(List<Class<?>>, List<NamedFeature>) - Constructor for class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
hashCode() - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
health() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
health() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder
+
 
+
health() - Method in interface org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator
+
 
+
HeartbeatEvent - Class in org.springframework.cloud.client.discovery.event
+
+
Event DiscoveryClient implementation can broadcast if they support heartbeat's from the + discovery server.
+
+
HeartbeatEvent(Object, Object) - Constructor for class org.springframework.cloud.client.discovery.event.HeartbeatEvent
+
+
Create a new event with a source (for example a discovery client) and a value.
+
+
HeartbeatMonitor - Class in org.springframework.cloud.client.discovery.event
+
+
Helper class for listeners to the HeartbeatEvent providing a convenient way to + determine if there has been a change in state.
+
+
HeartbeatMonitor() - Constructor for class org.springframework.cloud.client.discovery.event.HeartbeatMonitor
+
 
+
Holder(DiscoveryHealthIndicator) - Constructor for class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder
+
 
+
HostInfo(String) - Constructor for class org.springframework.cloud.commons.util.InetUtils.HostInfo
+
 
+
HostInfo() - Constructor for class org.springframework.cloud.commons.util.InetUtils.HostInfo
+
 
+
HostInfoEnvironmentPostProcessor - Class in org.springframework.cloud.client
+
 
+
HostInfoEnvironmentPostProcessor() - Constructor for class org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
+
 
+
+ + + +

I

+
+
IdUtils - Class in org.springframework.cloud.commons.util
+
 
+
IdUtils() - Constructor for class org.springframework.cloud.commons.util.IdUtils
+
 
+
InetUtils - Class in org.springframework.cloud.commons.util
+
 
+
InetUtils(InetUtilsProperties) - Constructor for class org.springframework.cloud.commons.util.InetUtils
+
 
+
inetUtils(InetUtilsProperties) - Method in class org.springframework.cloud.commons.util.UtilAutoConfiguration
+
 
+
InetUtils.HostInfo - Class in org.springframework.cloud.commons.util
+
 
+
InetUtilsProperties - Class in org.springframework.cloud.commons.util
+
 
+
InetUtilsProperties() - Constructor for class org.springframework.cloud.commons.util.InetUtilsProperties
+
 
+
inetUtilsProperties() - Method in class org.springframework.cloud.commons.util.UtilAutoConfiguration
+
 
+
init() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+
+
Deprecated.
+
init() - Method in class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration
+
 
+
InstanceRegisteredEvent<T> - Class in org.springframework.cloud.client.discovery.event
+
+
Event to be published after the local service instance registers itself with a + discovery service.
+
+
InstanceRegisteredEvent(Object, T) - Constructor for class org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent
+
+
Create a new InstanceRegisteredEvent instance.
+
+
intercept(HttpRequest, byte[], AsyncClientHttpRequestExecution) - Method in class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor
+
 
+
intercept(HttpRequest, byte[], ClientHttpRequestExecution) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
+
 
+
intercept(HttpRequest, byte[], ClientHttpRequestExecution) - Method in class org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
+
 
+
InterceptorRetryPolicy - Class in org.springframework.cloud.client.loadbalancer
+
+
RetryPolicy used by the LoadBalancerClient when retrying failed requests.
+
+
InterceptorRetryPolicy(HttpRequest, LoadBalancedRetryPolicy, ServiceInstanceChooser, String) - Constructor for class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
+
Creates a new retry policy.
+
+
invoke() - Method in class org.springframework.cloud.client.actuator.FeaturesEndpoint
+
 
+
isAutoStartup() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
isDifferent(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
isDisabled(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
isEnabled() - Method in class org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector
+
 
+
isEnabled() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
isEnabled() - Method in class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+
 
+
isEnabled() - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties
+
+
Returns true if the load balancer should retry failed requests.
+
+
isEnabled() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
isFailFast() - Method in class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
+
 
+
isRunning() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
isSame(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
isSecure() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
isSecure() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
isSensitive() - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
+ + + +

L

+
+
LoadBalanced - Annotation Type in org.springframework.cloud.client.loadbalancer
+
+
Annotation to mark a RestTemplate bean to be configured to use a LoadBalancerClient
+
+
loadBalancedRestTemplateInitializer(List<RestTemplateCustomizer>) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
+
 
+
LoadBalancedRetryContext - Class in org.springframework.cloud.client.loadbalancer
+
+
RetryContext for load balanced retries.
+
+
LoadBalancedRetryContext(RetryContext, HttpRequest) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Creates a new load balanced context.
+
+
LoadBalancedRetryPolicy - Interface in org.springframework.cloud.client.loadbalancer
+
+
Retry logic to use for the LoadBalancerClient.
+
+
LoadBalancedRetryPolicyFactory - Interface in org.springframework.cloud.client.loadbalancer
+
+
Responsible for creating the LoadBalancedRetryPolicy.
+
+
LoadBalancedRetryPolicyFactory.NeverRetryFactory - Class in org.springframework.cloud.client.loadbalancer
+
 
+
LoadBalancerAutoConfiguration - Class in org.springframework.cloud.client.loadbalancer
+
+
Auto configuration for Ribbon (client side load balancing).
+
+
LoadBalancerAutoConfiguration() - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
+
 
+
LoadBalancerClient - Interface in org.springframework.cloud.client.loadbalancer
+
+
Represents a client side load balancer
+
+
LoadBalancerInterceptor - Class in org.springframework.cloud.client.loadbalancer
+
 
+
LoadBalancerInterceptor(LoadBalancerClient, LoadBalancerRequestFactory) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
+
 
+
LoadBalancerInterceptor(LoadBalancerClient) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
+
 
+
LoadBalancerRequest<T> - Interface in org.springframework.cloud.client.loadbalancer
+
+
Simple interface used by LoadBalancerClient to apply metrics or pre and post + actions around load balancer requests.
+
+
loadBalancerRequestFactory(LoadBalancerClient) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
+
 
+
LoadBalancerRequestFactory - Class in org.springframework.cloud.client.loadbalancer
+
+ +
+
LoadBalancerRequestFactory(LoadBalancerClient, List<LoadBalancerRequestTransformer>) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory
+
 
+
LoadBalancerRequestFactory(LoadBalancerClient) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory
+
 
+
LoadBalancerRequestTransformer - Interface in org.springframework.cloud.client.loadbalancer
+
+
Allows applications to transform the load balanced HttpRequest given + the chosen ServiceInstance
+
+
LoadBalancerRetryProperties - Class in org.springframework.cloud.client.loadbalancer
+
+
Configuration properties for the LoadBalancerClient.
+
+
LoadBalancerRetryProperties() - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties
+
 
+
+ + + +

M

+
+
ManagementServerPortUtils - Class in org.springframework.cloud.client.discovery
+
 
+
ManagementServerPortUtils() - Constructor for class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
ManagementServerPortUtils.ManagementServerPort - Enum in org.springframework.cloud.client.discovery
+
 
+
+ + + +

N

+
+
namedFeature(String, Class<?>) - Static method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
NamedFeature - Class in org.springframework.cloud.client.actuator
+
 
+
NamedFeature() - Constructor for class org.springframework.cloud.client.actuator.NamedFeature
+
 
+
namedFeatures(NamedFeature...) - Static method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
namedFeatures(String, Class<?>, String, Class<?>) - Static method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
NeverRetryFactory() - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory
+
 
+
NoopDiscoveryClient - Class in org.springframework.cloud.client.discovery.noop
+
+
Deprecated. + +
+
+
NoopDiscoveryClient(ServiceInstance) - Constructor for class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
NoopDiscoveryClientAutoConfiguration - Class in org.springframework.cloud.client.discovery.noop
+
+
Deprecated. +
Use + instead
+
+
+
NoopDiscoveryClientAutoConfiguration() - Constructor for class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+
+
Deprecated.
+
NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration - Class in org.springframework.cloud.client.discovery.noop
+
+
Deprecated.
+
+ + + +

O

+
+
onApplicationEvent(EmbeddedServletContainerInitializedEvent) - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
onApplicationEvent(InstanceRegisteredEvent<?>) - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
onApplicationEvent(ContextRefreshedEvent) - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+
+
Deprecated.
+
open(RetryContext) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
org.springframework.cloud.client - package org.springframework.cloud.client
+
 
+
org.springframework.cloud.client.actuator - package org.springframework.cloud.client.actuator
+
 
+
org.springframework.cloud.client.circuitbreaker - package org.springframework.cloud.client.circuitbreaker
+
 
+
org.springframework.cloud.client.discovery - package org.springframework.cloud.client.discovery
+
 
+
org.springframework.cloud.client.discovery.event - package org.springframework.cloud.client.discovery.event
+
 
+
org.springframework.cloud.client.discovery.health - package org.springframework.cloud.client.discovery.health
+
 
+
org.springframework.cloud.client.discovery.noop - package org.springframework.cloud.client.discovery.noop
+
 
+
org.springframework.cloud.client.discovery.simple - package org.springframework.cloud.client.discovery.simple
+
 
+
org.springframework.cloud.client.hypermedia - package org.springframework.cloud.client.hypermedia
+
 
+
org.springframework.cloud.client.loadbalancer - package org.springframework.cloud.client.loadbalancer
+
 
+
org.springframework.cloud.client.serviceregistry - package org.springframework.cloud.client.serviceregistry
+
 
+
org.springframework.cloud.client.serviceregistry.endpoint - package org.springframework.cloud.client.serviceregistry.endpoint
+
 
+
org.springframework.cloud.commons.util - package org.springframework.cloud.commons.util
+
 
+
override - Variable in class org.springframework.cloud.commons.util.InetUtils.HostInfo
+
 
+
+ + + +

P

+
+
ParentHeartbeatEvent - Class in org.springframework.cloud.client.discovery.event
+
+
Heartbeat Event that a Parent ApplicationContext can send to a child Context.
+
+
ParentHeartbeatEvent(Object, Object) - Constructor for class org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent
+
 
+
portFinder(ApplicationContext) - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
+
+
Deprecated.
+
postProcessEnvironment(ConfigurableEnvironment, SpringApplication) - Method in class org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
+
 
+
PREFIX - Static variable in class org.springframework.cloud.commons.util.InetUtilsProperties
+
 
+
+ + + +

R

+
+
reconstructURI(ServiceInstance, URI) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerClient
+
+
Create a proper URI with a real host and port for systems to utilize.
+
+
Refresh() - Constructor for class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh
+
 
+
register() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
Register the local service with the DiscoveryClient
+
+
register() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
+
Register the local service with the ServiceRegistry
+
+
register(R) - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Register the registration.
+
+
registerManagement() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
Register the local management service with the DiscoveryClient
+
+
registerManagement() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
+
Register the local management service with the ServiceRegistry
+
+
registerThrowable(RetryContext, Throwable) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
registerThrowable(LoadBalancedRetryContext, Throwable) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy
+
+
Called when the execution fails.
+
+
Registration - Interface in org.springframework.cloud.client.serviceregistry
+
+
A marker interface used by a ServiceRegistry.
+
+
RemoteResource - Interface in org.springframework.cloud.client.hypermedia
+
+
A REST resource that can be discovered and can be either gone or available.
+
+
RemoteResourceRefresher - Class in org.springframework.cloud.client.hypermedia
+
+
A ScheduledTaskRegistrar that verifies all DiscoveredResource instances in the system based + on the given timing configuration.
+
+
RemoteResourceRefresher() - Constructor for class org.springframework.cloud.client.hypermedia.RemoteResourceRefresher
+
 
+
RestTemplateCustomizer - Interface in org.springframework.cloud.client.loadbalancer
+
 
+
RetryLoadBalancerInterceptor - Class in org.springframework.cloud.client.loadbalancer
+
 
+
RetryLoadBalancerInterceptor(LoadBalancerClient, RetryTemplate, LoadBalancerRetryProperties, LoadBalancedRetryPolicyFactory, LoadBalancerRequestFactory) - Constructor for class org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
+
 
+
RetryLoadBalancerInterceptor(LoadBalancerClient, RetryTemplate, LoadBalancerRetryProperties, LoadBalancedRetryPolicyFactory) - Constructor for class org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
+
 
+
+ + + +

S

+
+
selectImports(AnnotationMetadata) - Method in class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+
 
+
selectImports(AnnotationMetadata) - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
ServiceInstance - Interface in org.springframework.cloud.client
+
+
Represents an instance of a Service in a Discovery System
+
+
ServiceInstanceChooser - Interface in org.springframework.cloud.client.loadbalancer
+
+
Implemented by classes which use a load balancer to choose a server to + send a request to.
+
+
ServiceInstanceProvider - Interface in org.springframework.cloud.client.hypermedia
+
+
A component that will provide a ServiceInstance or can express the absence of one by returning + null.
+
+
ServiceRegistry<R extends Registration> - Interface in org.springframework.cloud.client.serviceregistry
+
+
Contract to register and deregister instances with a Service Registry.
+
+
ServiceRegistryAutoConfiguration - Class in org.springframework.cloud.client.serviceregistry
+
 
+
ServiceRegistryAutoConfiguration() - Constructor for class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration
+
 
+
ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration - Class in org.springframework.cloud.client.serviceregistry
+
 
+
ServiceRegistryEndpoint - Class in org.springframework.cloud.client.serviceregistry.endpoint
+
+
Endpoint to display and set the service instance status using the service registry.
+
+
ServiceRegistryEndpoint(ServiceRegistry<?>) - Constructor for class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
serviceRegistryEndpoint(ServiceRegistry) - Method in class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
+
 
+
ServiceRegistryEndpointConfiguration() - Constructor for class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
+
 
+
ServiceRequestWrapper - Class in org.springframework.cloud.client.loadbalancer
+
 
+
ServiceRequestWrapper(HttpRequest, ServiceInstance, LoadBalancerClient) - Constructor for class org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.client.actuator.FeaturesEndpoint
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
setBeanClassLoader(ClassLoader) - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
setConfiguredPort(int) - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
setEnabled(boolean) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties
+
+
Sets whether the load balancer should retry failed request.
+
+
setEnvironment(Environment) - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
setFailFast(boolean) - Method in class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
+
 
+
setInstances(Map<String, List<SimpleDiscoveryProperties.SimpleServiceInstance>>) - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties
+
 
+
setOrder(int) - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
setRegistration(Registration) - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
setRequest(HttpRequest) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Sets the request that is being load baalnced.
+
+
setRestOperations(RestOperations) - Method in class org.springframework.cloud.client.hypermedia.DiscoveredResource
+
+
Configures the RestOperations to use to execute the traversal and verifying HEAD calls.
+
+
setServiceInstance(ServiceInstance) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Sets the service instance to use during the retry.
+
+
setStatus(String) - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
setStatus(R, String) - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Sets the status of the registration.
+
+
setUri(String) - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
shouldRegisterManagement() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
SimpleDiscoveryClient - Class in org.springframework.cloud.client.discovery.simple
+
+
A DiscoveryClient that will use the + properties file as a source of service instances
+
+
SimpleDiscoveryClient(SimpleDiscoveryProperties) - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
simpleDiscoveryClient() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration
+
 
+
SimpleDiscoveryClientAutoConfiguration - Class in org.springframework.cloud.client.discovery.simple
+
+
Spring Boot Auto-Configuration for Simple Properties based Discovery Client
+
+
SimpleDiscoveryClientAutoConfiguration() - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration
+
 
+
SimpleDiscoveryProperties - Class in org.springframework.cloud.client.discovery.simple
+
+
Properties to hold the details of a + DiscoveryClient service instances + for a given service
+
+
SimpleDiscoveryProperties() - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties
+
 
+
SimpleDiscoveryProperties.SimpleServiceInstance - Class in org.springframework.cloud.client.discovery.simple
+
 
+
SimpleServiceInstance() - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
SimpleServiceInstance(String) - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
SpringCloudApplication - Annotation Type in org.springframework.cloud.client
+
 
+
SpringFactoryImportSelector<T> - Class in org.springframework.cloud.commons.util
+
+
Selects configurations to load defined by the generic type T.
+
+
SpringFactoryImportSelector() - Constructor for class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
start() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
StaticServiceInstanceProvider - Class in org.springframework.cloud.client.hypermedia
+
+
A ServiceInstanceProvider that will always return the configured ServiceInstance.
+
+
StaticServiceInstanceProvider() - Constructor for class org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider
+
 
+
stop(Runnable) - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
stop() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
stop() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
+ + + +

T

+
+
transformRequest(HttpRequest, ServiceInstance) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequestTransformer
+
 
+
TraversalDefinition - Interface in org.springframework.cloud.client.hypermedia
+
+
Callback to define the traversal to a resource.
+
+
+ + + +

U

+
+
update(Object) - Method in class org.springframework.cloud.client.discovery.event.HeartbeatMonitor
+
 
+
UtilAutoConfiguration - Class in org.springframework.cloud.commons.util
+
 
+
UtilAutoConfiguration() - Constructor for class org.springframework.cloud.commons.util.UtilAutoConfiguration
+
 
+
+ + + +

V

+
+
valueOf(String) - Static method in enum org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort
+
+
Returns the enum constant of this type with the specified name.
+
+
values() - Static method in enum org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
verifyOrDiscover() - Method in class org.springframework.cloud.client.hypermedia.DiscoveredResource
+
+
Verifies the link to the current
+
+
verifyOrDiscover() - Method in interface org.springframework.cloud.client.hypermedia.RemoteResource
+
+
Discovers the the resource in case it hasn't been yet or became unavailable.
+
+
+A B C D E F G H I L M N O P R S T U V 
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/index.html b/spring-cloud-commons/target/apidocs/index.html new file mode 100644 index 00000000..a5850491 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/index.html @@ -0,0 +1,76 @@ + + + + + + +Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.ActuatorConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.ActuatorConfiguration.html new file mode 100644 index 00000000..ccb03735 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.ActuatorConfiguration.html @@ -0,0 +1,284 @@ + + + + + + +CommonsClientAutoConfiguration.ActuatorConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class CommonsClientAutoConfiguration.ActuatorConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    CommonsClientAutoConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.boot.actuate.endpoint.Endpoint.class)
    + @ConditionalOnProperty(value="spring.cloud.features.enabled",
    +                       matchIfMissing=true)
    +protected static class CommonsClientAutoConfiguration.ActuatorConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ActuatorConfiguration

        +
        protected ActuatorConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html new file mode 100644 index 00000000..671a08cd --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html @@ -0,0 +1,320 @@ + + + + + + +CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    CommonsClientAutoConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.boot.actuate.health.HealthIndicator.class)
    + @ConditionalOnBean(value=DiscoveryClient.class)
    + @ConditionalOnProperty(value="spring.cloud.discovery.enabled",
    +                       matchIfMissing=true)
    +protected static class CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DiscoveryLoadBalancerConfiguration

        +
        protected DiscoveryLoadBalancerConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.html new file mode 100644 index 00000000..5dd12607 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.html @@ -0,0 +1,268 @@ + + + + + + +CommonsClientAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class CommonsClientAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.CommonsClientAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    +public class CommonsClientAutoConfiguration
    +extends Object
    +
    Auto-configuration for Spring Cloud Commons Client.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CommonsClientAutoConfiguration

        +
        public CommonsClientAutoConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/DefaultServiceInstance.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/DefaultServiceInstance.html new file mode 100644 index 00000000..5d4e732a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/DefaultServiceInstance.html @@ -0,0 +1,343 @@ + + + + + + +DefaultServiceInstance (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class DefaultServiceInstance

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.DefaultServiceInstance
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DefaultServiceInstance

        +
        public DefaultServiceInstance(String serviceId,
        +                              String host,
        +                              int port,
        +                              boolean secure)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getUri

        +
        public URI getUri()
        +
        +
        Specified by:
        +
        getUri in interface ServiceInstance
        +
        Returns:
        +
        the service uri address
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getUri

        +
        public static URI getUri(ServiceInstance instance)
        +
        Create a uri from the given ServiceInstance's host:port
        +
        +
        Parameters:
        +
        instance -
        +
        Returns:
        +
        URI of the form (secure)?https:http + "host:port"
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.html new file mode 100644 index 00000000..78859fb1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.html @@ -0,0 +1,320 @@ + + + + + + +HostInfoEnvironmentPostProcessor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class HostInfoEnvironmentPostProcessor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.env.EnvironmentPostProcessor, org.springframework.core.Ordered
    +
    +
    +
    +
    public class HostInfoEnvironmentPostProcessor
    +extends Object
    +implements org.springframework.boot.env.EnvironmentPostProcessor, org.springframework.core.Ordered
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HostInfoEnvironmentPostProcessor

        +
        public HostInfoEnvironmentPostProcessor()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        postProcessEnvironment

        +
        public void postProcessEnvironment(org.springframework.core.env.ConfigurableEnvironment environment,
        +                                   org.springframework.boot.SpringApplication application)
        +
        +
        Specified by:
        +
        postProcessEnvironment in interface org.springframework.boot.env.EnvironmentPostProcessor
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/ServiceInstance.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/ServiceInstance.html new file mode 100644 index 00000000..d787cc67 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/ServiceInstance.html @@ -0,0 +1,321 @@ + + + + + + +ServiceInstance (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Interface ServiceInstance

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getServiceId

        +
        String getServiceId()
        +
        +
        Returns:
        +
        the service id as register by the DiscoveryClient
        +
        +
      • +
      + + + +
        +
      • +

        getHost

        +
        String getHost()
        +
        +
        Returns:
        +
        the hostname of the registered ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        getPort

        +
        int getPort()
        +
        +
        Returns:
        +
        the port of the registered ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        isSecure

        +
        boolean isSecure()
        +
        +
        Returns:
        +
        if the port of the registered ServiceInstance is https or not
        +
        +
      • +
      + + + +
        +
      • +

        getUri

        +
        URI getUri()
        +
        +
        Returns:
        +
        the service uri address
        +
        +
      • +
      + + + +
        +
      • +

        getMetadata

        +
        Map<String,String> getMetadata()
        +
        +
        Returns:
        +
        the key value pair metadata associated with the service instance
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/SpringCloudApplication.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/SpringCloudApplication.html new file mode 100644 index 00000000..5a6757e7 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/SpringCloudApplication.html @@ -0,0 +1,176 @@ + + + + + + +SpringCloudApplication (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Annotation Type SpringCloudApplication

+
+
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/FeaturesEndpoint.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/FeaturesEndpoint.html new file mode 100644 index 00000000..a8577e47 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/FeaturesEndpoint.html @@ -0,0 +1,320 @@ + + + + + + +FeaturesEndpoint (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.actuator
+

Class FeaturesEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<org.springframework.cloud.client.actuator.FeaturesEndpoint.Features>
    • +
    • +
        +
      • org.springframework.cloud.client.actuator.FeaturesEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<org.springframework.cloud.client.actuator.FeaturesEndpoint.Features>, org.springframework.context.ApplicationContextAware, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @ConfigurationProperties(prefix="endpoints.features",
    +                         ignoreUnknownFields=false)
    +public class FeaturesEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<org.springframework.cloud.client.actuator.FeaturesEndpoint.Features>
    +implements org.springframework.context.ApplicationContextAware
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        FeaturesEndpoint

        +
        public FeaturesEndpoint(List<HasFeatures> hasFeaturesList)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext context)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        invoke

        +
        public org.springframework.cloud.client.actuator.FeaturesEndpoint.Features invoke()
        +
        +
        Specified by:
        +
        invoke in interface org.springframework.boot.actuate.endpoint.Endpoint<org.springframework.cloud.client.actuator.FeaturesEndpoint.Features>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/HasFeatures.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/HasFeatures.html new file mode 100644 index 00000000..accdaee6 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/HasFeatures.html @@ -0,0 +1,352 @@ + + + + + + +HasFeatures (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.actuator
+

Class HasFeatures

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.actuator.HasFeatures
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class HasFeatures
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/NamedFeature.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/NamedFeature.html new file mode 100644 index 00000000..027079d8 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/NamedFeature.html @@ -0,0 +1,243 @@ + + + + + + +NamedFeature (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.actuator
+

Class NamedFeature

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.actuator.NamedFeature
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class NamedFeature
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        NamedFeature

        +
        public NamedFeature()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/FeaturesEndpoint.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/FeaturesEndpoint.html new file mode 100644 index 00000000..de0abbbc --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/FeaturesEndpoint.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.actuator.FeaturesEndpoint (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.actuator.FeaturesEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/HasFeatures.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/HasFeatures.html new file mode 100644 index 00000000..23e638ae --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/HasFeatures.html @@ -0,0 +1,215 @@ + + + + + + +Uses of Class org.springframework.cloud.client.actuator.HasFeatures (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.actuator.HasFeatures

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/NamedFeature.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/NamedFeature.html new file mode 100644 index 00000000..361be98f --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/class-use/NamedFeature.html @@ -0,0 +1,191 @@ + + + + + + +Uses of Class org.springframework.cloud.client.actuator.NamedFeature (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.actuator.NamedFeature

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-frame.html new file mode 100644 index 00000000..9bedcabf --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +org.springframework.cloud.client.actuator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.actuator

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-summary.html new file mode 100644 index 00000000..27e8a15b --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-summary.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.client.actuator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.actuator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-tree.html new file mode 100644 index 00000000..305df42e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-tree.html @@ -0,0 +1,145 @@ + + + + + + +org.springframework.cloud.client.actuator Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.actuator

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<T> (implements org.springframework.boot.actuate.endpoint.Endpoint<T>, org.springframework.context.EnvironmentAware) +
        +
      • org.springframework.cloud.client.actuator.FeaturesEndpoint (implements org.springframework.context.ApplicationContextAware)
      • +
      +
    • +
    • org.springframework.cloud.client.actuator.HasFeatures
    • +
    • org.springframework.cloud.client.actuator.NamedFeature
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-use.html new file mode 100644 index 00000000..56703975 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/actuator/package-use.html @@ -0,0 +1,184 @@ + + + + + + +Uses of Package org.springframework.cloud.client.actuator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.actuator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.html new file mode 100644 index 00000000..1d51effb --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.html @@ -0,0 +1,176 @@ + + + + + + +EnableCircuitBreaker (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.circuitbreaker
+

Annotation Type EnableCircuitBreaker

+
+
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.html new file mode 100644 index 00000000..321b28cb --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.html @@ -0,0 +1,299 @@ + + + + + + +EnableCircuitBreakerImportSelector (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.circuitbreaker
+

Class EnableCircuitBreakerImportSelector

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.annotation.ImportSelector, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @Order(value=2147483547)
    +public class EnableCircuitBreakerImportSelector
    +extends SpringFactoryImportSelector<EnableCircuitBreaker>
    +
    Import a single circuit breaker implementation Configuration
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreaker.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreaker.html new file mode 100644 index 00000000..b148efd9 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreaker.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreakerImportSelector.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreakerImportSelector.html new file mode 100644 index 00000000..1ba9e09a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreakerImportSelector.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector

+
+
No usage of org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-frame.html new file mode 100644 index 00000000..0a6136a8 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +org.springframework.cloud.client.circuitbreaker (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.circuitbreaker

+
+

Classes

+ +

Annotation Types

+ +
+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-summary.html new file mode 100644 index 00000000..826fbc0f --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-summary.html @@ -0,0 +1,163 @@ + + + + + + +org.springframework.cloud.client.circuitbreaker (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.circuitbreaker

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    EnableCircuitBreakerImportSelector +
    Import a single circuit breaker implementation Configuration
    +
    +
  • +
  • + + + + + + + + + + + + +
    Annotation Types Summary 
    Annotation TypeDescription
    EnableCircuitBreaker +
    Annotation to enable a CircuitBreaker implementation.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-tree.html new file mode 100644 index 00000000..1e37e4e4 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-tree.html @@ -0,0 +1,147 @@ + + + + + + +org.springframework.cloud.client.circuitbreaker Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.circuitbreaker

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.commons.util.SpringFactoryImportSelector<T> (implements org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.EnvironmentAware) + +
    • +
    +
  • +
+

Annotation Type Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-use.html new file mode 100644 index 00000000..f6d78683 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package org.springframework.cloud.client.circuitbreaker (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.circuitbreaker

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.ActuatorConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.ActuatorConfiguration.html new file mode 100644 index 00000000..912f78a2 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.ActuatorConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration

+
+
No usage of org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html new file mode 100644 index 00000000..26d11331 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration

+
+
No usage of org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.html new file mode 100644 index 00000000..92ac0607 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.CommonsClientAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.CommonsClientAutoConfiguration

+
+
No usage of org.springframework.cloud.client.CommonsClientAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/DefaultServiceInstance.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/DefaultServiceInstance.html new file mode 100644 index 00000000..22cde49d --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/DefaultServiceInstance.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.DefaultServiceInstance (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.DefaultServiceInstance

+
+
No usage of org.springframework.cloud.client.DefaultServiceInstance
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/HostInfoEnvironmentPostProcessor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/HostInfoEnvironmentPostProcessor.html new file mode 100644 index 00000000..c2eeb652 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/HostInfoEnvironmentPostProcessor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.HostInfoEnvironmentPostProcessor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.HostInfoEnvironmentPostProcessor

+
+
No usage of org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/ServiceInstance.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/ServiceInstance.html new file mode 100644 index 00000000..d3f8a937 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/ServiceInstance.html @@ -0,0 +1,439 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.ServiceInstance (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.ServiceInstance

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/SpringCloudApplication.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/SpringCloudApplication.html new file mode 100644 index 00000000..49ad2f27 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/class-use/SpringCloudApplication.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.SpringCloudApplication (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.SpringCloudApplication

+
+
No usage of org.springframework.cloud.client.SpringCloudApplication
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.html new file mode 100644 index 00000000..bc086cfd --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.html @@ -0,0 +1,814 @@ + + + + + + +AbstractDiscoveryLifecycle (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Class AbstractDiscoveryLifecycle

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, DiscoveryLifecycle, org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent>, org.springframework.context.Lifecycle, org.springframework.context.Phased, org.springframework.context.SmartLifecycle, org.springframework.core.Ordered
    +
    +
    +
    Direct Known Subclasses:
    +
    AbstractAutoServiceRegistration
    +
    +
    +
    Deprecated.  +
    use AbstractAutoServiceRegistration instead. This class will be removed in the next release train.
    +
    +
    +
    @Deprecated
    +public abstract class AbstractDiscoveryLifecycle
    +extends Object
    +implements DiscoveryLifecycle, org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent>
    +
    Lifecycle methods that may be useful and common to various DiscoveryClient implementations.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AbstractDiscoveryLifecycle

        +
        public AbstractDiscoveryLifecycle()
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getContext

        +
        protected org.springframework.context.ApplicationContext getContext()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
        +                           throws org.springframework.beans.BeansException
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        getEnvironment

        +
        @Deprecated
        +protected org.springframework.core.env.Environment getEnvironment()
        +
        Deprecated. 
        +
      • +
      + + + + + + + +
        +
      • +

        isAutoStartup

        +
        public boolean isAutoStartup()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        isAutoStartup in interface org.springframework.context.SmartLifecycle
        +
        +
      • +
      + + + +
        +
      • +

        stop

        +
        public void stop(Runnable callback)
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        stop in interface org.springframework.context.SmartLifecycle
        +
        +
      • +
      + + + +
        +
      • +

        start

        +
        public void start()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        start in interface org.springframework.context.Lifecycle
        +
        +
      • +
      + + + +
        +
      • +

        getConfiguredPort

        +
        @Deprecated
        +protected abstract int getConfiguredPort()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        setConfiguredPort

        +
        @Deprecated
        +protected abstract void setConfiguredPort(int port)
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        shouldRegisterManagement

        +
        protected boolean shouldRegisterManagement()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        if the management service should be registered with the ServiceRegistry
        +
        +
      • +
      + + + +
        +
      • +

        getConfiguration

        +
        @Deprecated
        +protected abstract Object getConfiguration()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the object used to configure the registration
        +
        +
      • +
      + + + +
        +
      • +

        register

        +
        protected abstract void register()
        +
        Deprecated. 
        +
        Register the local service with the DiscoveryClient
        +
      • +
      + + + +
        +
      • +

        registerManagement

        +
        protected void registerManagement()
        +
        Deprecated. 
        +
        Register the local management service with the DiscoveryClient
        +
      • +
      + + + +
        +
      • +

        deregister

        +
        protected abstract void deregister()
        +
        Deprecated. 
        +
        De-register the local service with the DiscoveryClient
        +
      • +
      + + + +
        +
      • +

        deregisterManagement

        +
        protected void deregisterManagement()
        +
        Deprecated. 
        +
        De-register the local management service with the DiscoveryClient
        +
      • +
      + + + +
        +
      • +

        isEnabled

        +
        protected abstract boolean isEnabled()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        true, if the DiscoveryLifecycle is enabled
        +
        +
      • +
      + + + +
        +
      • +

        getManagementServiceId

        +
        @Deprecated
        +protected String getManagementServiceId()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the serviceId of the Management Service
        +
        +
      • +
      + + + +
        +
      • +

        getManagementServiceName

        +
        @Deprecated
        +protected String getManagementServiceName()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the service name of the Management Service
        +
        +
      • +
      + + + +
        +
      • +

        getManagementPort

        +
        @Deprecated
        +protected Integer getManagementPort()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the management server port
        +
        +
      • +
      + + + +
        +
      • +

        getAppName

        +
        @Deprecated
        +protected String getAppName()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the app name, currently the spring.application.name property
        +
        +
      • +
      + + + +
        +
      • +

        stop

        +
        public void stop()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        stop in interface org.springframework.context.Lifecycle
        +
        +
      • +
      + + + +
        +
      • +

        destroy

        +
        @PreDestroy
        +public void destroy()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        isRunning

        +
        public boolean isRunning()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        isRunning in interface org.springframework.context.Lifecycle
        +
        +
      • +
      + + + +
        +
      • +

        getRunning

        +
        protected AtomicBoolean getRunning()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        getPhase

        +
        public int getPhase()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        getPhase in interface org.springframework.context.Phased
        +
        +
      • +
      + + + +
        +
      • +

        onApplicationEvent

        +
        @Deprecated
        +public void onApplicationEvent(org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent event)
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryClient.html new file mode 100644 index 00000000..0ca9a658 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryClient.html @@ -0,0 +1,302 @@ + + + + + + +DiscoveryClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Interface DiscoveryClient

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    NoopDiscoveryClient, SimpleDiscoveryClient
    +
    +
    +
    +
    public interface DiscoveryClient
    +
    DiscoveryClient represents read operations commonly available to Discovery service such as + Netflix Eureka or consul.io
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        description

        +
        String description()
        +
        A human readable description of the implementation, used in HealthIndicator
        +
        +
        Returns:
        +
        the description
        +
        +
      • +
      + + + +
        +
      • +

        getLocalServiceInstance

        +
        @Deprecated
        +ServiceInstance getLocalServiceInstance()
        +
        Deprecated. use the Registration bean instead
        +
        +
        Returns:
        +
        ServiceInstance with information used to register the local service
        +
        +
      • +
      + + + +
        +
      • +

        getInstances

        +
        List<ServiceInstance> getInstances(String serviceId)
        +
        Get all ServiceInstances associated with a particular serviceId
        +
        +
        Parameters:
        +
        serviceId - the serviceId to query
        +
        Returns:
        +
        a List of ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        getServices

        +
        List<String> getServices()
        +
        +
        Returns:
        +
        all known service ids
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryLifecycle.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryLifecycle.html new file mode 100644 index 00000000..7f01679e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryLifecycle.html @@ -0,0 +1,243 @@ + + + + + + +DiscoveryLifecycle (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Interface DiscoveryLifecycle

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    org.springframework.context.Lifecycle, org.springframework.core.Ordered, org.springframework.context.Phased, org.springframework.context.SmartLifecycle
    +
    +
    +
    All Known Implementing Classes:
    +
    AbstractAutoServiceRegistration, AbstractDiscoveryLifecycle
    +
    +
    +
    Deprecated.  +
    use AutoServiceRegistration instead. This class will be removed in the next release train.
    +
    +
    +
    @Deprecated
    +public interface DiscoveryLifecycle
    +extends org.springframework.context.SmartLifecycle, org.springframework.core.Ordered
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from interface org.springframework.core.Ordered

        +HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
      • +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      +
        +
      • + + +

        Methods inherited from interface org.springframework.context.SmartLifecycle

        +isAutoStartup, stop
      • +
      +
        +
      • + + +

        Methods inherited from interface org.springframework.context.Lifecycle

        +isRunning, start, stop
      • +
      +
        +
      • + + +

        Methods inherited from interface org.springframework.context.Phased

        +getPhase
      • +
      +
        +
      • + + +

        Methods inherited from interface org.springframework.core.Ordered

        +getOrder
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClient.html new file mode 100644 index 00000000..56a07685 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClient.html @@ -0,0 +1,230 @@ + + + + + + +EnableDiscoveryClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Annotation Type EnableDiscoveryClient

+
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Optional Element Summary

      + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional Element and Description
      booleanautoRegister +
      If true, the ServiceRegistry will automatically register the local server.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        autoRegister

        +
        public abstract boolean autoRegister
        +
        If true, the ServiceRegistry will automatically register the local server.
        +
        +
        Default:
        +
        true
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.html new file mode 100644 index 00000000..a2814e79 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.html @@ -0,0 +1,334 @@ + + + + + + +EnableDiscoveryClientImportSelector (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Class EnableDiscoveryClientImportSelector

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.annotation.ImportSelector, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @Order(value=2147483547)
    +public class EnableDiscoveryClientImportSelector
    +extends SpringFactoryImportSelector<EnableDiscoveryClient>
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.ManagementServerPort.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.ManagementServerPort.html new file mode 100644 index 00000000..a5569a25 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.ManagementServerPort.html @@ -0,0 +1,372 @@ + + + + + + +ManagementServerPortUtils.ManagementServerPort (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Enum ManagementServerPortUtils.ManagementServerPort

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.html new file mode 100644 index 00000000..4eecc901 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.html @@ -0,0 +1,348 @@ + + + + + + +ManagementServerPortUtils (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Class ManagementServerPortUtils

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.ManagementServerPortUtils
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class ManagementServerPortUtils
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ManagementServerPortUtils

        +
        public ManagementServerPortUtils()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        isDifferent

        +
        public static boolean isDifferent(org.springframework.beans.factory.BeanFactory beanFactory)
        +
      • +
      + + + +
        +
      • +

        isDisabled

        +
        public static boolean isDisabled(org.springframework.beans.factory.BeanFactory beanFactory)
        +
      • +
      + + + +
        +
      • +

        isSame

        +
        public static boolean isSame(org.springframework.beans.factory.BeanFactory beanFactory)
        +
      • +
      + + + +
        +
      • +

        getPort

        +
        public static Integer getPort(org.springframework.beans.factory.BeanFactory beanFactory)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/AbstractDiscoveryLifecycle.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/AbstractDiscoveryLifecycle.html new file mode 100644 index 00000000..873f399a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/AbstractDiscoveryLifecycle.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryClient.html new file mode 100644 index 00000000..8c1a18f1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryClient.html @@ -0,0 +1,265 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.discovery.DiscoveryClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.discovery.DiscoveryClient

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryLifecycle.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryLifecycle.html new file mode 100644 index 00000000..2a64c92e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryLifecycle.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.discovery.DiscoveryLifecycle (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.discovery.DiscoveryLifecycle

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClient.html new file mode 100644 index 00000000..50093a3a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClient.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.EnableDiscoveryClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.EnableDiscoveryClient

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClientImportSelector.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClientImportSelector.html new file mode 100644 index 00000000..1a5f9616 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClientImportSelector.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector

+
+
No usage of org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.ManagementServerPort.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.ManagementServerPort.html new file mode 100644 index 00000000..fd4295bc --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.ManagementServerPort.html @@ -0,0 +1,183 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.html new file mode 100644 index 00000000..ac1309c5 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.ManagementServerPortUtils (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.ManagementServerPortUtils

+
+
No usage of org.springframework.cloud.client.discovery.ManagementServerPortUtils
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatEvent.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatEvent.html new file mode 100644 index 00000000..419a1fd5 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatEvent.html @@ -0,0 +1,347 @@ + + + + + + +HeartbeatEvent (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.event
+

Class HeartbeatEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class HeartbeatEvent
    +extends org.springframework.context.ApplicationEvent
    +
    Event DiscoveryClient implementation can broadcast if they support heartbeat's from the + discovery server. Provides listeners with a basic indication of a state change in the + service catalog.
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HeartbeatEvent

        +
        public HeartbeatEvent(Object source,
        +                      Object state)
        +
        Create a new event with a source (for example a discovery client) and a value. + Neither parameter should be relied on to have specific content or format.
        +
        +
        Parameters:
        +
        source - the source of the event
        +
        state - the value indicating state of the catalog
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public Object getValue()
        +
        A value representing the state of the service catalog. The only requirement is that + it changes when the catalog is updated, so it can be as simple as a version + conuter, or a hash. Implementations can provide information to help users visualize + what is going on in the catalog, but users should not rely on the content (since + the implementation of the underlying discovery might change).
        +
        +
        Returns:
        +
        A value representing state of the service catalog
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.html new file mode 100644 index 00000000..74ab16d2 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.html @@ -0,0 +1,285 @@ + + + + + + +HeartbeatMonitor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.event
+

Class HeartbeatMonitor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.event.HeartbeatMonitor
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class HeartbeatMonitor
    +extends Object
    +
    Helper class for listeners to the HeartbeatEvent providing a convenient way to + determine if there has been a change in state.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HeartbeatMonitor

        +
        public HeartbeatMonitor()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        update

        +
        public boolean update(Object value)
        +
        +
        Parameters:
        +
        value - the latest heartbeat
        +
        Returns:
        +
        true if the state changed
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.html new file mode 100644 index 00000000..3d5e587c --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.html @@ -0,0 +1,336 @@ + + + + + + +InstanceRegisteredEvent (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.event
+

Class InstanceRegisteredEvent<T>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.util.EventObject
    • +
    • +
        +
      • org.springframework.context.ApplicationEvent
      • +
      • +
          +
        • org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent<T>
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class InstanceRegisteredEvent<T>
    +extends org.springframework.context.ApplicationEvent
    +
    Event to be published after the local service instance registers itself with a + discovery service.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + + + +
        +
      • +

        InstanceRegisteredEvent

        +
        public InstanceRegisteredEvent(Object source,
        +                               T config)
        +
        Create a new InstanceRegisteredEvent instance.
        +
        +
        Parameters:
        +
        source - the component that published the event (never null)
        +
        config - the configuration of the instance
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getConfig

        +
        public T getConfig()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.html new file mode 100644 index 00000000..c33c1bc1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.html @@ -0,0 +1,328 @@ + + + + + + +ParentHeartbeatEvent (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.event
+

Class ParentHeartbeatEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class ParentHeartbeatEvent
    +extends org.springframework.context.ApplicationEvent
    +
    Heartbeat Event that a Parent ApplicationContext can send to a child Context. Useful, + for example, when config server is located via DiscoveryClient, in which case the + HeartbeatEvent that triggers this event is fired in the parent (bootstrap) + context.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ParentHeartbeatEvent

        +
        public ParentHeartbeatEvent(Object source,
        +                            Object value)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public Object getValue()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatEvent.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatEvent.html new file mode 100644 index 00000000..af0567b9 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatEvent.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.event.HeartbeatEvent (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.event.HeartbeatEvent

+
+
No usage of org.springframework.cloud.client.discovery.event.HeartbeatEvent
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatMonitor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatMonitor.html new file mode 100644 index 00000000..eb496f0e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatMonitor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.event.HeartbeatMonitor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.event.HeartbeatMonitor

+
+
No usage of org.springframework.cloud.client.discovery.event.HeartbeatMonitor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/InstanceRegisteredEvent.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/InstanceRegisteredEvent.html new file mode 100644 index 00000000..905485f7 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/InstanceRegisteredEvent.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/ParentHeartbeatEvent.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/ParentHeartbeatEvent.html new file mode 100644 index 00000000..85d6b7ac --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/ParentHeartbeatEvent.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent

+
+
No usage of org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-frame.html new file mode 100644 index 00000000..f48c3cf1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-frame.html @@ -0,0 +1,24 @@ + + + + + + +org.springframework.cloud.client.discovery.event (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery.event

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-summary.html new file mode 100644 index 00000000..440c2f89 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-summary.html @@ -0,0 +1,167 @@ + + + + + + +org.springframework.cloud.client.discovery.event (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery.event

+
+
+
    +
  • + + + + + + + + + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    HeartbeatEvent +
    Event DiscoveryClient implementation can broadcast if they support heartbeat's from the + discovery server.
    +
    HeartbeatMonitor +
    Helper class for listeners to the HeartbeatEvent providing a convenient way to + determine if there has been a change in state.
    +
    InstanceRegisteredEvent<T> +
    Event to be published after the local service instance registers itself with a + discovery service.
    +
    ParentHeartbeatEvent +
    Heartbeat Event that a Parent ApplicationContext can send to a child Context.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-tree.html new file mode 100644 index 00000000..cbd1b5b0 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-tree.html @@ -0,0 +1,150 @@ + + + + + + +org.springframework.cloud.client.discovery.event Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery.event

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-use.html new file mode 100644 index 00000000..ddf7c8df --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/event/package-use.html @@ -0,0 +1,162 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery.event (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery.event

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.html new file mode 100644 index 00000000..2690bc5b --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.html @@ -0,0 +1,367 @@ + + + + + + +DiscoveryClientHealthIndicator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.health
+

Class DiscoveryClientHealthIndicator

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DiscoveryClientHealthIndicator

        +
        public DiscoveryClientHealthIndicator(DiscoveryClient discoveryClient)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        health

        +
        public org.springframework.boot.actuate.health.Health health()
        +
        +
        Specified by:
        +
        health in interface DiscoveryHealthIndicator
        +
        Returns:
        +
        an indication of health
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.Holder.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.Holder.html new file mode 100644 index 00000000..e05d2c84 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.Holder.html @@ -0,0 +1,299 @@ + + + + + + +DiscoveryCompositeHealthIndicator.Holder (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.health
+

Class DiscoveryCompositeHealthIndicator.Holder

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.health.HealthIndicator
    +
    +
    +
    Enclosing class:
    +
    DiscoveryCompositeHealthIndicator
    +
    +
    +
    +
    public static class DiscoveryCompositeHealthIndicator.Holder
    +extends Object
    +implements org.springframework.boot.actuate.health.HealthIndicator
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        health

        +
        public org.springframework.boot.actuate.health.Health health()
        +
        +
        Specified by:
        +
        health in interface org.springframework.boot.actuate.health.HealthIndicator
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.html new file mode 100644 index 00000000..518ed9ec --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.html @@ -0,0 +1,317 @@ + + + + + + +DiscoveryCompositeHealthIndicator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.health
+

Class DiscoveryCompositeHealthIndicator

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.health.CompositeHealthIndicator
    • +
    • +
        +
      • org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.health.HealthIndicator
    +
    +
    +
    +
    public class DiscoveryCompositeHealthIndicator
    +extends org.springframework.boot.actuate.health.CompositeHealthIndicator
    +
    Gathers all DiscoveryHealthIndicator's from a DiscoveryClient implementation + and aggregates the statuses.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.html new file mode 100644 index 00000000..fa7461dc --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.html @@ -0,0 +1,249 @@ + + + + + + +DiscoveryHealthIndicator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.health
+

Interface DiscoveryHealthIndicator

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    DiscoveryClientHealthIndicator
    +
    +
    +
    +
    public interface DiscoveryHealthIndicator
    +
    A health indicator interface specific for a DiscoveryClient implementation
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        String getName()
        +
      • +
      + + + +
        +
      • +

        health

        +
        org.springframework.boot.actuate.health.Health health()
        +
        +
        Returns:
        +
        an indication of health
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryClientHealthIndicator.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryClientHealthIndicator.html new file mode 100644 index 00000000..17495fbc --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryClientHealthIndicator.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.Holder.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.Holder.html new file mode 100644 index 00000000..eaf3b6cb --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.Holder.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.html new file mode 100644 index 00000000..43ab9245 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.html @@ -0,0 +1,167 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryHealthIndicator.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryHealthIndicator.html new file mode 100644 index 00000000..39b05393 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryHealthIndicator.html @@ -0,0 +1,225 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-frame.html new file mode 100644 index 00000000..e0efe6f6 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-frame.html @@ -0,0 +1,27 @@ + + + + + + +org.springframework.cloud.client.discovery.health (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery.health

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-summary.html new file mode 100644 index 00000000..40881354 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-summary.html @@ -0,0 +1,172 @@ + + + + + + +org.springframework.cloud.client.discovery.health (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery.health

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-tree.html new file mode 100644 index 00000000..29d7e821 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-tree.html @@ -0,0 +1,149 @@ + + + + + + +org.springframework.cloud.client.discovery.health Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery.health

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.health.CompositeHealthIndicator (implements org.springframework.boot.actuate.health.HealthIndicator) + +
    • +
    • org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator (implements org.springframework.context.ApplicationListener<E>, org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator, org.springframework.core.Ordered)
    • +
    • org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder (implements org.springframework.boot.actuate.health.HealthIndicator)
    • +
    +
  • +
+

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-use.html new file mode 100644 index 00000000..876f4a43 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/health/package-use.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery.health (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery.health

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.html new file mode 100644 index 00000000..39c66757 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.html @@ -0,0 +1,373 @@ + + + + + + +NoopDiscoveryClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.noop
+

Class NoopDiscoveryClient

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    DiscoveryClient
    +
    +
    +
    Deprecated.  + +
    +
    +
    @Deprecated
    +public class NoopDiscoveryClient
    +extends Object
    +implements DiscoveryClient
    +
    DiscoveryClient used when no implementations are found on the classpath
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        NoopDiscoveryClient

        +
        public NoopDiscoveryClient(ServiceInstance instance)
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        description

        +
        public String description()
        +
        Deprecated. 
        +
        Description copied from interface: DiscoveryClient
        +
        A human readable description of the implementation, used in HealthIndicator
        +
        +
        Specified by:
        +
        description in interface DiscoveryClient
        +
        Returns:
        +
        the description
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getInstances

        +
        public List<ServiceInstance> getInstances(String serviceId)
        +
        Deprecated. 
        +
        Description copied from interface: DiscoveryClient
        +
        Get all ServiceInstances associated with a particular serviceId
        +
        +
        Specified by:
        +
        getInstances in interface DiscoveryClient
        +
        Parameters:
        +
        serviceId - the serviceId to query
        +
        Returns:
        +
        a List of ServiceInstance
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html new file mode 100644 index 00000000..c774ca8f --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html @@ -0,0 +1,282 @@ + + + + + + +NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.noop
+

Class NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    NoopDiscoveryClientAutoConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnClass(name={"org.springframework.web.context.support.GenericWebApplicationContext","org.springframework.boot.context.embedded.EmbeddedWebApplicationContext"})
    +protected static class NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Boot15PortFinderConfiguration

        +
        protected Boot15PortFinderConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        portFinder

        +
        @Bean
        +public org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.PortFinder portFinder(org.springframework.context.ApplicationContext context)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.html new file mode 100644 index 00000000..bdbd76b0 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.html @@ -0,0 +1,355 @@ + + + + + + +NoopDiscoveryClientAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.noop
+

Class NoopDiscoveryClientAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.context.ApplicationListener<org.springframework.context.event.ContextRefreshedEvent>
    +
    +
    +
    Deprecated.  +
    Use + instead
    +
    +
    +
    @Configuration
    + @EnableConfigurationProperties
    + @ConditionalOnMissingBean(value=DiscoveryClient.class)
    + @Deprecated
    +public class NoopDiscoveryClientAutoConfiguration
    +extends Object
    +implements org.springframework.context.ApplicationListener<org.springframework.context.event.ContextRefreshedEvent>
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        NoopDiscoveryClientAutoConfiguration

        +
        public NoopDiscoveryClientAutoConfiguration()
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.context.event.ContextRefreshedEvent event)
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.context.event.ContextRefreshedEvent>
        +
        +
      • +
      + + + +
        +
      • +

        discoveryClient

        +
        @Bean
        +public DiscoveryClient discoveryClient()
        +
        Deprecated. 
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClient.html new file mode 100644 index 00000000..3b8f3966 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClient.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient

+
+
No usage of org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html new file mode 100644 index 00000000..69be76fa --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration

+
+
No usage of org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.html new file mode 100644 index 00000000..f51c05ac --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration

+
+
No usage of org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-frame.html new file mode 100644 index 00000000..cc107649 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +org.springframework.cloud.client.discovery.noop (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery.noop

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-summary.html new file mode 100644 index 00000000..6a7c5960 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-summary.html @@ -0,0 +1,157 @@ + + + + + + +org.springframework.cloud.client.discovery.noop (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery.noop

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-tree.html new file mode 100644 index 00000000..b417f580 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-tree.html @@ -0,0 +1,141 @@ + + + + + + +org.springframework.cloud.client.discovery.noop Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery.noop

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-use.html new file mode 100644 index 00000000..945dbca9 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/noop/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery.noop (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery.noop

+
+
No usage of org.springframework.cloud.client.discovery.noop
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-frame.html new file mode 100644 index 00000000..784add80 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-frame.html @@ -0,0 +1,36 @@ + + + + + + +org.springframework.cloud.client.discovery (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-summary.html new file mode 100644 index 00000000..ad7856af --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-summary.html @@ -0,0 +1,210 @@ + + + + + + +org.springframework.cloud.client.discovery (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-tree.html new file mode 100644 index 00000000..7bd8e772 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-tree.html @@ -0,0 +1,188 @@ + + + + + + +org.springframework.cloud.client.discovery Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+
    +
  • org.springframework.cloud.client.discovery.DiscoveryClient
  • +
  • org.springframework.context.Lifecycle +
      +
    • org.springframework.context.SmartLifecycle (also extends org.springframework.context.Phased) +
        +
      • org.springframework.cloud.client.discovery.DiscoveryLifecycle (also extends org.springframework.core.Ordered)
      • +
      +
    • +
    +
  • +
  • org.springframework.core.Ordered +
      +
    • org.springframework.cloud.client.discovery.DiscoveryLifecycle (also extends org.springframework.context.SmartLifecycle)
    • +
    +
  • +
  • org.springframework.context.Phased +
      +
    • org.springframework.context.SmartLifecycle (also extends org.springframework.context.Lifecycle) +
        +
      • org.springframework.cloud.client.discovery.DiscoveryLifecycle (also extends org.springframework.core.Ordered)
      • +
      +
    • +
    +
  • +
+

Annotation Type Hierarchy

+ +

Enum Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-use.html new file mode 100644 index 00000000..b0cefc2b --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/package-use.html @@ -0,0 +1,289 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.html new file mode 100644 index 00000000..57ae1c83 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.html @@ -0,0 +1,357 @@ + + + + + + +SimpleDiscoveryClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.simple
+

Class SimpleDiscoveryClient

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    DiscoveryClient
    +
    +
    +
    +
    public class SimpleDiscoveryClient
    +extends Object
    +implements DiscoveryClient
    +
    A DiscoveryClient that will use the + properties file as a source of service instances
    +
    +
    Author:
    +
    Biju Kunjummen
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.html new file mode 100644 index 00000000..ae90dff6 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.html @@ -0,0 +1,282 @@ + + + + + + +SimpleDiscoveryClientAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.simple
+

Class SimpleDiscoveryClientAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnMissingBean(value=DiscoveryClient.class)
    + @EnableConfigurationProperties(value=SimpleDiscoveryProperties.class)
    +public class SimpleDiscoveryClientAutoConfiguration
    +extends Object
    +
    Spring Boot Auto-Configuration for Simple Properties based Discovery Client
    +
    +
    Author:
    +
    Biju Kunjummen
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SimpleDiscoveryClientAutoConfiguration

        +
        public SimpleDiscoveryClientAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        simpleDiscoveryClient

        +
        @Bean
        +public DiscoveryClient simpleDiscoveryClient()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.SimpleServiceInstance.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.SimpleServiceInstance.html new file mode 100644 index 00000000..91595aea --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.SimpleServiceInstance.html @@ -0,0 +1,408 @@ + + + + + + +SimpleDiscoveryProperties.SimpleServiceInstance (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.simple
+

Class SimpleDiscoveryProperties.SimpleServiceInstance

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SimpleServiceInstance

        +
        public SimpleServiceInstance()
        +
      • +
      + + + +
        +
      • +

        SimpleServiceInstance

        +
        public SimpleServiceInstance(String uri)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setUri

        +
        public void setUri(String uri)
        +
      • +
      + + + +
        +
      • +

        getServiceId

        +
        public String getServiceId()
        +
        +
        Specified by:
        +
        getServiceId in interface ServiceInstance
        +
        Returns:
        +
        the service id as register by the DiscoveryClient
        +
        +
      • +
      + + + +
        +
      • +

        getHost

        +
        public String getHost()
        +
        +
        Specified by:
        +
        getHost in interface ServiceInstance
        +
        Returns:
        +
        the hostname of the registered ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        getPort

        +
        public int getPort()
        +
        +
        Specified by:
        +
        getPort in interface ServiceInstance
        +
        Returns:
        +
        the port of the registered ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        isSecure

        +
        public boolean isSecure()
        +
        +
        Specified by:
        +
        isSecure in interface ServiceInstance
        +
        Returns:
        +
        if the port of the registered ServiceInstance is https or not
        +
        +
      • +
      + + + +
        +
      • +

        getUri

        +
        public URI getUri()
        +
        +
        Specified by:
        +
        getUri in interface ServiceInstance
        +
        Returns:
        +
        the service uri address
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.html new file mode 100644 index 00000000..26984b41 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.html @@ -0,0 +1,313 @@ + + + + + + +SimpleDiscoveryProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.simple
+

Class SimpleDiscoveryProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(prefix="spring.cloud.discovery.client.simple")
    +public class SimpleDiscoveryProperties
    +extends Object
    +
    Properties to hold the details of a + DiscoveryClient service instances + for a given service
    +
    +
    Author:
    +
    Biju Kunjummen
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClient.html new file mode 100644 index 00000000..edd92673 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClient.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient

+
+
No usage of org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClientAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClientAutoConfiguration.html new file mode 100644 index 00000000..29cf000f --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClientAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration

+
+
No usage of org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.SimpleServiceInstance.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.SimpleServiceInstance.html new file mode 100644 index 00000000..b94fa976 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.SimpleServiceInstance.html @@ -0,0 +1,179 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.html new file mode 100644 index 00000000..6e1340e1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.html @@ -0,0 +1,164 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-frame.html new file mode 100644 index 00000000..ed3dac8f --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-frame.html @@ -0,0 +1,24 @@ + + + + + + +org.springframework.cloud.client.discovery.simple (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery.simple

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-summary.html new file mode 100644 index 00000000..0c691d03 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-summary.html @@ -0,0 +1,165 @@ + + + + + + +org.springframework.cloud.client.discovery.simple (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery.simple

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-tree.html new file mode 100644 index 00000000..d25a5968 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-tree.html @@ -0,0 +1,142 @@ + + + + + + +org.springframework.cloud.client.discovery.simple Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery.simple

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-use.html new file mode 100644 index 00000000..fd77a11d --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/discovery/simple/package-use.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery.simple (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery.simple

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html new file mode 100644 index 00000000..9b56db47 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html @@ -0,0 +1,243 @@ + + + + + + +CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Refresh

        +
        public Refresh()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html new file mode 100644 index 00000000..10d58044 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html @@ -0,0 +1,263 @@ + + + + + + +CloudHypermediaAutoConfiguration.CloudHypermediaProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class CloudHypermediaAutoConfiguration.CloudHypermediaProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    CloudHypermediaAutoConfiguration
    +
    +
    +
    +
    @ConfigurationProperties(prefix="spring.cloud.hypermedia")
    +public static class CloudHypermediaAutoConfiguration.CloudHypermediaProperties
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudHypermediaProperties

        +
        public CloudHypermediaProperties()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.html new file mode 100644 index 00000000..3527aef2 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.html @@ -0,0 +1,303 @@ + + + + + + +CloudHypermediaAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class CloudHypermediaAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudHypermediaAutoConfiguration

        +
        public CloudHypermediaAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        discoveredResourceRefresher

        +
        @Bean
        + @ConditionalOnMissingBean
        +public RemoteResourceRefresher discoveredResourceRefresher()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/DiscoveredResource.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/DiscoveredResource.html new file mode 100644 index 00000000..445ceb50 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/DiscoveredResource.html @@ -0,0 +1,317 @@ + + + + + + +DiscoveredResource (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class DiscoveredResource

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.DiscoveredResource
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    RemoteResource
    +
    +
    +
    +
    public class DiscoveredResource
    +extends Object
    +implements RemoteResource
    +
    A REST resource that is defined by a service reference and a traversal operation within that service.
    +
    +
    Author:
    +
    Oliver Gierke
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DiscoveredResource

        +
        public DiscoveredResource()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setRestOperations

        +
        public void setRestOperations(org.springframework.web.client.RestOperations restOperations)
        +
        Configures the RestOperations to use to execute the traversal and verifying HEAD calls.
        +
        +
        Parameters:
        +
        restOperations - can be null, resorting to a default RestTemplate in that case.
        +
        +
      • +
      + + + +
        +
      • +

        verifyOrDiscover

        +
        public void verifyOrDiscover()
        +
        Verifies the link to the current
        +
        +
        Specified by:
        +
        verifyOrDiscover in interface RemoteResource
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.html new file mode 100644 index 00000000..91f7f369 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.html @@ -0,0 +1,294 @@ + + + + + + +DynamicServiceInstanceProvider (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class DynamicServiceInstanceProvider

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DynamicServiceInstanceProvider

        +
        public DynamicServiceInstanceProvider()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResource.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResource.html new file mode 100644 index 00000000..f4bb24cc --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResource.html @@ -0,0 +1,255 @@ + + + + + + +RemoteResource (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Interface RemoteResource

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    DiscoveredResource
    +
    +
    +
    +
    public interface RemoteResource
    +
    A REST resource that can be discovered and can be either gone or available.
    +
    +
    Author:
    +
    Oliver Gierke
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      org.springframework.hateoas.LinkgetLink() +
      Returns the Link to the resource in case it is available or null + in case it's gone, i.e.
      +
      voidverifyOrDiscover() +
      Discovers the the resource in case it hasn't been yet or became unavailable.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getLink

        +
        org.springframework.hateoas.Link getLink()
        +
        Returns the Link to the resource in case it is available or null + in case it's gone, i.e. either generally unavailable or can't be discovered.
        +
      • +
      + + + +
        +
      • +

        verifyOrDiscover

        +
        void verifyOrDiscover()
        +
        Discovers the the resource in case it hasn't been yet or became unavailable. In + case a link has been discovered previously, it is verified and either confirmed or + the link is removed to indicate it's not available anymore.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.html new file mode 100644 index 00000000..cd155a38 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.html @@ -0,0 +1,313 @@ + + + + + + +RemoteResourceRefresher (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class RemoteResourceRefresher

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.scheduling.config.ScheduledTaskRegistrar
    • +
    • +
        +
      • org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar
      • +
      • +
          +
        • org.springframework.cloud.client.hypermedia.RemoteResourceRefresher
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.SmartInitializingSingleton
    +
    +
    +
    +
    public class RemoteResourceRefresher
    +extends org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar
    +
    A ScheduledTaskRegistrar that verifies all DiscoveredResource instances in the system based + on the given timing configuration.
    +
    +
    Author:
    +
    Oliver Gierke
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidafterPropertiesSet() 
      +
        +
      • + + +

        Methods inherited from class org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar

        +afterSingletonsInstantiated
      • +
      +
        +
      • + + +

        Methods inherited from class org.springframework.scheduling.config.ScheduledTaskRegistrar

        +addCronTask, addCronTask, addFixedDelayTask, addFixedDelayTask, addFixedRateTask, addFixedRateTask, addTriggerTask, addTriggerTask, destroy, getCronTaskList, getFixedDelayTaskList, getFixedRateTaskList, getScheduler, getTriggerTaskList, hasTasks, scheduleCronTask, scheduleFixedDelayTask, scheduleFixedRateTask, scheduleTasks, scheduleTriggerTask, setCronTasks, setCronTasksList, setFixedDelayTasks, setFixedDelayTasksList, setFixedRateTasks, setFixedRateTasksList, setScheduler, setTaskScheduler, setTriggerTasks, setTriggerTasksList
      • +
      + +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RemoteResourceRefresher

        +
        public RemoteResourceRefresher()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        afterPropertiesSet

        +
        public void afterPropertiesSet()
        +
        +
        Specified by:
        +
        afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
        +
        Overrides:
        +
        afterPropertiesSet in class org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.html new file mode 100644 index 00000000..bda84642 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.html @@ -0,0 +1,240 @@ + + + + + + +ServiceInstanceProvider (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Interface ServiceInstanceProvider

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getServiceInstance

        +
        ServiceInstance getServiceInstance()
        +
        Returns the service instance or null in case the service is currently unavailable.
        +
        +
        Returns:
        +
        the service instance or null in case the service is currently unavailable.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.html new file mode 100644 index 00000000..f1c9932e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.html @@ -0,0 +1,293 @@ + + + + + + +StaticServiceInstanceProvider (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class StaticServiceInstanceProvider

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        StaticServiceInstanceProvider

        +
        public StaticServiceInstanceProvider()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/TraversalDefinition.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/TraversalDefinition.html new file mode 100644 index 00000000..44a80e92 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/TraversalDefinition.html @@ -0,0 +1,232 @@ + + + + + + +TraversalDefinition (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Interface TraversalDefinition

+
+
+
+
    +
  • +
    +
    +
    public interface TraversalDefinition
    +
    Callback to define the traversal to a resource.
    +
    +
    Author:
    +
    Oliver Gierke
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      org.springframework.hateoas.client.Traverson.TraversalBuilderbuildTraversal(org.springframework.hateoas.client.Traverson traverson) 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        buildTraversal

        +
        org.springframework.hateoas.client.Traverson.TraversalBuilder buildTraversal(org.springframework.hateoas.client.Traverson traverson)
        +
        +
        Parameters:
        +
        traverson - the Traverson instance to run the traversal on.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html new file mode 100644 index 00000000..18fb5b66 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh

+
+
No usage of org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html new file mode 100644 index 00000000..dc6fa406 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties

+
+
No usage of org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.html new file mode 100644 index 00000000..432f3ee5 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration

+
+
No usage of org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DiscoveredResource.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DiscoveredResource.html new file mode 100644 index 00000000..04124561 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DiscoveredResource.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.DiscoveredResource (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.DiscoveredResource

+
+
No usage of org.springframework.cloud.client.hypermedia.DiscoveredResource
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DynamicServiceInstanceProvider.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DynamicServiceInstanceProvider.html new file mode 100644 index 00000000..1cc250c4 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DynamicServiceInstanceProvider.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider

+
+
No usage of org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResource.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResource.html new file mode 100644 index 00000000..af79ccd9 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResource.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.hypermedia.RemoteResource (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.hypermedia.RemoteResource

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResourceRefresher.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResourceRefresher.html new file mode 100644 index 00000000..66f2161a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResourceRefresher.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.RemoteResourceRefresher (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.RemoteResourceRefresher

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/ServiceInstanceProvider.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/ServiceInstanceProvider.html new file mode 100644 index 00000000..09bdf987 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/ServiceInstanceProvider.html @@ -0,0 +1,174 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.hypermedia.ServiceInstanceProvider (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.hypermedia.ServiceInstanceProvider

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/StaticServiceInstanceProvider.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/StaticServiceInstanceProvider.html new file mode 100644 index 00000000..bada20e1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/StaticServiceInstanceProvider.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider

+
+
No usage of org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/TraversalDefinition.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/TraversalDefinition.html new file mode 100644 index 00000000..c398291f --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/TraversalDefinition.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.hypermedia.TraversalDefinition (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.hypermedia.TraversalDefinition

+
+
No usage of org.springframework.cloud.client.hypermedia.TraversalDefinition
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-frame.html new file mode 100644 index 00000000..ed62c36b --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-frame.html @@ -0,0 +1,33 @@ + + + + + + +org.springframework.cloud.client.hypermedia (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.hypermedia

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-summary.html new file mode 100644 index 00000000..868fdda3 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-summary.html @@ -0,0 +1,210 @@ + + + + + + +org.springframework.cloud.client.hypermedia (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.hypermedia

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-tree.html new file mode 100644 index 00000000..cfb09367 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-tree.html @@ -0,0 +1,159 @@ + + + + + + +org.springframework.cloud.client.hypermedia Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.hypermedia

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-use.html new file mode 100644 index 00000000..ee5ab8c0 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/hypermedia/package-use.html @@ -0,0 +1,173 @@ + + + + + + +Uses of Package org.springframework.cloud.client.hypermedia (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.hypermedia

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.html new file mode 100644 index 00000000..3cae7be7 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.html @@ -0,0 +1,246 @@ + + + + + + +AsyncLoadBalancerAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class AsyncLoadBalancerAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.web.client.AsyncRestTemplate.class)
    +public class AsyncLoadBalancerAutoConfiguration
    +extends Object
    +
    Auto configuration for Ribbon (client side load balancing).
    +
    +
    Author:
    +
    Rob Worsnop
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AsyncLoadBalancerAutoConfiguration

        +
        public AsyncLoadBalancerAutoConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.html new file mode 100644 index 00000000..984d60c9 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.html @@ -0,0 +1,293 @@ + + + + + + +AsyncLoadBalancerInterceptor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class AsyncLoadBalancerInterceptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.http.client.AsyncClientHttpRequestInterceptor
    +
    +
    +
    +
    public class AsyncLoadBalancerInterceptor
    +extends Object
    +implements org.springframework.http.client.AsyncClientHttpRequestInterceptor
    +
    +
    Author:
    +
    Rob Worsnop
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AsyncLoadBalancerInterceptor

        +
        public AsyncLoadBalancerInterceptor(LoadBalancerClient loadBalancer)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        intercept

        +
        public org.springframework.util.concurrent.ListenableFuture<org.springframework.http.client.ClientHttpResponse> intercept(org.springframework.http.HttpRequest request,
        +                                                                                                                          byte[] body,
        +                                                                                                                          org.springframework.http.client.AsyncClientHttpRequestExecution execution)
        +                                                                                                                   throws IOException
        +
        +
        Specified by:
        +
        intercept in interface org.springframework.http.client.AsyncClientHttpRequestInterceptor
        +
        Throws:
        +
        IOException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.html new file mode 100644 index 00000000..e54d5526 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.html @@ -0,0 +1,227 @@ + + + + + + +AsyncRestTemplateCustomizer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface AsyncRestTemplateCustomizer

+
+
+
+
    +
  • +
    +
    +
    public interface AsyncRestTemplateCustomizer
    +
    +
    Author:
    +
    Rob Worsnop
    +
    +
  • +
+
+
+
    +
  • + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        customize

        +
        void customize(org.springframework.web.client.AsyncRestTemplate restTemplate)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.html new file mode 100644 index 00000000..8b9e3969 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.html @@ -0,0 +1,392 @@ + + + + + + +InterceptorRetryPolicy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class InterceptorRetryPolicy

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable, org.springframework.retry.RetryPolicy
    +
    +
    +
    +
    public class InterceptorRetryPolicy
    +extends Object
    +implements org.springframework.retry.RetryPolicy
    +
    RetryPolicy used by the LoadBalancerClient when retrying failed requests.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        InterceptorRetryPolicy

        +
        public InterceptorRetryPolicy(org.springframework.http.HttpRequest request,
        +                              LoadBalancedRetryPolicy policy,
        +                              ServiceInstanceChooser serviceInstanceChooser,
        +                              String serviceName)
        +
        Creates a new retry policy.
        +
        +
        Parameters:
        +
        request - the request that will be retried
        +
        policy - the retry policy from the load balancer
        +
        serviceInstanceChooser - the load balancer client
        +
        serviceName - the name of the service
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        canRetry

        +
        public boolean canRetry(org.springframework.retry.RetryContext context)
        +
        +
        Specified by:
        +
        canRetry in interface org.springframework.retry.RetryPolicy
        +
        +
      • +
      + + + +
        +
      • +

        open

        +
        public org.springframework.retry.RetryContext open(org.springframework.retry.RetryContext parent)
        +
        +
        Specified by:
        +
        open in interface org.springframework.retry.RetryPolicy
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        public void close(org.springframework.retry.RetryContext context)
        +
        +
        Specified by:
        +
        close in interface org.springframework.retry.RetryPolicy
        +
        +
      • +
      + + + +
        +
      • +

        registerThrowable

        +
        public void registerThrowable(org.springframework.retry.RetryContext context,
        +                              Throwable throwable)
        +
        +
        Specified by:
        +
        registerThrowable in interface org.springframework.retry.RetryPolicy
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(Object o)
        +
        +
        Overrides:
        +
        equals in class Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalanced.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalanced.html new file mode 100644 index 00000000..c094683c --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalanced.html @@ -0,0 +1,175 @@ + + + + + + +LoadBalanced (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Annotation Type LoadBalanced

+
+
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.html new file mode 100644 index 00000000..0166c5da --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.html @@ -0,0 +1,407 @@ + + + + + + +LoadBalancedRetryContext (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancedRetryContext

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.core.AttributeAccessorSupport
    • +
    • +
        +
      • org.springframework.retry.context.RetryContextSupport
      • +
      • +
          +
        • org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable, org.springframework.core.AttributeAccessor, org.springframework.retry.RetryContext
    +
    +
    +
    +
    public class LoadBalancedRetryContext
    +extends org.springframework.retry.context.RetryContextSupport
    +
    RetryContext for load balanced retries.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from interface org.springframework.retry.RetryContext

        +CLOSED, EXHAUSTED, NAME, RECOVERED, STATE_KEY
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      LoadBalancedRetryContext(org.springframework.retry.RetryContext parent, + org.springframework.http.HttpRequest request) +
      Creates a new load balanced context.
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      org.springframework.http.HttpRequestgetRequest() +
      Gets the request that is being load balanced.
      +
      ServiceInstancegetServiceInstance() +
      Gets the service instance used during the retry.
      +
      voidsetRequest(org.springframework.http.HttpRequest request) +
      Sets the request that is being load baalnced.
      +
      voidsetServiceInstance(ServiceInstance serviceInstance) +
      Sets the service instance to use during the retry.
      +
      +
        +
      • + + +

        Methods inherited from class org.springframework.retry.context.RetryContextSupport

        +getLastThrowable, getParent, getRetryCount, isExhaustedOnly, registerThrowable, setExhaustedOnly, toString
      • +
      +
        +
      • + + +

        Methods inherited from class org.springframework.core.AttributeAccessorSupport

        +attributeNames, copyAttributesFrom, equals, getAttribute, hasAttribute, hashCode, removeAttribute, setAttribute
      • +
      + +
        +
      • + + +

        Methods inherited from interface org.springframework.core.AttributeAccessor

        +attributeNames, getAttribute, hasAttribute, removeAttribute, setAttribute
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoadBalancedRetryContext

        +
        public LoadBalancedRetryContext(org.springframework.retry.RetryContext parent,
        +                                org.springframework.http.HttpRequest request)
        +
        Creates a new load balanced context.
        +
        +
        Parameters:
        +
        parent - the parent context
        +
        request - the request that is being load balanced
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getRequest

        +
        public org.springframework.http.HttpRequest getRequest()
        +
        Gets the request that is being load balanced.
        +
        +
        Returns:
        +
        the request that is being load balanced
        +
        +
      • +
      + + + +
        +
      • +

        setRequest

        +
        public void setRequest(org.springframework.http.HttpRequest request)
        +
        Sets the request that is being load baalnced.
        +
        +
        Parameters:
        +
        request - the request to load balanced
        +
        +
      • +
      + + + +
        +
      • +

        getServiceInstance

        +
        public ServiceInstance getServiceInstance()
        +
        Gets the service instance used during the retry.
        +
        +
        Returns:
        +
        the service instance used during the retry
        +
        +
      • +
      + + + +
        +
      • +

        setServiceInstance

        +
        public void setServiceInstance(ServiceInstance serviceInstance)
        +
        Sets the service instance to use during the retry.
        +
        +
        Parameters:
        +
        serviceInstance - the service instance to use during the retry
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.html new file mode 100644 index 00000000..c3dca7b0 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.html @@ -0,0 +1,304 @@ + + + + + + +LoadBalancedRetryPolicy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancedRetryPolicy

+
+
+
+
    +
  • +
    +
    +
    public interface LoadBalancedRetryPolicy
    +
    Retry logic to use for the LoadBalancerClient.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        canRetrySameServer

        +
        boolean canRetrySameServer(LoadBalancedRetryContext context)
        +
        Return true to retry the failed request on the same server. + This method may be called more than once when executing a single operation.
        +
        +
        Parameters:
        +
        context - the context for the retry operation
        +
        Returns:
        +
        true to retry the failed request on the same server, false otherwise
        +
        +
      • +
      + + + +
        +
      • +

        canRetryNextServer

        +
        boolean canRetryNextServer(LoadBalancedRetryContext context)
        +
        Return true to retry the failed request on the next server from the load balancer. + This method may be called more than once when executing a single operation.
        +
        +
        Parameters:
        +
        context - the context for the retry operation
        +
        Returns:
        +
        true to retry the failed request on the next server from the load balancer, false otherwise
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        void close(LoadBalancedRetryContext context)
        +
        Called when the retry operation has ended.
        +
        +
        Parameters:
        +
        context - the context for the retry operation
        +
        +
      • +
      + + + +
        +
      • +

        registerThrowable

        +
        void registerThrowable(LoadBalancedRetryContext context,
        +                       Throwable throwable)
        +
        Called when the execution fails.
        +
        +
        Parameters:
        +
        context - the context for the retry operation
        +
        throwable - the throwable from the failed execution.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html new file mode 100644 index 00000000..d462fb11 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html @@ -0,0 +1,312 @@ + + + + + + +LoadBalancedRetryPolicyFactory.NeverRetryFactory (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancedRetryPolicyFactory.NeverRetryFactory

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory
    • +
    +
  • +
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.html new file mode 100644 index 00000000..a5d4fee1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.html @@ -0,0 +1,263 @@ + + + + + + +LoadBalancedRetryPolicyFactory (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancedRetryPolicyFactory

+
+
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.html new file mode 100644 index 00000000..1c1bf3de --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.html @@ -0,0 +1,298 @@ + + + + + + +LoadBalancerAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancerAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.web.client.RestTemplate.class)
    + @ConditionalOnBean(value=LoadBalancerClient.class)
    + @EnableConfigurationProperties(value=LoadBalancerRetryProperties.class)
    +public class LoadBalancerAutoConfiguration
    +extends Object
    +
    Auto configuration for Ribbon (client side load balancing).
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer, Will Tran
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoadBalancerAutoConfiguration

        +
        public LoadBalancerAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        loadBalancedRestTemplateInitializer

        +
        @Bean
        +public org.springframework.beans.factory.SmartInitializingSingleton loadBalancedRestTemplateInitializer(List<RestTemplateCustomizer> customizers)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.html new file mode 100644 index 00000000..c9cb0183 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.html @@ -0,0 +1,322 @@ + + + + + + +LoadBalancerClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancerClient

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        <T> T execute(String serviceId,
        +              LoadBalancerRequest<T> request)
        +       throws IOException
        +
        execute request using a ServiceInstance from the LoadBalancer for the specified + service
        +
        +
        Parameters:
        +
        serviceId - the service id to look up the LoadBalancer
        +
        request - allows implementations to execute pre and post actions such as + incrementing metrics
        +
        Returns:
        +
        the result of the LoadBalancerRequest callback on the selected + ServiceInstance
        +
        Throws:
        +
        IOException
        +
        +
      • +
      + + + +
        +
      • +

        execute

        +
        <T> T execute(String serviceId,
        +              ServiceInstance serviceInstance,
        +              LoadBalancerRequest<T> request)
        +       throws IOException
        +
        execute request using a ServiceInstance from the LoadBalancer for the specified + service
        +
        +
        Parameters:
        +
        serviceId - the service id to look up the LoadBalancer
        +
        serviceInstance - the service to execute the request to
        +
        request - allows implementations to execute pre and post actions such as + incrementing metrics
        +
        Returns:
        +
        the result of the LoadBalancerRequest callback on the selected + ServiceInstance
        +
        Throws:
        +
        IOException
        +
        +
      • +
      + + + +
        +
      • +

        reconstructURI

        +
        URI reconstructURI(ServiceInstance instance,
        +                   URI original)
        +
        Create a proper URI with a real host and port for systems to utilize. + Some systems use a URI with the logical serivce name as the host, + such as http://myservice/path/to/service. This will replace the + service name with the host:port from the ServiceInstance.
        +
        +
        Parameters:
        +
        instance -
        +
        original - a URI with the host as a logical service name
        +
        Returns:
        +
        a reconstructed URI
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.html new file mode 100644 index 00000000..91783966 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.html @@ -0,0 +1,307 @@ + + + + + + +LoadBalancerInterceptor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancerInterceptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.http.client.ClientHttpRequestInterceptor
    +
    +
    +
    +
    public class LoadBalancerInterceptor
    +extends Object
    +implements org.springframework.http.client.ClientHttpRequestInterceptor
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer, Ryan Baxter, William Tran
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        intercept

        +
        public org.springframework.http.client.ClientHttpResponse intercept(org.springframework.http.HttpRequest request,
        +                                                                    byte[] body,
        +                                                                    org.springframework.http.client.ClientHttpRequestExecution execution)
        +                                                             throws IOException
        +
        +
        Specified by:
        +
        intercept in interface org.springframework.http.client.ClientHttpRequestInterceptor
        +
        Throws:
        +
        IOException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.html new file mode 100644 index 00000000..e8369b1e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.html @@ -0,0 +1,234 @@ + + + + + + +LoadBalancerRequest (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancerRequest<T>

+
+
+
+
    +
  • +
    +
    +
    public interface LoadBalancerRequest<T>
    +
    Simple interface used by LoadBalancerClient to apply metrics or pre and post + actions around load balancer requests.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.html new file mode 100644 index 00000000..c122b81a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.html @@ -0,0 +1,299 @@ + + + + + + +LoadBalancerRequestFactory (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancerRequestFactory

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        createRequest

        +
        public LoadBalancerRequest<org.springframework.http.client.ClientHttpResponse> createRequest(org.springframework.http.HttpRequest request,
        +                                                                                             byte[] body,
        +                                                                                             org.springframework.http.client.ClientHttpRequestExecution execution)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.html new file mode 100644 index 00000000..1e68da49 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.html @@ -0,0 +1,272 @@ + + + + + + +LoadBalancerRequestTransformer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancerRequestTransformer

+
+
+
+
    +
  • +
    +
    +
    @Order(value=0)
    +public interface LoadBalancerRequestTransformer
    +
    Allows applications to transform the load balanced HttpRequest given + the chosen ServiceInstance
    +
    +
    Author:
    +
    Will Tran
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        transformRequest

        +
        org.springframework.http.HttpRequest transformRequest(org.springframework.http.HttpRequest request,
        +                                                      ServiceInstance instance)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.html new file mode 100644 index 00000000..c8c5e6c0 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.html @@ -0,0 +1,306 @@ + + + + + + +LoadBalancerRetryProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancerRetryProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="spring.cloud.loadbalancer.retry")
    +public class LoadBalancerRetryProperties
    +extends Object
    +
    Configuration properties for the LoadBalancerClient.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoadBalancerRetryProperties

        +
        public LoadBalancerRetryProperties()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isEnabled

        +
        public boolean isEnabled()
        +
        Returns true if the load balancer should retry failed requests.
        +
        +
        Returns:
        +
        true if the load balancer should retry failed request, false otherwise.
        +
        +
      • +
      + + + +
        +
      • +

        setEnabled

        +
        public void setEnabled(boolean enabled)
        +
        Sets whether the load balancer should retry failed request.
        +
        +
        Parameters:
        +
        enabled - whether the load balancer should retry failed requests
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.html new file mode 100644 index 00000000..b383b8df --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.html @@ -0,0 +1,227 @@ + + + + + + +RestTemplateCustomizer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface RestTemplateCustomizer

+
+
+
+
    +
  • +
    +
    +
    public interface RestTemplateCustomizer
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        customize

        +
        void customize(org.springframework.web.client.RestTemplate restTemplate)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.html new file mode 100644 index 00000000..e37757c6 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.html @@ -0,0 +1,319 @@ + + + + + + +RetryLoadBalancerInterceptor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class RetryLoadBalancerInterceptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.http.client.ClientHttpRequestInterceptor
    +
    +
    +
    +
    public class RetryLoadBalancerInterceptor
    +extends Object
    +implements org.springframework.http.client.ClientHttpRequestInterceptor
    +
    +
    Author:
    +
    Ryan Baxter, Will Tran
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.html new file mode 100644 index 00000000..4644b6c2 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.html @@ -0,0 +1,242 @@ + + + + + + +ServiceInstanceChooser (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface ServiceInstanceChooser

+
+
+
+
    +
  • +
    +
    All Known Subinterfaces:
    +
    LoadBalancerClient
    +
    +
    +
    +
    public interface ServiceInstanceChooser
    +
    Implemented by classes which use a load balancer to choose a server to + send a request to.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        choose

        +
        ServiceInstance choose(String serviceId)
        +
        Choose a ServiceInstance from the LoadBalancer for the specified service
        +
        +
        Parameters:
        +
        serviceId - the service id to look up the LoadBalancer
        +
        Returns:
        +
        a ServiceInstance that matches the serviceId
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.html new file mode 100644 index 00000000..af8fb9e7 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.html @@ -0,0 +1,303 @@ + + + + + + +ServiceRequestWrapper (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class ServiceRequestWrapper

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.http.client.support.HttpRequestWrapper
    • +
    • +
        +
      • org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.http.HttpMessage, org.springframework.http.HttpRequest
    +
    +
    +
    +
    public class ServiceRequestWrapper
    +extends org.springframework.http.client.support.HttpRequestWrapper
    +
    +
    Author:
    +
    Ryan Baxter
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServiceRequestWrapper

        +
        public ServiceRequestWrapper(org.springframework.http.HttpRequest request,
        +                             ServiceInstance instance,
        +                             LoadBalancerClient loadBalancer)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getURI

        +
        public URI getURI()
        +
        +
        Specified by:
        +
        getURI in interface org.springframework.http.HttpRequest
        +
        Overrides:
        +
        getURI in class org.springframework.http.client.support.HttpRequestWrapper
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerAutoConfiguration.html new file mode 100644 index 00000000..d9005173 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration

+
+
No usage of org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerInterceptor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerInterceptor.html new file mode 100644 index 00000000..575f1823 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerInterceptor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor

+
+
No usage of org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncRestTemplateCustomizer.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncRestTemplateCustomizer.html new file mode 100644 index 00000000..c6995553 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncRestTemplateCustomizer.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.AsyncRestTemplateCustomizer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.AsyncRestTemplateCustomizer

+
+
No usage of org.springframework.cloud.client.loadbalancer.AsyncRestTemplateCustomizer
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/InterceptorRetryPolicy.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/InterceptorRetryPolicy.html new file mode 100644 index 00000000..1eeba68b --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/InterceptorRetryPolicy.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy

+
+
No usage of org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalanced.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalanced.html new file mode 100644 index 00000000..7b6b28c6 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalanced.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalanced (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalanced

+
+
No usage of org.springframework.cloud.client.loadbalancer.LoadBalanced
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryContext.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryContext.html new file mode 100644 index 00000000..69f45216 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryContext.html @@ -0,0 +1,187 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicy.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicy.html new file mode 100644 index 00000000..e086dca1 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicy.html @@ -0,0 +1,190 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html new file mode 100644 index 00000000..4461a109 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory

+
+
No usage of org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.html new file mode 100644 index 00000000..265a6924 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.html @@ -0,0 +1,187 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerAutoConfiguration.html new file mode 100644 index 00000000..0a645fb9 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration

+
+
No usage of org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerClient.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerClient.html new file mode 100644 index 00000000..e3c5bc5a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerClient.html @@ -0,0 +1,209 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancerClient (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancerClient

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerInterceptor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerInterceptor.html new file mode 100644 index 00000000..2034871c --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerInterceptor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor

+
+
No usage of org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequest.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequest.html new file mode 100644 index 00000000..847721c0 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequest.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequest (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancerRequest

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestFactory.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestFactory.html new file mode 100644 index 00000000..0a746ef6 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestFactory.html @@ -0,0 +1,185 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestTransformer.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestTransformer.html new file mode 100644 index 00000000..54297042 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestTransformer.html @@ -0,0 +1,165 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequestTransformer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancerRequestTransformer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRetryProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRetryProperties.html new file mode 100644 index 00000000..77faa274 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRetryProperties.html @@ -0,0 +1,174 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RestTemplateCustomizer.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RestTemplateCustomizer.html new file mode 100644 index 00000000..11794b76 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RestTemplateCustomizer.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.RestTemplateCustomizer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.RestTemplateCustomizer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RetryLoadBalancerInterceptor.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RetryLoadBalancerInterceptor.html new file mode 100644 index 00000000..cc7bb571 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RetryLoadBalancerInterceptor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor

+
+
No usage of org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceInstanceChooser.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceInstanceChooser.html new file mode 100644 index 00000000..a6dc629d --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceInstanceChooser.html @@ -0,0 +1,205 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.ServiceInstanceChooser (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.ServiceInstanceChooser

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceRequestWrapper.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceRequestWrapper.html new file mode 100644 index 00000000..96498917 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceRequestWrapper.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper

+
+
No usage of org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-frame.html new file mode 100644 index 00000000..70891cbb --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-frame.html @@ -0,0 +1,46 @@ + + + + + + +org.springframework.cloud.client.loadbalancer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.loadbalancer

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-summary.html new file mode 100644 index 00000000..3d502e03 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-summary.html @@ -0,0 +1,272 @@ + + + + + + +org.springframework.cloud.client.loadbalancer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.loadbalancer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-tree.html new file mode 100644 index 00000000..6bcf14d5 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-tree.html @@ -0,0 +1,179 @@ + + + + + + +org.springframework.cloud.client.loadbalancer Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.loadbalancer

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-use.html new file mode 100644 index 00000000..ab748695 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/loadbalancer/package-use.html @@ -0,0 +1,208 @@ + + + + + + +Uses of Package org.springframework.cloud.client.loadbalancer (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.loadbalancer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-frame.html new file mode 100644 index 00000000..ee1af8f5 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-frame.html @@ -0,0 +1,33 @@ + + + + + + +org.springframework.cloud.client (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-summary.html new file mode 100644 index 00000000..5f356ced --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-summary.html @@ -0,0 +1,196 @@ + + + + + + +org.springframework.cloud.client (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-tree.html new file mode 100644 index 00000000..f8edfa35 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-tree.html @@ -0,0 +1,151 @@ + + + + + + +org.springframework.cloud.client Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-use.html new file mode 100644 index 00000000..44bee62e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/package-use.html @@ -0,0 +1,266 @@ + + + + + + +Uses of Package org.springframework.cloud.client (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.html new file mode 100644 index 00000000..b0a55785 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.html @@ -0,0 +1,443 @@ + + + + + + +AbstractAutoServiceRegistration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class AbstractAutoServiceRegistration<R extends Registration>

+
+
+ +
+
    +
  • +
    +
    Type Parameters:
    +
    R - registration type passed to the ServiceRegistry.
    +
    +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, DiscoveryLifecycle, AutoServiceRegistration, org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent>, org.springframework.context.Lifecycle, org.springframework.context.Phased, org.springframework.context.SmartLifecycle, org.springframework.core.Ordered
    +
    +
    +
    +
    public abstract class AbstractAutoServiceRegistration<R extends Registration>
    +extends AbstractDiscoveryLifecycle
    +implements AutoServiceRegistration
    +
    Lifecycle methods that may be useful and common to ServiceRegistry implementations. + + TODO: document the lifecycle
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.html new file mode 100644 index 00000000..83591b90 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.html @@ -0,0 +1,177 @@ + + + + + + +AutoServiceRegistration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Interface AutoServiceRegistration

+
+
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.html new file mode 100644 index 00000000..1d615570 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.html @@ -0,0 +1,280 @@ + + + + + + +AutoServiceRegistrationAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class AutoServiceRegistrationAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AutoServiceRegistrationAutoConfiguration

        +
        public AutoServiceRegistrationAutoConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.html new file mode 100644 index 00000000..da364f16 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.html @@ -0,0 +1,245 @@ + + + + + + +AutoServiceRegistrationConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class AutoServiceRegistrationConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AutoServiceRegistrationConfiguration

        +
        public AutoServiceRegistrationConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.html new file mode 100644 index 00000000..6487899d --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.html @@ -0,0 +1,291 @@ + + + + + + +AutoServiceRegistrationProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class AutoServiceRegistrationProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="spring.cloud.service-registry.auto-registration")
    +public class AutoServiceRegistrationProperties
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AutoServiceRegistrationProperties

        +
        public AutoServiceRegistrationProperties()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isFailFast

        +
        public boolean isFailFast()
        +
      • +
      + + + +
        +
      • +

        setFailFast

        +
        public void setFailFast(boolean failFast)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/Registration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/Registration.html new file mode 100644 index 00000000..294a9859 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/Registration.html @@ -0,0 +1,234 @@ + + + + + + +Registration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Interface Registration

+
+
+
+
    +
  • +
    +
    +
    public interface Registration
    +
    A marker interface used by a ServiceRegistry.
    +
    +
    Since:
    +
    1.2.0
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getServiceId

        +
        String getServiceId()
        +
        +
        Returns:
        +
        the serviceId associated with this registration
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistry.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistry.html new file mode 100644 index 00000000..4547aeac --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistry.html @@ -0,0 +1,334 @@ + + + + + + +ServiceRegistry (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Interface ServiceRegistry<R extends Registration>

+
+
+
+
    +
  • +
    +
    +
    public interface ServiceRegistry<R extends Registration>
    +
    Contract to register and deregister instances with a Service Registry.
    +
    +
    Since:
    +
    1.2.0
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      voidclose() +
      Close the ServiceRegistry.
      +
      voidderegister(R registration) +
      Deregister the registration.
      +
      <T> TgetStatus(R registration) +
      Gets the status of a particular registration.
      +
      voidregister(R registration) +
      Register the registration.
      +
      voidsetStatus(R registration, + String status) +
      Sets the status of the registration.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        register

        +
        void register(R registration)
        +
        Register the registration. Registrations typically have information about + instances such as: hostname and port.
        +
        +
        Parameters:
        +
        registration - the registraion
        +
        +
      • +
      + + + + + +
        +
      • +

        deregister

        +
        void deregister(R registration)
        +
        Deregister the registration.
        +
        +
        Parameters:
        +
        registration -
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        void close()
        +
        Close the ServiceRegistry. This a lifecycle method.
        +
      • +
      + + + + + +
        +
      • +

        setStatus

        +
        void setStatus(R registration,
        +               String status)
        +
        Sets the status of the registration. The status values are determined + by the individual implementations.
        +
        +
        Parameters:
        +
        registration - the registration to update
        +
        status - the status to set
        +
        See Also:
        +
        ServiceRegistryEndpoint
        +
        +
      • +
      + + + + + +
        +
      • +

        getStatus

        +
        <T> T getStatus(R registration)
        +
        Gets the status of a particular registration.
        +
        +
        Type Parameters:
        +
        T - the type of the status
        +
        Parameters:
        +
        registration - the registration to query
        +
        Returns:
        +
        the status of the registration
        +
        See Also:
        +
        ServiceRegistryEndpoint
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html new file mode 100644 index 00000000..7655f52e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html @@ -0,0 +1,282 @@ + + + + + + +ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    ServiceRegistryAutoConfiguration
    +
    +
    +
    +
    @ConditionalOnBean(value=ServiceRegistry.class)
    + @ConditionalOnClass(value=org.springframework.boot.actuate.endpoint.Endpoint.class)
    +protected class ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServiceRegistryEndpointConfiguration

        +
        protected ServiceRegistryEndpointConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.html new file mode 100644 index 00000000..a2c37c71 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.html @@ -0,0 +1,263 @@ + + + + + + +ServiceRegistryAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class ServiceRegistryAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    +public class ServiceRegistryAutoConfiguration
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServiceRegistryAutoConfiguration

        +
        public ServiceRegistryAutoConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AbstractAutoServiceRegistration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AbstractAutoServiceRegistration.html new file mode 100644 index 00000000..f0a17e6c --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AbstractAutoServiceRegistration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration

+
+
No usage of org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistration.html new file mode 100644 index 00000000..38946320 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistration.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.serviceregistry.AutoServiceRegistration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.serviceregistry.AutoServiceRegistration

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationAutoConfiguration.html new file mode 100644 index 00000000..96db422f --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration

+
+
No usage of org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationConfiguration.html new file mode 100644 index 00000000..acff6b71 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration

+
+
No usage of org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationProperties.html new file mode 100644 index 00000000..0a37ae99 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationProperties.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties

+
+
No usage of org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/Registration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/Registration.html new file mode 100644 index 00000000..2f516410 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/Registration.html @@ -0,0 +1,196 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.serviceregistry.Registration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.serviceregistry.Registration

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistry.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistry.html new file mode 100644 index 00000000..e60832d4 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistry.html @@ -0,0 +1,210 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.serviceregistry.ServiceRegistry (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.serviceregistry.ServiceRegistry

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html new file mode 100644 index 00000000..7dc69c1a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration

+
+
No usage of org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.html new file mode 100644 index 00000000..a2f9105a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration

+
+
No usage of org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.html new file mode 100644 index 00000000..6e143dd4 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.html @@ -0,0 +1,385 @@ + + + + + + +ServiceRegistryEndpoint (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry.endpoint
+

Class ServiceRegistryEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
    +
    +
    +
    +
    @ManagedResource(description="Can be used to display and set the service instance status using the service registry")
    +public class ServiceRegistryEndpoint
    +extends Object
    +implements org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
    +
    Endpoint to display and set the service instance status using the service registry.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServiceRegistryEndpoint

        +
        public ServiceRegistryEndpoint(ServiceRegistry<?> serviceRegistry)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setRegistration

        +
        public void setRegistration(Registration registration)
        +
      • +
      + + + +
        +
      • +

        setStatus

        +
        @RequestMapping(path="instance-status",
        +                method=POST)
        + @ResponseBody
        + @ManagedOperation
        +public org.springframework.http.ResponseEntity<?> setStatus(@RequestBody
        +                                                                                                                                                                   String status)
        +
      • +
      + + + +
        +
      • +

        getStatus

        +
        @RequestMapping(path="instance-status",
        +                method=GET)
        + @ResponseBody
        + @ManagedAttribute
        +public org.springframework.http.ResponseEntity getStatus()
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public String getPath()
        +
        +
        Specified by:
        +
        getPath in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      + + + +
        +
      • +

        isSensitive

        +
        public boolean isSensitive()
        +
        +
        Specified by:
        +
        isSensitive in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      + + + +
        +
      • +

        getEndpointType

        +
        public Class<? extends org.springframework.boot.actuate.endpoint.Endpoint<?>> getEndpointType()
        +
        +
        Specified by:
        +
        getEndpointType in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/class-use/ServiceRegistryEndpoint.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/class-use/ServiceRegistryEndpoint.html new file mode 100644 index 00000000..ee23e339 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/class-use/ServiceRegistryEndpoint.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-frame.html new file mode 100644 index 00000000..181b45ae --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.client.serviceregistry.endpoint (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.serviceregistry.endpoint

+
+

Classes

+ +
+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-summary.html new file mode 100644 index 00000000..9a0d6be4 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +org.springframework.cloud.client.serviceregistry.endpoint (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.serviceregistry.endpoint

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    ServiceRegistryEndpoint +
    Endpoint to display and set the service instance status using the service registry.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-tree.html new file mode 100644 index 00000000..9d3770ca --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +org.springframework.cloud.client.serviceregistry.endpoint Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.serviceregistry.endpoint

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint (implements org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-use.html new file mode 100644 index 00000000..baf9b555 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package org.springframework.cloud.client.serviceregistry.endpoint (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.serviceregistry.endpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-frame.html new file mode 100644 index 00000000..765f37c2 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-frame.html @@ -0,0 +1,31 @@ + + + + + + +org.springframework.cloud.client.serviceregistry (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.serviceregistry

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-summary.html new file mode 100644 index 00000000..9e8c0e78 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-summary.html @@ -0,0 +1,189 @@ + + + + + + +org.springframework.cloud.client.serviceregistry (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.serviceregistry

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-tree.html new file mode 100644 index 00000000..3c7def65 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-tree.html @@ -0,0 +1,154 @@ + + + + + + +org.springframework.cloud.client.serviceregistry Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.serviceregistry

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-use.html new file mode 100644 index 00000000..ec3fb3f7 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/client/serviceregistry/package-use.html @@ -0,0 +1,195 @@ + + + + + + +Uses of Package org.springframework.cloud.client.serviceregistry (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.serviceregistry

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/IdUtils.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/IdUtils.html new file mode 100644 index 00000000..04c09b6e --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/IdUtils.html @@ -0,0 +1,294 @@ + + + + + + +IdUtils (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class IdUtils

+
+
+ +
+
    +
  • +
    +
    +
    public class IdUtils
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        IdUtils

        +
        public IdUtils()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getDefaultInstanceId

        +
        public static String getDefaultInstanceId(org.springframework.core.env.PropertyResolver resolver)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtils.HostInfo.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtils.HostInfo.html new file mode 100644 index 00000000..411bd0e4 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtils.HostInfo.html @@ -0,0 +1,325 @@ + + + + + + +InetUtils.HostInfo (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class InetUtils.HostInfo

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.commons.util.InetUtils.HostInfo
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    InetUtils
    +
    +
    +
    +
    public static class InetUtils.HostInfo
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        override

        +
        public boolean override
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HostInfo

        +
        public HostInfo(String hostname)
        +
      • +
      + + + +
        +
      • +

        HostInfo

        +
        public HostInfo()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getIpAddressAsInt

        +
        public int getIpAddressAsInt()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtils.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtils.html new file mode 100644 index 00000000..9c6e8728 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtils.html @@ -0,0 +1,400 @@ + + + + + + +InetUtils (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class InetUtils

+
+
+ +
+ +
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        findFirstNonLoopbackHostInfo

        +
        public InetUtils.HostInfo findFirstNonLoopbackHostInfo()
        +
      • +
      + + + +
        +
      • +

        findFirstNonLoopbackAddress

        +
        public InetAddress findFirstNonLoopbackAddress()
        +
      • +
      + + + + + + + +
        +
      • +

        getFirstNonLoopbackHostInfo

        +
        @Deprecated
        +public static InetUtils.HostInfo getFirstNonLoopbackHostInfo()
        +
        Deprecated. use the non-static findFirstNonLoopbackHostInfo() instead
        +
        Find the first non-loopback host info. If there were errors return a host info with + 'localhost' and '127.0.0.1' for hostname and ipAddress respectively.
        +
      • +
      + + + + + + + +
        +
      • +

        getIpAddressAsInt

        +
        public static int getIpAddressAsInt(String host)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtilsProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtilsProperties.html new file mode 100644 index 00000000..ed50281d --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/InetUtilsProperties.html @@ -0,0 +1,284 @@ + + + + + + +InetUtilsProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class InetUtilsProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.commons.util.InetUtilsProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="spring.cloud.inetutils")
    +public class InetUtilsProperties
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        InetUtilsProperties

        +
        public InetUtilsProperties()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/SpringFactoryImportSelector.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/SpringFactoryImportSelector.html new file mode 100644 index 00000000..1a61a525 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/SpringFactoryImportSelector.html @@ -0,0 +1,393 @@ + + + + + + +SpringFactoryImportSelector (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class SpringFactoryImportSelector<T>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.commons.util.SpringFactoryImportSelector<T>
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.annotation.ImportSelector, org.springframework.context.EnvironmentAware
    +
    +
    +
    Direct Known Subclasses:
    +
    EnableCircuitBreakerImportSelector, EnableDiscoveryClientImportSelector
    +
    +
    +
    +
    public abstract class SpringFactoryImportSelector<T>
    +extends Object
    +implements org.springframework.context.annotation.DeferredImportSelector, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.EnvironmentAware
    +
    Selects configurations to load defined by the generic type T. Loads implementations + using SpringFactoriesLoader.
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SpringFactoryImportSelector

        +
        protected SpringFactoryImportSelector()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        selectImports

        +
        public String[] selectImports(org.springframework.core.type.AnnotationMetadata metadata)
        +
        +
        Specified by:
        +
        selectImports in interface org.springframework.context.annotation.ImportSelector
        +
        +
      • +
      + + + +
        +
      • +

        hasDefaultFactory

        +
        protected boolean hasDefaultFactory()
        +
      • +
      + + + +
        +
      • +

        isEnabled

        +
        protected abstract boolean isEnabled()
        +
      • +
      + + + +
        +
      • +

        getSimpleName

        +
        protected String getSimpleName()
        +
      • +
      + + + +
        +
      • +

        getAnnotationClass

        +
        protected Class<T> getAnnotationClass()
        +
      • +
      + + + +
        +
      • +

        getEnvironment

        +
        protected org.springframework.core.env.Environment getEnvironment()
        +
      • +
      + + + +
        +
      • +

        setEnvironment

        +
        public void setEnvironment(org.springframework.core.env.Environment environment)
        +
        +
        Specified by:
        +
        setEnvironment in interface org.springframework.context.EnvironmentAware
        +
        +
      • +
      + + + +
        +
      • +

        setBeanClassLoader

        +
        public void setBeanClassLoader(ClassLoader classLoader)
        +
        +
        Specified by:
        +
        setBeanClassLoader in interface org.springframework.beans.factory.BeanClassLoaderAware
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/UtilAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/UtilAutoConfiguration.html new file mode 100644 index 00000000..7f9b50d3 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/UtilAutoConfiguration.html @@ -0,0 +1,297 @@ + + + + + + +UtilAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class UtilAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.commons.util.UtilAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnProperty(value="spring.cloud.util.enabled",
    +                       matchIfMissing=true)
    + @EnableConfigurationProperties
    +public class UtilAutoConfiguration
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UtilAutoConfiguration

        +
        public UtilAutoConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/IdUtils.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/IdUtils.html new file mode 100644 index 00000000..aa7875e6 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/IdUtils.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.IdUtils (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.IdUtils

+
+
No usage of org.springframework.cloud.commons.util.IdUtils
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.HostInfo.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.HostInfo.html new file mode 100644 index 00000000..36265322 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.HostInfo.html @@ -0,0 +1,186 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.InetUtils.HostInfo (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.InetUtils.HostInfo

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.html new file mode 100644 index 00000000..93b41d08 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.InetUtils (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.InetUtils

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtilsProperties.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtilsProperties.html new file mode 100644 index 00000000..9ecf9f14 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtilsProperties.html @@ -0,0 +1,190 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.InetUtilsProperties (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.InetUtilsProperties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/SpringFactoryImportSelector.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/SpringFactoryImportSelector.html new file mode 100644 index 00000000..cd8f5c18 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/SpringFactoryImportSelector.html @@ -0,0 +1,190 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.SpringFactoryImportSelector (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.SpringFactoryImportSelector

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/UtilAutoConfiguration.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/UtilAutoConfiguration.html new file mode 100644 index 00000000..5aeb0d1c --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/class-use/UtilAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.UtilAutoConfiguration (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.UtilAutoConfiguration

+
+
No usage of org.springframework.cloud.commons.util.UtilAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-frame.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-frame.html new file mode 100644 index 00000000..366c0966 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.commons.util (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.commons.util

+ + + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-summary.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-summary.html new file mode 100644 index 00000000..b7cb0847 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-summary.html @@ -0,0 +1,166 @@ + + + + + + +org.springframework.cloud.commons.util (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.commons.util

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-tree.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-tree.html new file mode 100644 index 00000000..a885a566 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.commons.util Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.commons.util

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.commons.util.IdUtils
    • +
    • org.springframework.cloud.commons.util.InetUtils (implements java.io.Closeable)
    • +
    • org.springframework.cloud.commons.util.InetUtils.HostInfo
    • +
    • org.springframework.cloud.commons.util.InetUtilsProperties
    • +
    • org.springframework.cloud.commons.util.SpringFactoryImportSelector<T> (implements org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.EnvironmentAware)
    • +
    • org.springframework.cloud.commons.util.UtilAutoConfiguration
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-use.html b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-use.html new file mode 100644 index 00000000..0d48b81c --- /dev/null +++ b/spring-cloud-commons/target/apidocs/org/springframework/cloud/commons/util/package-use.html @@ -0,0 +1,207 @@ + + + + + + +Uses of Package org.springframework.cloud.commons.util (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.commons.util

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/overview-frame.html b/spring-cloud-commons/target/apidocs/overview-frame.html new file mode 100644 index 00000000..8b17c7dc --- /dev/null +++ b/spring-cloud-commons/target/apidocs/overview-frame.html @@ -0,0 +1,34 @@ + + + + + + +Overview List (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + +

 

+ + diff --git a/spring-cloud-commons/target/apidocs/overview-summary.html b/spring-cloud-commons/target/apidocs/overview-summary.html new file mode 100644 index 00000000..02528df8 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/overview-summary.html @@ -0,0 +1,188 @@ + + + + + + +Overview (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API

+
+ + +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/overview-tree.html b/spring-cloud-commons/target/apidocs/overview-tree.html new file mode 100644 index 00000000..8b6f1537 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/overview-tree.html @@ -0,0 +1,316 @@ + + + + + + +Class Hierarchy (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/package-list b/spring-cloud-commons/target/apidocs/package-list new file mode 100644 index 00000000..031b395a --- /dev/null +++ b/spring-cloud-commons/target/apidocs/package-list @@ -0,0 +1,13 @@ +org.springframework.cloud.client +org.springframework.cloud.client.actuator +org.springframework.cloud.client.circuitbreaker +org.springframework.cloud.client.discovery +org.springframework.cloud.client.discovery.event +org.springframework.cloud.client.discovery.health +org.springframework.cloud.client.discovery.noop +org.springframework.cloud.client.discovery.simple +org.springframework.cloud.client.hypermedia +org.springframework.cloud.client.loadbalancer +org.springframework.cloud.client.serviceregistry +org.springframework.cloud.client.serviceregistry.endpoint +org.springframework.cloud.commons.util diff --git a/spring-cloud-commons/target/apidocs/script.js b/spring-cloud-commons/target/apidocs/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/spring-cloud-commons/target/apidocs/serialized-form.html b/spring-cloud-commons/target/apidocs/serialized-form.html new file mode 100644 index 00000000..5397ad06 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/serialized-form.html @@ -0,0 +1,235 @@ + + + + + + +Serialized Form (Spring Cloud Commons 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Serialized Form

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-commons/target/apidocs/stylesheet.css b/spring-cloud-commons/target/apidocs/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/spring-cloud-commons/target/apidocs/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/spring-cloud-commons/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-commons/target/classes/META-INF/spring-configuration-metadata.json new file mode 100644 index 00000000..eddfec24 --- /dev/null +++ b/spring-cloud-commons/target/classes/META-INF/spring-configuration-metadata.json @@ -0,0 +1,127 @@ +{ + "hints": [], + "groups": [ + { + "sourceType": "org.springframework.cloud.client.actuator.FeaturesEndpoint", + "name": "endpoints.features", + "type": "org.springframework.cloud.client.actuator.FeaturesEndpoint" + }, + { + "sourceType": "org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties", + "name": "spring.cloud.discovery.client.simple", + "type": "org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties" + }, + { + "sourceType": "org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration$CloudHypermediaProperties", + "name": "spring.cloud.hypermedia", + "type": "org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration$CloudHypermediaProperties" + }, + { + "sourceType": "org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration$CloudHypermediaProperties", + "name": "spring.cloud.hypermedia.refresh", + "type": "org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration$CloudHypermediaProperties$Refresh" + }, + { + "sourceType": "org.springframework.cloud.commons.util.InetUtilsProperties", + "name": "spring.cloud.inetutils", + "type": "org.springframework.cloud.commons.util.InetUtilsProperties" + }, + { + "sourceType": "org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties", + "name": "spring.cloud.loadbalancer.retry", + "type": "org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties" + }, + { + "sourceType": "org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties", + "name": "spring.cloud.service-registry.auto-registration", + "type": "org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties" + } + ], + "properties": [ + { + "sourceType": "org.springframework.cloud.client.actuator.FeaturesEndpoint", + "name": "endpoints.features.enabled", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.client.actuator.FeaturesEndpoint", + "name": "endpoints.features.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.client.actuator.FeaturesEndpoint", + "name": "endpoints.features.sensitive", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties", + "name": "spring.cloud.discovery.client.simple.instances", + "type": "java.util.Map>" + }, + { + "sourceType": "org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration$CloudHypermediaProperties$Refresh", + "defaultValue": 5000, + "name": "spring.cloud.hypermedia.refresh.fixed-delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration$CloudHypermediaProperties$Refresh", + "defaultValue": 10000, + "name": "spring.cloud.hypermedia.refresh.initial-delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.commons.util.InetUtilsProperties", + "defaultValue": "localhost", + "name": "spring.cloud.inetutils.default-hostname", + "description": "The default hostname. Used in case of errors.", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.commons.util.InetUtilsProperties", + "defaultValue": "127.0.0.1", + "name": "spring.cloud.inetutils.default-ip-address", + "description": "The default ipaddress. Used in case of errors.", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.commons.util.InetUtilsProperties", + "name": "spring.cloud.inetutils.ignored-interfaces", + "description": "List of Java regex expressions for network interfaces that will be ignored.", + "type": "java.util.List" + }, + { + "sourceType": "org.springframework.cloud.commons.util.InetUtilsProperties", + "name": "spring.cloud.inetutils.preferred-networks", + "description": "List of Java regex expressions for network addresses that will be preferred.", + "type": "java.util.List" + }, + { + "sourceType": "org.springframework.cloud.commons.util.InetUtilsProperties", + "defaultValue": 1, + "name": "spring.cloud.inetutils.timeout-seconds", + "description": "Timeout in seconds for calculating hostname.", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.commons.util.InetUtilsProperties", + "defaultValue": false, + "name": "spring.cloud.inetutils.use-only-site-local-interfaces", + "description": "Use only interfaces with site local addresses. See {@link InetAddress#isSiteLocalAddress()} for more details.", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties", + "defaultValue": true, + "name": "spring.cloud.loadbalancer.retry.enabled", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties", + "defaultValue": false, + "name": "spring.cloud.service-registry.auto-registration.fail-fast", + "description": "Should startup fail if there is no AutoServiceRegistration, default to false.", + "type": "java.lang.Boolean" + } + ] +} \ No newline at end of file diff --git a/spring-cloud-commons/target/classes/META-INF/spring.factories b/spring-cloud-commons/target/classes/META-INF/spring.factories new file mode 100644 index 00000000..4e17ff9a --- /dev/null +++ b/spring-cloud-commons/target/classes/META-INF/spring.factories @@ -0,0 +1,15 @@ +# AutoConfiguration +org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ +org.springframework.cloud.client.CommonsClientAutoConfiguration,\ +org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration,\ +org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration,\ +org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration,\ +org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration,\ +org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration,\ +org.springframework.cloud.commons.util.UtilAutoConfiguration,\ +org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration + + +# Environment Post Processors +org.springframework.boot.env.EnvironmentPostProcessor=\ +org.springframework.cloud.client.HostInfoEnvironmentPostProcessor diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration$ActuatorConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration$ActuatorConfiguration.class new file mode 100644 index 00000000..d39b5ac5 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration$ActuatorConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration$DiscoveryLoadBalancerConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration$DiscoveryLoadBalancerConfiguration.class new file mode 100644 index 00000000..64ac15be Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration$DiscoveryLoadBalancerConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration.class new file mode 100644 index 00000000..2c05d181 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/CommonsClientAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/DefaultServiceInstance.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/DefaultServiceInstance.class new file mode 100644 index 00000000..49a503ab Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/DefaultServiceInstance.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.class new file mode 100644 index 00000000..b73748d8 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/ServiceInstance.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/ServiceInstance.class new file mode 100644 index 00000000..933aee2e Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/ServiceInstance.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/SpringCloudApplication.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/SpringCloudApplication.class new file mode 100644 index 00000000..78d18617 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/SpringCloudApplication.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint$Feature.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint$Feature.class new file mode 100644 index 00000000..682e0f1f Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint$Feature.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint$Features.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint$Features.class new file mode 100644 index 00000000..2023ca60 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint$Features.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint.class new file mode 100644 index 00000000..37d690dc Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/FeaturesEndpoint.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/HasFeatures.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/HasFeatures.class new file mode 100644 index 00000000..ff2f5d25 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/HasFeatures.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/NamedFeature.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/NamedFeature.class new file mode 100644 index 00000000..6be08f74 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/actuator/NamedFeature.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.class new file mode 100644 index 00000000..0116f97b Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.class new file mode 100644 index 00000000..25acd4c2 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.class new file mode 100644 index 00000000..0a3124f8 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/DiscoveryClient.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/DiscoveryClient.class new file mode 100644 index 00000000..59a2b6ee Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/DiscoveryClient.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/DiscoveryLifecycle.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/DiscoveryLifecycle.class new file mode 100644 index 00000000..9b657a65 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/DiscoveryLifecycle.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/EnableDiscoveryClient.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/EnableDiscoveryClient.class new file mode 100644 index 00000000..82f5adc5 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/EnableDiscoveryClient.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.class new file mode 100644 index 00000000..7e3aee20 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/ManagementServerPortUtils$ManagementServerPort.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/ManagementServerPortUtils$ManagementServerPort.class new file mode 100644 index 00000000..46f34f42 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/ManagementServerPortUtils$ManagementServerPort.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/ManagementServerPortUtils.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/ManagementServerPortUtils.class new file mode 100644 index 00000000..915e6e76 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/ManagementServerPortUtils.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/HeartbeatEvent.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/HeartbeatEvent.class new file mode 100644 index 00000000..3a8dae0b Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/HeartbeatEvent.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.class new file mode 100644 index 00000000..64448304 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.class new file mode 100644 index 00000000..3d697204 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.class new file mode 100644 index 00000000..612b6a0b Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.class new file mode 100644 index 00000000..542669ad Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator$Holder.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator$Holder.class new file mode 100644 index 00000000..707396f1 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator$Holder.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.class new file mode 100644 index 00000000..54a570e8 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.class new file mode 100644 index 00000000..36534d67 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.class new file mode 100644 index 00000000..8682f553 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$Boot15PortFinderConfiguration$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$Boot15PortFinderConfiguration$1.class new file mode 100644 index 00000000..215c68d1 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$Boot15PortFinderConfiguration$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$Boot15PortFinderConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$Boot15PortFinderConfiguration.class new file mode 100644 index 00000000..3843036f Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$Boot15PortFinderConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$PortFinder.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$PortFinder.class new file mode 100644 index 00000000..347b4c0d Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$PortFinder.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.class new file mode 100644 index 00000000..b26fb303 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.class new file mode 100644 index 00000000..39f32275 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.class new file mode 100644 index 00000000..184c136c Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties$SimpleServiceInstance.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties$SimpleServiceInstance.class new file mode 100644 index 00000000..4e542a8a Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties$SimpleServiceInstance.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.class new file mode 100644 index 00000000..06453922 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration$CloudHypermediaProperties$Refresh.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration$CloudHypermediaProperties$Refresh.class new file mode 100644 index 00000000..01c41cbe Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration$CloudHypermediaProperties$Refresh.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration$CloudHypermediaProperties.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration$CloudHypermediaProperties.class new file mode 100644 index 00000000..f88f1da1 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration$CloudHypermediaProperties.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.class new file mode 100644 index 00000000..c1ab347b Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/DiscoveredResource.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/DiscoveredResource.class new file mode 100644 index 00000000..cc7933ee Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/DiscoveredResource.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.class new file mode 100644 index 00000000..cc6c94da Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResource.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResource.class new file mode 100644 index 00000000..d46f436f Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResource.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher$1.class new file mode 100644 index 00000000..2a0a70f7 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.class new file mode 100644 index 00000000..924e6a09 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.class new file mode 100644 index 00000000..7b37e8e2 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.class new file mode 100644 index 00000000..0efdaea8 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/TraversalDefinition.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/TraversalDefinition.class new file mode 100644 index 00000000..889eb094 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/hypermedia/TraversalDefinition.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$AsyncRestTemplateCustomizerConfig$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$AsyncRestTemplateCustomizerConfig$1.class new file mode 100644 index 00000000..0a66317c Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$AsyncRestTemplateCustomizerConfig$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$AsyncRestTemplateCustomizerConfig.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$AsyncRestTemplateCustomizerConfig.class new file mode 100644 index 00000000..481d91c0 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$AsyncRestTemplateCustomizerConfig.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig$1.class new file mode 100644 index 00000000..ef01fc23 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig.class new file mode 100644 index 00000000..7f821db3 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.class new file mode 100644 index 00000000..8ca027c1 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor$1.class new file mode 100644 index 00000000..fbb99d78 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.class new file mode 100644 index 00000000..5d14a3c9 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.class new file mode 100644 index 00000000..d3fdd9fa Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.class new file mode 100644 index 00000000..fb09b6ec Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalanced.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalanced.class new file mode 100644 index 00000000..3b1d13bb Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalanced.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.class new file mode 100644 index 00000000..7c20fcae Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.class new file mode 100644 index 00000000..241546f3 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory$NeverRetryFactory.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory$NeverRetryFactory.class new file mode 100644 index 00000000..6544e784 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory$NeverRetryFactory.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.class new file mode 100644 index 00000000..d103e1ee Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$1.class new file mode 100644 index 00000000..00338d2d Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig$1.class new file mode 100644 index 00000000..e3a6492c Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig.class new file mode 100644 index 00000000..1ed564ad Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$RetryAutoConfiguration$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$RetryAutoConfiguration$1.class new file mode 100644 index 00000000..0ea21388 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$RetryAutoConfiguration$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$RetryAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$RetryAutoConfiguration.class new file mode 100644 index 00000000..f011cfd0 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$RetryAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.class new file mode 100644 index 00000000..98467341 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.class new file mode 100644 index 00000000..029906e6 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.class new file mode 100644 index 00000000..0990d0c6 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.class new file mode 100644 index 00000000..07ba83c0 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory$1.class new file mode 100644 index 00000000..e5f6da3b Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.class new file mode 100644 index 00000000..3507779e Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.class new file mode 100644 index 00000000..1721b338 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.class new file mode 100644 index 00000000..d5ae7f9f Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.class new file mode 100644 index 00000000..e951193d Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor$1.class new file mode 100644 index 00000000..164df572 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.class new file mode 100644 index 00000000..75920b83 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.class new file mode 100644 index 00000000..739bc222 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.class new file mode 100644 index 00000000..7f5a11c2 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.class new file mode 100644 index 00000000..b48ba853 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.class new file mode 100644 index 00000000..7b0ad42a Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.class new file mode 100644 index 00000000..ed4da214 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.class new file mode 100644 index 00000000..5871a516 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.class new file mode 100644 index 00000000..a76131a6 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/Registration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/Registration.class new file mode 100644 index 00000000..c58e4600 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/Registration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistry.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistry.class new file mode 100644 index 00000000..3686f369 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistry.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration$ServiceRegistryEndpointConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration$ServiceRegistryEndpointConfiguration.class new file mode 100644 index 00000000..aeddde97 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration$ServiceRegistryEndpointConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.class new file mode 100644 index 00000000..a9332e18 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.class b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.class new file mode 100644 index 00000000..f268abcb Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/IdUtils.class b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/IdUtils.class new file mode 100644 index 00000000..8ae955eb Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/IdUtils.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$1.class b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$1.class new file mode 100644 index 00000000..a58d44ed Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$1.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$2.class b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$2.class new file mode 100644 index 00000000..63467244 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$2.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$HostInfo.class b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$HostInfo.class new file mode 100644 index 00000000..798bdd66 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils$HostInfo.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils.class b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils.class new file mode 100644 index 00000000..fa224a15 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtils.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtilsProperties.class b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtilsProperties.class new file mode 100644 index 00000000..b7dcdf17 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/InetUtilsProperties.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/SpringFactoryImportSelector.class b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/SpringFactoryImportSelector.class new file mode 100644 index 00000000..63e95b11 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/SpringFactoryImportSelector.class differ diff --git a/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/UtilAutoConfiguration.class b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/UtilAutoConfiguration.class new file mode 100644 index 00000000..3b82da67 Binary files /dev/null and b/spring-cloud-commons/target/classes/org/springframework/cloud/commons/util/UtilAutoConfiguration.class differ diff --git a/spring-cloud-commons/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-commons/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 00000000..8b89c977 --- /dev/null +++ b/spring-cloud-commons/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/spring-cloud-commons/target/javadoc-bundle-options/package-list b/spring-cloud-commons/target/javadoc-bundle-options/package-list new file mode 100644 index 00000000..b52fe94b --- /dev/null +++ b/spring-cloud-commons/target/javadoc-bundle-options/package-list @@ -0,0 +1,209 @@ +java.applet +java.awt +java.awt.color +java.awt.datatransfer +java.awt.dnd +java.awt.event +java.awt.font +java.awt.geom +java.awt.im +java.awt.im.spi +java.awt.image +java.awt.image.renderable +java.awt.print +java.beans +java.beans.beancontext +java.io +java.lang +java.lang.annotation +java.lang.instrument +java.lang.invoke +java.lang.management +java.lang.ref +java.lang.reflect +java.math +java.net +java.nio +java.nio.channels +java.nio.channels.spi +java.nio.charset +java.nio.charset.spi +java.nio.file +java.nio.file.attribute +java.nio.file.spi +java.rmi +java.rmi.activation +java.rmi.dgc +java.rmi.registry +java.rmi.server +java.security +java.security.acl +java.security.cert +java.security.interfaces +java.security.spec +java.sql +java.text +java.text.spi +java.util +java.util.concurrent +java.util.concurrent.atomic +java.util.concurrent.locks +java.util.jar +java.util.logging +java.util.prefs +java.util.regex +java.util.spi +java.util.zip +javax.accessibility +javax.activation +javax.activity +javax.annotation +javax.annotation.processing +javax.crypto +javax.crypto.interfaces +javax.crypto.spec +javax.imageio +javax.imageio.event +javax.imageio.metadata +javax.imageio.plugins.bmp +javax.imageio.plugins.jpeg +javax.imageio.spi +javax.imageio.stream +javax.jws +javax.jws.soap +javax.lang.model +javax.lang.model.element +javax.lang.model.type +javax.lang.model.util +javax.management +javax.management.loading +javax.management.modelmbean +javax.management.monitor +javax.management.openmbean +javax.management.relation +javax.management.remote +javax.management.remote.rmi +javax.management.timer +javax.naming +javax.naming.directory +javax.naming.event +javax.naming.ldap +javax.naming.spi +javax.net +javax.net.ssl +javax.print +javax.print.attribute +javax.print.attribute.standard +javax.print.event +javax.rmi +javax.rmi.CORBA +javax.rmi.ssl +javax.script +javax.security.auth +javax.security.auth.callback +javax.security.auth.kerberos +javax.security.auth.login +javax.security.auth.spi +javax.security.auth.x500 +javax.security.cert +javax.security.sasl +javax.sound.midi +javax.sound.midi.spi +javax.sound.sampled +javax.sound.sampled.spi +javax.sql +javax.sql.rowset +javax.sql.rowset.serial +javax.sql.rowset.spi +javax.swing +javax.swing.border +javax.swing.colorchooser +javax.swing.event +javax.swing.filechooser +javax.swing.plaf +javax.swing.plaf.basic +javax.swing.plaf.metal +javax.swing.plaf.multi +javax.swing.plaf.nimbus +javax.swing.plaf.synth +javax.swing.table +javax.swing.text +javax.swing.text.html +javax.swing.text.html.parser +javax.swing.text.rtf +javax.swing.tree +javax.swing.undo +javax.tools +javax.transaction +javax.transaction.xa +javax.xml +javax.xml.bind +javax.xml.bind.annotation +javax.xml.bind.annotation.adapters +javax.xml.bind.attachment +javax.xml.bind.helpers +javax.xml.bind.util +javax.xml.crypto +javax.xml.crypto.dom +javax.xml.crypto.dsig +javax.xml.crypto.dsig.dom +javax.xml.crypto.dsig.keyinfo +javax.xml.crypto.dsig.spec +javax.xml.datatype +javax.xml.namespace +javax.xml.parsers +javax.xml.soap +javax.xml.stream +javax.xml.stream.events +javax.xml.stream.util +javax.xml.transform +javax.xml.transform.dom +javax.xml.transform.sax +javax.xml.transform.stax +javax.xml.transform.stream +javax.xml.validation +javax.xml.ws +javax.xml.ws.handler +javax.xml.ws.handler.soap +javax.xml.ws.http +javax.xml.ws.soap +javax.xml.ws.spi +javax.xml.ws.spi.http +javax.xml.ws.wsaddressing +javax.xml.xpath +org.ietf.jgss +org.omg.CORBA +org.omg.CORBA.DynAnyPackage +org.omg.CORBA.ORBPackage +org.omg.CORBA.TypeCodePackage +org.omg.CORBA.portable +org.omg.CORBA_2_3 +org.omg.CORBA_2_3.portable +org.omg.CosNaming +org.omg.CosNaming.NamingContextExtPackage +org.omg.CosNaming.NamingContextPackage +org.omg.Dynamic +org.omg.DynamicAny +org.omg.DynamicAny.DynAnyFactoryPackage +org.omg.DynamicAny.DynAnyPackage +org.omg.IOP +org.omg.IOP.CodecFactoryPackage +org.omg.IOP.CodecPackage +org.omg.Messaging +org.omg.PortableInterceptor +org.omg.PortableInterceptor.ORBInitInfoPackage +org.omg.PortableServer +org.omg.PortableServer.CurrentPackage +org.omg.PortableServer.POAManagerPackage +org.omg.PortableServer.POAPackage +org.omg.PortableServer.ServantLocatorPackage +org.omg.PortableServer.portable +org.omg.SendingContext +org.omg.stub.java.rmi +org.w3c.dom +org.w3c.dom.bootstrap +org.w3c.dom.events +org.w3c.dom.ls +org.xml.sax +org.xml.sax.ext +org.xml.sax.helpers diff --git a/spring-cloud-commons/target/maven-archiver/pom.properties b/spring-cloud-commons/target/maven-archiver/pom.properties new file mode 100644 index 00000000..7fda40bb --- /dev/null +++ b/spring-cloud-commons/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Created by Apache Maven 3.3.9 +#Tue Apr 04 02:50:21 UTC 2017 +version=1.2.0.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-commons diff --git a/spring-cloud-commons/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-commons/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..bd347219 --- /dev/null +++ b/spring-cloud-commons/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,100 @@ +org/springframework/cloud/client/hypermedia/TraversalDefinition.class +org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.class +org/springframework/cloud/client/hypermedia/DiscoveredResource.class +org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig$1.class +org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.class +org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.class +org/springframework/cloud/client/actuator/FeaturesEndpoint$Feature.class +org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$RetryAutoConfiguration$1.class +org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$Boot15PortFinderConfiguration$1.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$AsyncRestTemplateCustomizerConfig$1.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory$1.class +org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$PortFinder.class +org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.class +org/springframework/cloud/commons/util/UtilAutoConfiguration.class +org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties$SimpleServiceInstance.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig$1.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.class +org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$RetryAutoConfiguration.class +org/springframework/cloud/commons/util/InetUtils$1.class +org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration$ServiceRegistryEndpointConfiguration.class +org/springframework/cloud/client/CommonsClientAutoConfiguration$ActuatorConfiguration.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.class +org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.class +org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.class +org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$1.class +org/springframework/cloud/client/actuator/HasFeatures.class +org/springframework/cloud/client/DefaultServiceInstance.class +org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.class +org/springframework/cloud/client/actuator/NamedFeature.class +org/springframework/cloud/client/hypermedia/RemoteResourceRefresher$1.class +org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration$CloudHypermediaProperties$Refresh.class +org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.class +org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.class +org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.class +org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.class +org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.class +org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.class +META-INF/spring-configuration-metadata.json +org/springframework/cloud/client/discovery/ManagementServerPortUtils.class +org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory$NeverRetryFactory.class +org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.class +org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.class +org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.class +org/springframework/cloud/commons/util/SpringFactoryImportSelector.class +org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.class +org/springframework/cloud/commons/util/InetUtils$2.class +org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.class +org/springframework/cloud/client/hypermedia/RemoteResource.class +org/springframework/cloud/client/actuator/FeaturesEndpoint.class +org/springframework/cloud/client/serviceregistry/Registration.class +org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration$CloudHypermediaProperties.class +org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.class +org/springframework/cloud/commons/util/InetUtils.class +org/springframework/cloud/client/discovery/event/HeartbeatEvent.class +org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig.class +org/springframework/cloud/client/discovery/ManagementServerPortUtils$ManagementServerPort.class +org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor$1.class +org/springframework/cloud/client/SpringCloudApplication.class +org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.class +org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.class +org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.class +org/springframework/cloud/client/loadbalancer/LoadBalancerClient.class +org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.class +org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.class +org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.class +org/springframework/cloud/client/CommonsClientAutoConfiguration.class +org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.class +org/springframework/cloud/commons/util/IdUtils.class +org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.class +org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.class +org/springframework/cloud/client/CommonsClientAutoConfiguration$DiscoveryLoadBalancerConfiguration.class +org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator$Holder.class +org/springframework/cloud/client/serviceregistry/ServiceRegistry.class +org/springframework/cloud/client/actuator/FeaturesEndpoint$Features.class +org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.class +org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.class +org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.class +org/springframework/cloud/client/loadbalancer/LoadBalanced.class +org/springframework/cloud/client/discovery/DiscoveryLifecycle.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor$1.class +org/springframework/cloud/client/discovery/event/HeartbeatMonitor.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.class +org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.class +org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.class +org/springframework/cloud/client/discovery/EnableDiscoveryClient.class +org/springframework/cloud/client/ServiceInstance.class +org/springframework/cloud/commons/util/InetUtilsProperties.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.class +org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration$Boot15PortFinderConfiguration.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$LoadBalancerInterceptorConfig.class +org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.class +org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.class +org/springframework/cloud/client/discovery/DiscoveryClient.class +org/springframework/cloud/commons/util/InetUtils$HostInfo.class +org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.class +org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration$AsyncRestTemplateCustomizerConfig.class +org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.class diff --git a/spring-cloud-commons/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-commons/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..40b44a00 --- /dev/null +++ b/spring-cloud-commons/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,69 @@ +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/IdUtils.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/NamedFeature.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/DefaultServiceInstance.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/SpringFactoryImportSelector.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/SpringCloudApplication.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/DiscoveryClient.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/ServiceRegistry.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtils.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/ManagementServerPortUtils.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/HasFeatures.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/event/HeartbeatEvent.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/UtilAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/CommonsClientAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/Registration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/RemoteResource.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/commons/util/InetUtilsProperties.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DiscoveredResource.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/EnableDiscoveryClient.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/TraversalDefinition.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/actuator/FeaturesEndpoint.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/ServiceInstance.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalanced.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/DiscoveryLifecycle.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/main/java/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.java diff --git a/spring-cloud-commons/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-commons/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 00000000..c761af25 --- /dev/null +++ b/spring-cloud-commons/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1,84 @@ +org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestConfiguration$1.class +org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests$HasAutoServiceRegistrationConfiguration.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$TwoRestTemplates$Two.class +org/springframework/cloud/FilteredClassPathRunner$FilteredTestClass.class +org/springframework/cloud/client/discovery/event/HeartbeatMonitorTests.class +org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests$Config.class +org/springframework/cloud/ClassPathExclusions.class +org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$1.class +org/springframework/cloud/client/loadbalancer/RetryLoadBalancerAutoConfigurationTests.class +org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$TwoRestTemplates.class +org/springframework/cloud/client/CommonsClientAutoConfigurationTests.class +org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptorTest.class +org/springframework/cloud/AdhocTestSuite.class +org/springframework/cloud/client/actuator/FeaturesEndpointTests$Config.class +org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests.class +org/springframework/cloud/client/HostInfoEnvironmentPostProcessorTests.class +org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests.class +org/springframework/cloud/FilteredClassPathRunner$ClassPathEntryFilter.class +org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestServiceRegistry.class +org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests$App$1.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$TwoRestTemplates.class +org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests$MyAnnotationImportSelector.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryTests.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests.class +org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests$App.class +org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests.class +org/springframework/cloud/FilteredClassPathRunner$FilteredFrameworkMethod.class +org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestServiceRegistry.class +org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$Config.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$OneRestTemplate.class +org/springframework/cloud/client/actuator/FeaturesEndpointTests$Baz.class +org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$OneRestTemplate.class +org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests$Config.class +org/springframework/cloud/client/CommonsClientAutoConfigurationTests$Config.class +org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests.class +org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests$SampleConfig.class +org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests.class +org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestRegistration.class +org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfigurationTests.class +org/springframework/cloud/FilteredClassPathRunner$1.class +org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests$TestConfiguration.class +org/springframework/cloud/client/actuator/FeaturesEndpointTests$Foo.class +org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$ConfigWithRemoteResource$1.class +org/springframework/cloud/client/hypermedia/DiscoveredResourceUnitTests.class +org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests$MyAnnotation.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$1.class +org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests.class +org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests$HasAutoServiceRegistrationConfiguration$1.class +org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$Config.class +org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$Transformer.class +org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestAutoServiceRegistration.class +org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestConfiguration.class +org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$ConfigWithRemoteResource.class +org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContextTest.class +org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests$TestConfig.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$NoopLoadBalancerClient.class +org/springframework/cloud/client/actuator/FeaturesEndpointTests.class +org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$TwoRestTemplates$Two.class +org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProviderUnitTests.class +org/springframework/cloud/FilteredClassPathRunner$FilteredClassLoader.class +org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests$App.class +org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests.class +org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.class +org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelectorTests.class +org/springframework/cloud/client/actuator/FeaturesEndpointTests$Bar.class +org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests.class +org/springframework/cloud/commons/util/IdUtilsTests.class +org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicyTest.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$NoTransformer.class +org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests$TestDiscoveryLifecycle.class +org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests.class +org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests$Config$1.class +org/springframework/cloud/FilteredClassPathRunner.class +org/springframework/cloud/commons/util/InetUtilsTests.class +org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests.class +org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.class +org/springframework/cloud/client/actuator/FeaturesEndpointTests$FeaturesConfig.class +org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests$App.class +org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$NoopLoadBalancerClient.class +org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientTests.class +org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$TransformersAreOrdered.class +org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests.class +org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests.class diff --git a/spring-cloud-commons/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-commons/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 00000000..2cd97799 --- /dev/null +++ b/spring-cloud-commons/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,35 @@ +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptorTest.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/commons/util/IdUtilsTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/FilteredClassPathRunner.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/CommonsClientAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/HostInfoEnvironmentPostProcessorTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContextTest.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/event/HeartbeatMonitorTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProviderUnitTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/ClassPathExclusions.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelectorTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/commons/util/InetUtilsTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/actuator/FeaturesEndpointTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/hypermedia/DiscoveredResourceUnitTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicyTest.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-commons/src/test/java/org/springframework/cloud/AdhocTestSuite.java diff --git a/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-javadoc.jar new file mode 100644 index 00000000..7bc764a9 Binary files /dev/null and b/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-javadoc.jar differ diff --git a/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-sources.jar new file mode 100644 index 00000000..1d9e3eab Binary files /dev/null and b/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-sources.jar differ diff --git a/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-tests.jar b/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-tests.jar new file mode 100644 index 00000000..686309c1 Binary files /dev/null and b/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT-tests.jar differ diff --git a/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT.jar b/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT.jar new file mode 100644 index 00000000..1e0e09a5 Binary files /dev/null and b/spring-cloud-commons/target/spring-cloud-commons-1.2.0.BUILD-SNAPSHOT.jar differ diff --git a/spring-cloud-commons/target/test-classes/application-encrypt.properties b/spring-cloud-commons/target/test-classes/application-encrypt.properties new file mode 100644 index 00000000..b1329f64 --- /dev/null +++ b/spring-cloud-commons/target/test-classes/application-encrypt.properties @@ -0,0 +1 @@ +foo: {cipher}e4e061f9fe39ba5b14d8012d2f17d39775606039409b71ed4be0fdd033d5324a diff --git a/spring-cloud-commons/target/test-classes/application.properties b/spring-cloud-commons/target/test-classes/application.properties new file mode 100644 index 00000000..72f38d17 --- /dev/null +++ b/spring-cloud-commons/target/test-classes/application.properties @@ -0,0 +1,9 @@ +message: Hello scope! +delay: 0 +debug: true +#logging.level.org.springframework.web: DEBUG +#logging.level.org.springframework.context.annotation: DEBUG + +spring.cloud.hypermedia.refresh.initial-delay=50000 +spring.cloud.hypermedia.refresh.fixed-delay=10000 +management.security.enabled=false diff --git a/spring-cloud-commons/target/test-classes/bootstrap-encrypt.properties b/spring-cloud-commons/target/test-classes/bootstrap-encrypt.properties new file mode 100644 index 00000000..3035e009 --- /dev/null +++ b/spring-cloud-commons/target/test-classes/bootstrap-encrypt.properties @@ -0,0 +1 @@ +bar: {cipher}6154ca04d4bb6144d672c4e3d750b5147116dd381946d51fa44f8bc25dc256f4 \ No newline at end of file diff --git a/spring-cloud-commons/target/test-classes/bootstrap-parent.properties b/spring-cloud-commons/target/test-classes/bootstrap-parent.properties new file mode 100644 index 00000000..0c36bbdd --- /dev/null +++ b/spring-cloud-commons/target/test-classes/bootstrap-parent.properties @@ -0,0 +1 @@ +info.name: parent \ No newline at end of file diff --git a/spring-cloud-commons/target/test-classes/bootstrap.properties b/spring-cloud-commons/target/test-classes/bootstrap.properties new file mode 100644 index 00000000..9ec10bf9 --- /dev/null +++ b/spring-cloud-commons/target/test-classes/bootstrap.properties @@ -0,0 +1,2 @@ +spring.main.sources: org.springframework.cloud.bootstrap.config.BootstrapConfigurationTests.PropertySourceConfiguration +info.name: child diff --git a/spring-cloud-commons/target/test-classes/external-properties/bootstrap.properties b/spring-cloud-commons/target/test-classes/external-properties/bootstrap.properties new file mode 100644 index 00000000..925265df --- /dev/null +++ b/spring-cloud-commons/target/test-classes/external-properties/bootstrap.properties @@ -0,0 +1 @@ +info.name: externalPropertiesInfoName \ No newline at end of file diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/AdhocTestSuite.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/AdhocTestSuite.class new file mode 100644 index 00000000..42590693 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/AdhocTestSuite.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/ClassPathExclusions.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/ClassPathExclusions.class new file mode 100644 index 00000000..52e9cf18 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/ClassPathExclusions.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$1.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$1.class new file mode 100644 index 00000000..e06b45b8 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$1.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$ClassPathEntryFilter.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$ClassPathEntryFilter.class new file mode 100644 index 00000000..b2ce2601 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$ClassPathEntryFilter.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredClassLoader.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredClassLoader.class new file mode 100644 index 00000000..3e4789fa Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredClassLoader.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredFrameworkMethod.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredFrameworkMethod.class new file mode 100644 index 00000000..4cc50031 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredFrameworkMethod.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredTestClass.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredTestClass.class new file mode 100644 index 00000000..7bc4b8a1 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner$FilteredTestClass.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner.class new file mode 100644 index 00000000..4758fd1b Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/FilteredClassPathRunner.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/CommonsClientAutoConfigurationTests$Config.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/CommonsClientAutoConfigurationTests$Config.class new file mode 100644 index 00000000..4ed36131 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/CommonsClientAutoConfigurationTests$Config.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/CommonsClientAutoConfigurationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/CommonsClientAutoConfigurationTests.class new file mode 100644 index 00000000..8bce2097 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/CommonsClientAutoConfigurationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/HostInfoEnvironmentPostProcessorTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/HostInfoEnvironmentPostProcessorTests.class new file mode 100644 index 00000000..1ddc22d1 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/HostInfoEnvironmentPostProcessorTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Bar.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Bar.class new file mode 100644 index 00000000..fc9c260f Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Bar.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Baz.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Baz.class new file mode 100644 index 00000000..239f6b65 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Baz.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Config.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Config.class new file mode 100644 index 00000000..8b0b7160 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Config.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$FeaturesConfig.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$FeaturesConfig.class new file mode 100644 index 00000000..17d664cf Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$FeaturesConfig.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Foo.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Foo.class new file mode 100644 index 00000000..da205f22 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests$Foo.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests.class new file mode 100644 index 00000000..0c9266dc Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/actuator/FeaturesEndpointTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests$Config.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests$Config.class new file mode 100644 index 00000000..88b0fb3a Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests$Config.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests$TestDiscoveryLifecycle.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests$TestDiscoveryLifecycle.class new file mode 100644 index 00000000..9b7c6d44 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests$TestDiscoveryLifecycle.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests.class new file mode 100644 index 00000000..77ebed67 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycleTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelectorTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelectorTests.class new file mode 100644 index 00000000..4830bac2 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelectorTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests$App.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests$App.class new file mode 100644 index 00000000..510babe9 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests$App.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests.class new file mode 100644 index 00000000..9e041858 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/EnableDiscoveryClientMissingImplTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/event/HeartbeatMonitorTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/event/HeartbeatMonitorTests.class new file mode 100644 index 00000000..62b5fb5b Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/event/HeartbeatMonitorTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests$Config$1.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests$Config$1.class new file mode 100644 index 00000000..9f62ac72 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests$Config$1.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests$Config.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests$Config.class new file mode 100644 index 00000000..ad0a5560 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests$Config.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests.class new file mode 100644 index 00000000..b68869a1 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicatorTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests$App.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests$App.class new file mode 100644 index 00000000..664b11a9 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests$App.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests.class new file mode 100644 index 00000000..8ad54080 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/DiscoveryClientAutoConfigurationDefaultTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests$SampleConfig.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests$SampleConfig.class new file mode 100644 index 00000000..37615e17 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests$SampleConfig.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests.class new file mode 100644 index 00000000..79a54909 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientPropertiesMappingTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientTests.class new file mode 100644 index 00000000..e63654f1 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests$App$1.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests$App$1.class new file mode 100644 index 00000000..781bbd7c Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests$App$1.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests$App.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests$App.class new file mode 100644 index 00000000..cbc6113a Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests$App.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests.class new file mode 100644 index 00000000..54df6634 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/discovery/simple/UserDefinedDiscoveryClientOverridesDefaultsTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$Config.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$Config.class new file mode 100644 index 00000000..e75a84a2 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$Config.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$ConfigWithRemoteResource$1.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$ConfigWithRemoteResource$1.class new file mode 100644 index 00000000..ef0a20ae Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$ConfigWithRemoteResource$1.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$ConfigWithRemoteResource.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$ConfigWithRemoteResource.class new file mode 100644 index 00000000..c7d9da0f Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests$ConfigWithRemoteResource.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests.class new file mode 100644 index 00000000..a71736b7 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfigurationIntegrationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/DiscoveredResourceUnitTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/DiscoveredResourceUnitTests.class new file mode 100644 index 00000000..8f4ed768 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/DiscoveredResourceUnitTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProviderUnitTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProviderUnitTests.class new file mode 100644 index 00000000..d4f17dd7 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProviderUnitTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$1.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$1.class new file mode 100644 index 00000000..34179332 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$1.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$NoopLoadBalancerClient.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$NoopLoadBalancerClient.class new file mode 100644 index 00000000..20bb8889 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$NoopLoadBalancerClient.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$OneRestTemplate.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$OneRestTemplate.class new file mode 100644 index 00000000..c4fa80d5 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$OneRestTemplate.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$TwoRestTemplates$Two.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$TwoRestTemplates$Two.class new file mode 100644 index 00000000..a29d7d8b Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$TwoRestTemplates$Two.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$TwoRestTemplates.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$TwoRestTemplates.class new file mode 100644 index 00000000..eab5f481 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests$TwoRestTemplates.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.class new file mode 100644 index 00000000..e6f089dd Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AbstractLoadBalancerAutoConfigurationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$1.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$1.class new file mode 100644 index 00000000..26b5e95d Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$1.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$NoopLoadBalancerClient.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$NoopLoadBalancerClient.class new file mode 100644 index 00000000..b45ec7ef Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$NoopLoadBalancerClient.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$OneRestTemplate.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$OneRestTemplate.class new file mode 100644 index 00000000..25436110 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$OneRestTemplate.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$TwoRestTemplates$Two.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$TwoRestTemplates$Two.class new file mode 100644 index 00000000..c602856b Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$TwoRestTemplates$Two.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$TwoRestTemplates.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$TwoRestTemplates.class new file mode 100644 index 00000000..2f45987f Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests$TwoRestTemplates.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.class new file mode 100644 index 00000000..9eb653bb Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfigurationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicyTest.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicyTest.class new file mode 100644 index 00000000..31a3144d Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicyTest.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContextTest.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContextTest.class new file mode 100644 index 00000000..8aac5954 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContextTest.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfigurationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfigurationTests.class new file mode 100644 index 00000000..3ab75589 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfigurationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$NoTransformer.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$NoTransformer.class new file mode 100644 index 00000000..50355835 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$NoTransformer.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$Transformer.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$Transformer.class new file mode 100644 index 00000000..ecb53353 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$Transformer.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$TransformersAreOrdered.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$TransformersAreOrdered.class new file mode 100644 index 00000000..f114fad7 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests$TransformersAreOrdered.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests.class new file mode 100644 index 00000000..218fa122 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryConfigurationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryTests.class new file mode 100644 index 00000000..b7bc5187 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactoryTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerAutoConfigurationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerAutoConfigurationTests.class new file mode 100644 index 00000000..d49d1934 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerAutoConfigurationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptorTest.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptorTest.class new file mode 100644 index 00000000..82997430 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptorTest.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$Config.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$Config.class new file mode 100644 index 00000000..9df4afd5 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$Config.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestAutoServiceRegistration.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestAutoServiceRegistration.class new file mode 100644 index 00000000..b16b6238 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestAutoServiceRegistration.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestRegistration.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestRegistration.class new file mode 100644 index 00000000..40ad2556 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestRegistration.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestServiceRegistry.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestServiceRegistry.class new file mode 100644 index 00000000..20bfb95f Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests$TestServiceRegistry.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests.class new file mode 100644 index 00000000..d5c52489 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistrationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests$HasAutoServiceRegistrationConfiguration$1.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests$HasAutoServiceRegistrationConfiguration$1.class new file mode 100644 index 00000000..a5a8961f Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests$HasAutoServiceRegistrationConfiguration$1.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests$HasAutoServiceRegistrationConfiguration.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests$HasAutoServiceRegistrationConfiguration.class new file mode 100644 index 00000000..cc963688 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests$HasAutoServiceRegistrationConfiguration.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests.class new file mode 100644 index 00000000..b0f222ec Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfigurationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests$TestConfig.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests$TestConfig.class new file mode 100644 index 00000000..3ac590dd Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests$TestConfig.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests.class new file mode 100644 index 00000000..41b26a18 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfigurationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests$TestConfiguration.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests$TestConfiguration.class new file mode 100644 index 00000000..6c93cb1d Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests$TestConfiguration.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests.class new file mode 100644 index 00000000..3681fdaa Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointNoRegistrationTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestConfiguration$1.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestConfiguration$1.class new file mode 100644 index 00000000..b48c9b06 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestConfiguration$1.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestConfiguration.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestConfiguration.class new file mode 100644 index 00000000..7fa854bb Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestConfiguration.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestServiceRegistry.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestServiceRegistry.class new file mode 100644 index 00000000..e5989839 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests$TestServiceRegistry.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests.class new file mode 100644 index 00000000..377bcb78 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpointTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/IdUtilsTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/IdUtilsTests.class new file mode 100644 index 00000000..5c0c0e6f Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/IdUtilsTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/InetUtilsTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/InetUtilsTests.class new file mode 100644 index 00000000..a6922fb7 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/InetUtilsTests.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests$MyAnnotation.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests$MyAnnotation.class new file mode 100644 index 00000000..7b6e893f Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests$MyAnnotation.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests$MyAnnotationImportSelector.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests$MyAnnotationImportSelector.class new file mode 100644 index 00000000..e2f81231 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests$MyAnnotationImportSelector.class differ diff --git a/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests.class b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests.class new file mode 100644 index 00000000..c07b0606 Binary files /dev/null and b/spring-cloud-commons/target/test-classes/org/springframework/cloud/commons/util/SpringFactoryImportSelectorTests.class differ diff --git a/spring-cloud-commons/target/test-classes/other.properties b/spring-cloud-commons/target/test-classes/other.properties new file mode 100644 index 00000000..dc756282 --- /dev/null +++ b/spring-cloud-commons/target/test-classes/other.properties @@ -0,0 +1 @@ +spring.application.name: main \ No newline at end of file diff --git a/spring-cloud-commons/target/test-classes/plain.properties b/spring-cloud-commons/target/test-classes/plain.properties new file mode 100644 index 00000000..aa8f5408 --- /dev/null +++ b/spring-cloud-commons/target/test-classes/plain.properties @@ -0,0 +1 @@ +spring.application.name: app diff --git a/spring-cloud-commons/target/test-classes/server.jks b/spring-cloud-commons/target/test-classes/server.jks new file mode 100644 index 00000000..560be5fe Binary files /dev/null and b/spring-cloud-commons/target/test-classes/server.jks differ diff --git a/spring-cloud-context/target/apidocs/allclasses-frame.html b/spring-cloud-context/target/apidocs/allclasses-frame.html new file mode 100644 index 00000000..ecb153a3 --- /dev/null +++ b/spring-cloud-context/target/apidocs/allclasses-frame.html @@ -0,0 +1,73 @@ + + + + + + +All Classes (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/spring-cloud-context/target/apidocs/allclasses-noframe.html b/spring-cloud-context/target/apidocs/allclasses-noframe.html new file mode 100644 index 00000000..a58ebecb --- /dev/null +++ b/spring-cloud-context/target/apidocs/allclasses-noframe.html @@ -0,0 +1,73 @@ + + + + + + +All Classes (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/spring-cloud-context/target/apidocs/constant-values.html b/spring-cloud-context/target/apidocs/constant-values.html new file mode 100644 index 00000000..10eae0db --- /dev/null +++ b/spring-cloud-context/target/apidocs/constant-values.html @@ -0,0 +1,279 @@ + + + + + + +Constant Field Values (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

org.springframework.*

+ + + + + +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/deprecated-list.html b/spring-cloud-context/target/apidocs/deprecated-list.html new file mode 100644 index 00000000..5ce2f698 --- /dev/null +++ b/spring-cloud-context/target/apidocs/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/help-doc.html b/spring-cloud-context/target/apidocs/help-doc.html new file mode 100644 index 00000000..4eece736 --- /dev/null +++ b/spring-cloud-context/target/apidocs/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Overview

    +

    The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    +
  • +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Use

    +

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/index-all.html b/spring-cloud-context/target/apidocs/index-all.html new file mode 100644 index 00000000..68c016ed --- /dev/null +++ b/spring-cloud-context/target/apidocs/index-all.html @@ -0,0 +1,965 @@ + + + + + + +Index (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
A B C D E F G H I K L N O P R S T V  + + +

A

+
+
afterSingletonsInstantiated() - Method in class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
+ + + +

B

+
+
BeanLifecycleDecorator<T> - Interface in org.springframework.cloud.context.config
+
+
A helper interface providing optional decoration of bean instances and their + destruction callbacks.
+
+
BeanLifecycleDecorator.Context<T> - Class in org.springframework.cloud.context.config
+
 
+
BOOTSTRAP_PROPERTY_SOURCE_NAME - Static variable in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
BOOTSTRAP_PROPERTY_SOURCE_NAME - Static variable in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
BootstrapApplicationListener - Class in org.springframework.cloud.bootstrap
+
+
A listener that prepares a SpringApplication (e.g.
+
+
BootstrapApplicationListener() - Constructor for class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
BootstrapConfiguration - Annotation Type in org.springframework.cloud.bootstrap
+
+
A marker interface used as a key in META-INF/spring.factories.
+
+
+ + + +

C

+
+
clear() - Method in interface org.springframework.cloud.context.scope.ScopeCache
+
+
Clear the cache and return all objects in an unmodifiable collection.
+
+
clear() - Method in class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
clear() - Method in class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
configurationPropertiesBeans() - Method in class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
ConfigurationPropertiesBeans - Class in org.springframework.cloud.context.properties
+
+
Collects references to @ConfigurationProperties beans in the context and + its parent.
+
+
ConfigurationPropertiesBeans() - Constructor for class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
configurationPropertiesRebinder(ConfigurationPropertiesBeans, ConfigurationPropertiesBindingPostProcessor) - Method in class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
ConfigurationPropertiesRebinder - Class in org.springframework.cloud.context.properties
+
+
Listens for EnvironmentChangeEvent and rebinds beans that were bound to the + Environment using @ConfigurationProperties.
+
+
ConfigurationPropertiesRebinder(ConfigurationPropertiesBindingPostProcessor, ConfigurationPropertiesBeans) - Constructor for class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
ConfigurationPropertiesRebinderAutoConfiguration - Class in org.springframework.cloud.autoconfigure
+
 
+
ConfigurationPropertiesRebinderAutoConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
Context(Runnable, T) - Constructor for class org.springframework.cloud.context.config.BeanLifecycleDecorator.Context
+
 
+
contextRefresher(ConfigurableApplicationContext, RefreshScope) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
ContextRefresher - Class in org.springframework.cloud.context.refresh
+
 
+
ContextRefresher(ConfigurableApplicationContext, RefreshScope) - Constructor for class org.springframework.cloud.context.refresh.ContextRefresher
+
 
+
ContextRefresher.Empty - Class in org.springframework.cloud.context.refresh
+
 
+
create(String) - Method in class org.springframework.cloud.context.encrypt.EncryptorFactory
+
 
+
createContext(String) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
+ + + +

D

+
+
decorateBean(Object, BeanLifecycleDecorator.Context<T>) - Method in interface org.springframework.cloud.context.config.BeanLifecycleDecorator
+
+
Optionally decorate and provide a new instance of a compatible bean for + the caller to use instead of the input.
+
+
decorateBean(Object, BeanLifecycleDecorator.Context<ReadWriteLock>) - Method in class org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
+
 
+
decorateDestructionCallback(Runnable) - Method in interface org.springframework.cloud.context.config.BeanLifecycleDecorator
+
+
Optionally decorate the destruction callback provided, and also return + some context that can be used later by the + BeanLifecycleDecorator.decorateBean(Object, Context) method.
+
+
decorateDestructionCallback(Runnable) - Method in class org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
+
 
+
decrypt(String) - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
+
 
+
decrypt(PropertySources) - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
DECRYPTED_BOOTSTRAP_PROPERTY_SOURCE_NAME - Static variable in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
DECRYPTED_PROPERTY_SOURCE_NAME - Static variable in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
DEFAULT_NAME - Static variable in class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+
 
+
DEFAULT_ORDER - Static variable in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
DEFAULT_ORDER - Static variable in class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
DEFAULT_PROPERTIES - Static variable in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
destroy() - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
destroy() - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
destroy(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
Destroy the named bean (i.e.
+
+
doHealthCheck(Health.Builder) - Method in class org.springframework.cloud.health.RefreshScopeHealthIndicator
+
 
+
+ + + +

E

+
+
Empty() - Constructor for class org.springframework.cloud.context.refresh.ContextRefresher.Empty
+
 
+
encrypt(String) - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
+
 
+
EncryptionBootstrapConfiguration - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
EncryptionBootstrapConfiguration() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration
+
 
+
EncryptionBootstrapConfiguration.FailsafeTextEncryptor - Class in org.springframework.cloud.bootstrap.encrypt
+
+
TextEncryptor that just fails, so that users don't get a false sense of security + adding ciphers to config files and not getting them decrypted.
+
+
EncryptionBootstrapConfiguration.KeyCondition - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
EncryptionBootstrapConfiguration.RsaEncryptionConfiguration - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
EncryptorFactory - Class in org.springframework.cloud.context.encrypt
+
 
+
EncryptorFactory() - Constructor for class org.springframework.cloud.context.encrypt.EncryptorFactory
+
 
+
EnvironmentChangeEvent - Class in org.springframework.cloud.context.environment
+
+
Event published to signal a change in the Environment.
+
+
EnvironmentChangeEvent(Set<String>) - Constructor for class org.springframework.cloud.context.environment.EnvironmentChangeEvent
+
 
+
EnvironmentDecryptApplicationInitializer - Class in org.springframework.cloud.bootstrap.encrypt
+
+
Decrypt properties from the environment and insert them with high priority so they + override the encrypted values.
+
+
EnvironmentDecryptApplicationInitializer(TextEncryptor) - Constructor for class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
environmentDecryptApplicationListener() - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration
+
 
+
environmentManager(ConfigurableEnvironment) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
EnvironmentManager - Class in org.springframework.cloud.context.environment
+
+
Entry point for making local (but volatile) changes to the Environment of a + running application.
+
+
EnvironmentManager(ConfigurableEnvironment) - Constructor for class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
environmentManagerEndpoint(EnvironmentEndpoint, EnvironmentManager) - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
EnvironmentManagerMvcEndpoint - Class in org.springframework.cloud.context.environment
+
+
MVC endpoint for the EnvironmentManager providing a POST to /env as a simple + way to change the Environment.
+
+
EnvironmentManagerMvcEndpoint(EnvironmentEndpoint, EnvironmentManager) - Constructor for class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
+ + + +

F

+
+
FailsafeTextEncryptor() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
+
 
+
+ + + +

G

+
+
GenericPostableMvcEndpoint - Class in org.springframework.cloud.endpoint
+
+
A convenient base class for MVC endpoints that accept a POST (instead of the default + GET).
+
+
GenericPostableMvcEndpoint(Endpoint<?>) - Constructor for class org.springframework.cloud.endpoint.GenericPostableMvcEndpoint
+
 
+
GenericScope - Class in org.springframework.cloud.context.scope
+
+
+ A generic Scope implementation.
+
+
GenericScope() - Constructor for class org.springframework.cloud.context.scope.GenericScope
+
 
+
get(String, ObjectFactory<?>) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
get(String) - Method in interface org.springframework.cloud.context.scope.ScopeCache
+
+
Get the named object from the cache.
+
+
get(String) - Method in class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
get(String) - Method in class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
getAlgorithm() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
getAlias() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
getAuxiliary() - Method in class org.springframework.cloud.context.config.BeanLifecycleDecorator.Context
+
 
+
getBeanNames() - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
getBeanNames() - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
getCallback() - Method in class org.springframework.cloud.context.config.BeanLifecycleDecorator.Context
+
 
+
getConfiguration() - Method in interface org.springframework.cloud.context.named.NamedContextFactory.Specification
+
 
+
getContext(String) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
getContextNames() - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
getConversationId() - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
getEndpointType() - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
getErrors() - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
+
A map of bean name to errors when instantiating the bean.
+
+
getErrors() - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
A map of bean name to errors when instantiating the bean.
+
+
getEvent() - Method in class org.springframework.cloud.endpoint.event.RefreshEvent
+
 
+
getEventDesc() - Method in class org.springframework.cloud.endpoint.event.RefreshEvent
+
 
+
getInstance(String, Class<T>) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
getInstances(String, Class<T>) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
getKey() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
getKeys() - Method in class org.springframework.cloud.context.environment.EnvironmentChangeEvent
+
 
+
getKeyStore() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
getLocation() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
getMatchOutcome(ConditionContext, AnnotatedTypeMetadata) - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition
+
 
+
getName() - Method in interface org.springframework.cloud.context.named.NamedContextFactory.Specification
+
 
+
getName() - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
getName() - Method in class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+
 
+
getOrder() - Method in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
getOrder() - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
getOrder() - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
getOrder() - Method in class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
getOrder() - Method in class org.springframework.cloud.context.restart.RestartListener
+
 
+
getOrder() - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
getPassword() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
getPath() - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
getPauseEndpoint() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
getProperty(String) - Method in class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
getResumeEndpoint() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
getRsa() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
getSalt() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
getSecret() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
getTimeout() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
+ + + +

H

+
+
handle(ApplicationReadyEvent) - Method in class org.springframework.cloud.endpoint.event.RefreshEventListener
+
 
+
handle(RefreshEvent) - Method in class org.springframework.cloud.endpoint.event.RefreshEventListener
+
 
+
+ + + +

I

+
+
initialize(ConfigurableApplicationContext) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
initialize(ConfigurableApplicationContext) - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
invoke() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.context.restart.RestartMvcEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.endpoint.GenericPostableMvcEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.endpoint.RefreshEndpoint
+
 
+
isAllowOverride() - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
isFailOnError() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
isOverrideNone() - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
isOverrideSystemProperties() - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
isRunning() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
isSensitive() - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
isStrong() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
+ + + +

K

+
+
KeyCondition() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition
+
 
+
KeyFormatException - Exception in org.springframework.cloud.context.encrypt
+
 
+
KeyFormatException() - Constructor for exception org.springframework.cloud.context.encrypt.KeyFormatException
+
 
+
KeyProperties - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
KeyProperties() - Constructor for class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
KeyProperties.KeyStore - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
KeyProperties.Rsa - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
KeyStore() - Constructor for class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
+ + + +

L

+
+
LifecycleMvcEndpointAutoConfiguration - Class in org.springframework.cloud.autoconfigure
+
+
Autoconfiguration for some MVC endpoints governing the application context lifecycle.
+
+
LifecycleMvcEndpointAutoConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
locate(Environment) - Method in interface org.springframework.cloud.bootstrap.config.PropertySourceLocator
+
 
+
loggingRebinder() - Static method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
LoggingRebinder - Class in org.springframework.cloud.logging
+
+
Listener that looks for EnvironmentChangeEvent and rebinds logger levels if any + changed.
+
+
LoggingRebinder() - Constructor for class org.springframework.cloud.logging.LoggingRebinder
+
 
+
LoggingSystemShutdownListener - Class in org.springframework.cloud.bootstrap
+
+
Cleans up the logging system immediately after the bootstrap context is created on + startup.
+
+
LoggingSystemShutdownListener() - Constructor for class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
+ + + +

N

+
+
NamedContextFactory<C extends NamedContextFactory.Specification> - Class in org.springframework.cloud.context.named
+
+
Creates a set of child contexts that allows a set of Specifications to define the beans + in each child context.
+
+
NamedContextFactory(Class<?>, String, String) - Constructor for class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
NamedContextFactory.Specification - Interface in org.springframework.cloud.context.named
+
 
+
+ + + +

O

+
+
onApplicationEvent(ApplicationEnvironmentPreparedEvent) - Method in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
onApplicationEvent(ApplicationEnvironmentPreparedEvent) - Method in class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
onApplicationEvent(EnvironmentChangeEvent) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
onApplicationEvent(ApplicationPreparedEvent) - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
onApplicationEvent(ApplicationEvent) - Method in class org.springframework.cloud.context.restart.RestartListener
+
 
+
onApplicationEvent(EnvironmentChangeEvent) - Method in class org.springframework.cloud.logging.LoggingRebinder
+
 
+
org.springframework.cloud.autoconfigure - package org.springframework.cloud.autoconfigure
+
 
+
org.springframework.cloud.bootstrap - package org.springframework.cloud.bootstrap
+
 
+
org.springframework.cloud.bootstrap.config - package org.springframework.cloud.bootstrap.config
+
 
+
org.springframework.cloud.bootstrap.encrypt - package org.springframework.cloud.bootstrap.encrypt
+
 
+
org.springframework.cloud.context.config - package org.springframework.cloud.context.config
+
 
+
org.springframework.cloud.context.config.annotation - package org.springframework.cloud.context.config.annotation
+
 
+
org.springframework.cloud.context.encrypt - package org.springframework.cloud.context.encrypt
+
 
+
org.springframework.cloud.context.environment - package org.springframework.cloud.context.environment
+
 
+
org.springframework.cloud.context.named - package org.springframework.cloud.context.named
+
 
+
org.springframework.cloud.context.properties - package org.springframework.cloud.context.properties
+
 
+
org.springframework.cloud.context.refresh - package org.springframework.cloud.context.refresh
+
 
+
org.springframework.cloud.context.restart - package org.springframework.cloud.context.restart
+
 
+
org.springframework.cloud.context.scope - package org.springframework.cloud.context.scope
+
 
+
org.springframework.cloud.context.scope.refresh - package org.springframework.cloud.context.scope.refresh
+
 
+
org.springframework.cloud.context.scope.thread - package org.springframework.cloud.context.scope.thread
+
 
+
org.springframework.cloud.endpoint - package org.springframework.cloud.endpoint
+
 
+
org.springframework.cloud.endpoint.event - package org.springframework.cloud.endpoint.event
+
 
+
org.springframework.cloud.health - package org.springframework.cloud.health
+
 
+
org.springframework.cloud.logging - package org.springframework.cloud.logging
+
 
+
+ + + +

P

+
+
pause() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
pauseEndpoint(RestartEndpoint) - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
+
 
+
PauseEndpoint() - Constructor for class org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint
+
 
+
pauseMvcEndpoint(RestartEndpoint.PauseEndpoint) - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
postProcessAfterInitialization(Object, String) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
postProcessBeanDefinitionRegistry(BeanDefinitionRegistry) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
+
 
+
postProcessBeanDefinitionRegistry(BeanDefinitionRegistry) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
postProcessBeanFactory(ConfigurableListableBeanFactory) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
+
 
+
postProcessBeanFactory(ConfigurableListableBeanFactory) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
postProcessBeforeInitialization(Object, String) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
PropertySourceBootstrapConfiguration - Class in org.springframework.cloud.bootstrap.config
+
 
+
PropertySourceBootstrapConfiguration() - Constructor for class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
PropertySourceBootstrapProperties - Class in org.springframework.cloud.bootstrap.config
+
 
+
PropertySourceBootstrapProperties() - Constructor for class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
PropertySourceLocator - Interface in org.springframework.cloud.bootstrap.config
+
+
Strategy for locating (possibly remote) property sources for the Environment.
+
+
put(String, Object) - Method in interface org.springframework.cloud.context.scope.ScopeCache
+
+
Put a value in the cache if the key is not already used.
+
+
put(String, Object) - Method in class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
put(String, Object) - Method in class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
+ + + +

R

+
+
rebind() - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
rebind(String) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
refresh() - Method in class org.springframework.cloud.context.refresh.ContextRefresher
+
 
+
refresh(String) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
refresh() - Method in class org.springframework.cloud.endpoint.RefreshEndpoint
+
 
+
refreshAll() - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
RefreshAutoConfiguration - Class in org.springframework.cloud.autoconfigure
+
+
Autoconfiguration for the refresh scope and associated features to do with changes in + the Environment (e.g.
+
+
RefreshAutoConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
RefreshAutoConfiguration.RefreshScopeConfiguration - Class in org.springframework.cloud.autoconfigure
+
 
+
refreshEndpoint(ContextRefresher) - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration
+
 
+
RefreshEndpoint - Class in org.springframework.cloud.endpoint
+
 
+
RefreshEndpoint(ContextRefresher) - Constructor for class org.springframework.cloud.endpoint.RefreshEndpoint
+
 
+
RefreshEndpointAutoConfiguration - Class in org.springframework.cloud.autoconfigure
+
 
+
RefreshEndpointAutoConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
+
 
+
RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration - Class in org.springframework.cloud.autoconfigure
+
 
+
RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration - Class in org.springframework.cloud.autoconfigure
+
 
+
RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration - Class in org.springframework.cloud.autoconfigure
+
 
+
RefreshEndpointConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration
+
 
+
RefreshEvent - Class in org.springframework.cloud.endpoint.event
+
+
Event that triggers a call to RefreshEndpoint.refresh()
+
+
RefreshEvent(Object, Object, String) - Constructor for class org.springframework.cloud.endpoint.event.RefreshEvent
+
 
+
refreshEventListener(ContextRefresher) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
RefreshEventListener - Class in org.springframework.cloud.endpoint.event
+
+
Calls RefreshEventListener.refresh when a RefreshEvent is received.
+
+
RefreshEventListener(ContextRefresher) - Constructor for class org.springframework.cloud.endpoint.event.RefreshEventListener
+
 
+
refreshMvcEndpoint(RefreshEndpoint) - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
RefreshScope - Annotation Type in org.springframework.cloud.context.config.annotation
+
+
Convenience annotation to put a @Bean definition in + refresh scope.
+
+
RefreshScope - Class in org.springframework.cloud.context.scope.refresh
+
+
+ A Scope implementation that allows for beans to be refreshed dynamically at runtime + (see RefreshScope.refresh(String) and RefreshScope.refreshAll()).
+
+
RefreshScope() - Constructor for class org.springframework.cloud.context.scope.refresh.RefreshScope
+
+
Create a scope instance and give it the default name: "refresh".
+
+
RefreshScopeConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
+
 
+
RefreshScopeHealthIndicator - Class in org.springframework.cloud.health
+
+
Health indicator for the refresh scope and configuration properties rebinding.
+
+
RefreshScopeHealthIndicator(RefreshScope, ConfigurationPropertiesRebinder) - Constructor for class org.springframework.cloud.health.RefreshScopeHealthIndicator
+
 
+
RefreshScopeRefreshedEvent - Class in org.springframework.cloud.context.scope.refresh
+
 
+
RefreshScopeRefreshedEvent() - Constructor for class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+
 
+
RefreshScopeRefreshedEvent(String) - Constructor for class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+
 
+
registerDestructionCallback(String, Runnable) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
remove(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
remove(String) - Method in interface org.springframework.cloud.context.scope.ScopeCache
+
+
Remove the object with this name from the cache.
+
+
remove(String) - Method in class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
remove(String) - Method in class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
reset() - Method in class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
reset() - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
resolveContextualObject(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
restart() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
restartEndpoint() - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
+
 
+
restartEndpoint() - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
+
 
+
RestartEndpoint - Class in org.springframework.cloud.context.restart
+
+
An endpoint that restarts the application context.
+
+
RestartEndpoint() - Constructor for class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
RestartEndpoint.PauseEndpoint - Class in org.springframework.cloud.context.restart
+
 
+
RestartEndpoint.ResumeEndpoint - Class in org.springframework.cloud.context.restart
+
 
+
RestartEndpointWithIntegration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
+
 
+
RestartEndpointWithoutIntegration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
+
 
+
RestartListener - Class in org.springframework.cloud.context.restart
+
+
A listener that stores enough information about an application as it starts, to be able + to restart it later if needed.
+
+
RestartListener() - Constructor for class org.springframework.cloud.context.restart.RestartListener
+
 
+
restartMvcEndpoint() - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
RestartMvcEndpoint - Class in org.springframework.cloud.context.restart
+
+
MVC endpoint to allow an application to be restarted on a POST (to /restart by + default).
+
+
RestartMvcEndpoint(RestartEndpoint) - Constructor for class org.springframework.cloud.context.restart.RestartMvcEndpoint
+
 
+
resume() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
resumeEndpoint(RestartEndpoint) - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
+
 
+
ResumeEndpoint() - Constructor for class org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint
+
 
+
resumeMvcEndpoint(RestartEndpoint.ResumeEndpoint) - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
Rsa() - Constructor for class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
RsaEncryptionConfiguration() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
+
 
+
+ + + +

S

+
+
ScopeCache - Interface in org.springframework.cloud.context.scope
+
+
A special purpose cache interface specifically for the GenericScope to use to manage cached bean instances.
+
+
SCOPED_TARGET_PREFIX - Static variable in class org.springframework.cloud.context.scope.GenericScope
+
 
+
setAlgorithm(RsaAlgorithm) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
setAlias(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
setAllowOverride(boolean) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
setBeanLifecycleManager(BeanLifecycleDecorator<?>) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
Helper to manage the creation and destruction of beans.
+
+
setBeanMetaDataStore(ConfigurationBeanFactoryMetaData) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
setConfigurations(List<C>) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
setEager(boolean) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
+
Flag to determine whether all beans in refresh scope should be instantiated eagerly + on startup.
+
+
setEnvironment(Environment) - Method in class org.springframework.cloud.logging.LoggingRebinder
+
 
+
setEnvironmentManager(EnvironmentManager) - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
setFailOnError(boolean) - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
+
Strategy to determine how to handle exceptions during decryption.
+
+
setFailOnError(boolean) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
setId(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
Manual override for the serialization id that will be used to identify the bean + factory.
+
+
setIntegrationMBeanExporter(Object) - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
setKey(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
setKeyStore(KeyProperties.KeyStore) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
setLocation(Resource) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
setLogLevels(LoggingSystem, Environment) - Method in class org.springframework.cloud.logging.LoggingRebinder
+
 
+
setName(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
The name of this scope.
+
+
setOrder(int) - Method in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
setOrder(int) - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
setOrder(int) - Method in class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
setOrder(int) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
setOverrideNone(boolean) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
setOverrideSystemProperties(boolean) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
setPassword(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
setProperty(String, String) - Method in class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
setPropertySourceLocators(Collection<PropertySourceLocator>) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
setProxyTargetClass(boolean) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
Flag to indicate that proxies should be created for the concrete type, not just the + interfaces, of the scoped beans.
+
+
setSalt(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
setScopeCache(ScopeCache) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
The cache implementation to use for bean instances in this scope.
+
+
setSecret(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
setStrong(boolean) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
setTimeout(long) - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
StandardBeanLifecycleDecorator - Class in org.springframework.cloud.context.config
+
+
A BeanLifecycleDecorator that tries to protect against concurrent access to a bean during its own destruction.
+
+
StandardBeanLifecycleDecorator(boolean) - Constructor for class org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
+
 
+
StandardScopeCache - Class in org.springframework.cloud.context.scope
+
+
A simple cache implementation backed by a concurrent map.
+
+
StandardScopeCache() - Constructor for class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
start(ContextRefreshedEvent) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
supportsEventType(Class<? extends ApplicationEvent>) - Method in class org.springframework.cloud.context.restart.RestartListener
+
 
+
supportsSourceType(Class<?>) - Method in class org.springframework.cloud.context.restart.RestartListener
+
 
+
+ + + +

T

+
+
textEncryptor() - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
+
 
+
textEncryptor() - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
+
 
+
ThreadLocalScopeCache - Class in org.springframework.cloud.context.scope.thread
+
 
+
ThreadLocalScopeCache() - Constructor for class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
ThreadScope - Class in org.springframework.cloud.context.scope.thread
+
 
+
ThreadScope() - Constructor for class org.springframework.cloud.context.scope.thread.ThreadScope
+
+
Create a scope instance and give it the default name: "thread".
+
+
+ + + +

V

+
+
value(Map<String, String>) - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
VanillaEncryptionConfiguration() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
+
 
+
+A B C D E F G H I K L N O P R S T V 
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/index.html b/spring-cloud-context/target/apidocs/index.html new file mode 100644 index 00000000..4652c75f --- /dev/null +++ b/spring-cloud-context/target/apidocs/index.html @@ -0,0 +1,76 @@ + + + + + + +Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.html new file mode 100644 index 00000000..2d871a71 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.html @@ -0,0 +1,333 @@ + + + + + + +ConfigurationPropertiesRebinderAutoConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class ConfigurationPropertiesRebinderAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.SmartInitializingSingleton, org.springframework.context.ApplicationContextAware
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnBean(value=org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor.class)
    +public class ConfigurationPropertiesRebinderAutoConfiguration
    +extends Object
    +implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.SmartInitializingSingleton
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ConfigurationPropertiesRebinderAutoConfiguration

        +
        public ConfigurationPropertiesRebinderAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        +
      • +
      + + + +
        +
      • +

        configurationPropertiesBeans

        +
        @Bean
        + @ConditionalOnMissingBean(search=CURRENT)
        +public ConfigurationPropertiesBeans configurationPropertiesBeans()
        +
      • +
      + + + +
        +
      • +

        configurationPropertiesRebinder

        +
        @Bean
        + @ConditionalOnMissingBean(search=CURRENT)
        +public ConfigurationPropertiesRebinder configurationPropertiesRebinder(ConfigurationPropertiesBeans beans,
        +                                                                                                                        org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor binder)
        +
      • +
      + + + +
        +
      • +

        afterSingletonsInstantiated

        +
        public void afterSingletonsInstantiated()
        +
        +
        Specified by:
        +
        afterSingletonsInstantiated in interface org.springframework.beans.factory.SmartInitializingSingleton
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.html new file mode 100644 index 00000000..d76a5bfd --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.html @@ -0,0 +1,349 @@ + + + + + + +LifecycleMvcEndpointAutoConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class LifecycleMvcEndpointAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.boot.actuate.endpoint.EnvironmentEndpoint.class)
    + @ConditionalOnWebApplication
    + @ConditionalOnBean(value=RestartEndpoint.class)
    +public class LifecycleMvcEndpointAutoConfiguration
    +extends Object
    +
    Autoconfiguration for some MVC endpoints governing the application context lifecycle. + Provides restart, pause, resume, refresh (environment) and environment update + endpoints.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LifecycleMvcEndpointAutoConfiguration

        +
        public LifecycleMvcEndpointAutoConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.RefreshScopeConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.RefreshScopeConfiguration.html new file mode 100644 index 00000000..e8e2f721 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.RefreshScopeConfiguration.html @@ -0,0 +1,313 @@ + + + + + + +RefreshAutoConfiguration.RefreshScopeConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshAutoConfiguration.RefreshScopeConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
    +
    +
    +
    Enclosing class:
    +
    RefreshAutoConfiguration
    +
    +
    +
    +
    @Component
    + @ConditionalOnMissingBean(value=RefreshScope.class)
    +protected static class RefreshAutoConfiguration.RefreshScopeConfiguration
    +extends Object
    +implements org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshScopeConfiguration

        +
        protected RefreshScopeConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        postProcessBeanFactory

        +
        public void postProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory)
        +                            throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeanFactory in interface org.springframework.beans.factory.config.BeanFactoryPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        postProcessBeanDefinitionRegistry

        +
        public void postProcessBeanDefinitionRegistry(org.springframework.beans.factory.support.BeanDefinitionRegistry registry)
        +                                       throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeanDefinitionRegistry in interface org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.html new file mode 100644 index 00000000..de24cc58 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.html @@ -0,0 +1,348 @@ + + + + + + +RefreshAutoConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=RefreshScope.class)
    +public class RefreshAutoConfiguration
    +extends Object
    +
    Autoconfiguration for the refresh scope and associated features to do with changes in + the Environment (e.g. rebinding logger levels).
    +
    +
    Author:
    +
    Dave Syer, Venil Noronha
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshAutoConfiguration

        +
        public RefreshAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        loggingRebinder

        +
        @Bean
        + @ConditionalOnMissingBean
        +public static LoggingRebinder loggingRebinder()
        +
      • +
      + + + +
        +
      • +

        environmentManager

        +
        @Bean
        + @ConditionalOnMissingBean
        +public EnvironmentManager environmentManager(org.springframework.core.env.ConfigurableEnvironment environment)
        +
      • +
      + + + +
        +
      • +

        contextRefresher

        +
        @Bean
        + @ConditionalOnMissingBean
        +public ContextRefresher contextRefresher(org.springframework.context.ConfigurableApplicationContext context,
        +                                                                          RefreshScope scope)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html new file mode 100644 index 00000000..f5718126 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html @@ -0,0 +1,285 @@ + + + + + + +RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshEndpointConfiguration

        +
        protected RefreshEndpointConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html new file mode 100644 index 00000000..4c663f3b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html @@ -0,0 +1,282 @@ + + + + + + +RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    RefreshEndpointAutoConfiguration
    +
    +
    +
    +
    @ConditionalOnClass(value=org.springframework.integration.monitor.IntegrationMBeanExporter.class)
    +protected static class RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartEndpointWithIntegration

        +
        protected RestartEndpointWithIntegration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        restartEndpoint

        +
        @Bean
        + @ConditionalOnMissingBean
        +public RestartEndpoint restartEndpoint()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html new file mode 100644 index 00000000..3fc2dbd9 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html @@ -0,0 +1,282 @@ + + + + + + +RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    RefreshEndpointAutoConfiguration
    +
    +
    +
    +
    @ConditionalOnMissingClass(value="org.springframework.integration.monitor.IntegrationMBeanExporter")
    +protected static class RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartEndpointWithoutIntegration

        +
        protected RestartEndpointWithoutIntegration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        restartEndpoint

        +
        @Bean
        + @ConditionalOnMissingBean
        +public RestartEndpoint restartEndpoint()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.html new file mode 100644 index 00000000..6c5eda26 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.html @@ -0,0 +1,323 @@ + + + + + + +RefreshEndpointAutoConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshEndpointAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.boot.actuate.endpoint.Endpoint.class)
    +public class RefreshEndpointAutoConfiguration
    +extends Object
    +
    +
    Author:
    +
    Dave Syer, Spencer Gibb, Venil Noronha
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/ConfigurationPropertiesRebinderAutoConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/ConfigurationPropertiesRebinderAutoConfiguration.html new file mode 100644 index 00000000..6d795928 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/ConfigurationPropertiesRebinderAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/LifecycleMvcEndpointAutoConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/LifecycleMvcEndpointAutoConfiguration.html new file mode 100644 index 00000000..e88f77df --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/LifecycleMvcEndpointAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.RefreshScopeConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.RefreshScopeConfiguration.html new file mode 100644 index 00000000..ee0de1af --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.RefreshScopeConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.html new file mode 100644 index 00000000..47932ec8 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshAutoConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html new file mode 100644 index 00000000..86c32523 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html new file mode 100644 index 00000000..3eff497f --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html new file mode 100644 index 00000000..a67f524c --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.html new file mode 100644 index 00000000..8922afec --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-frame.html new file mode 100644 index 00000000..ad0ea2b7 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-frame.html @@ -0,0 +1,28 @@ + + + + + + +org.springframework.cloud.autoconfigure (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.autoconfigure

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-summary.html new file mode 100644 index 00000000..896c993b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-summary.html @@ -0,0 +1,177 @@ + + + + + + +org.springframework.cloud.autoconfigure (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.autoconfigure

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-tree.html new file mode 100644 index 00000000..11a60070 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-tree.html @@ -0,0 +1,146 @@ + + + + + + +org.springframework.cloud.autoconfigure Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.autoconfigure

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-use.html new file mode 100644 index 00000000..4c1a1158 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/autoconfigure/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.autoconfigure (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.autoconfigure

+
+
No usage of org.springframework.cloud.autoconfigure
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/BootstrapApplicationListener.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/BootstrapApplicationListener.html new file mode 100644 index 00000000..ddb6d8bd --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/BootstrapApplicationListener.html @@ -0,0 +1,403 @@ + + + + + + +BootstrapApplicationListener (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap
+

Class BootstrapApplicationListener

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.BootstrapApplicationListener
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>, org.springframework.core.Ordered
    +
    +
    +
    +
    public class BootstrapApplicationListener
    +extends Object
    +implements org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>, org.springframework.core.Ordered
    +
    A listener that prepares a SpringApplication (e.g. populating its Environment) by + delegating to ApplicationContextInitializer beans in a separate bootstrap + context. The bootstrap context is a SpringApplication created from sources defined in + spring.factories as BootstrapConfiguration, and initialized with external + config taken from "bootstrap.properties" (or yml), instead of the normal + "application.properties".
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BootstrapApplicationListener

        +
        public BootstrapApplicationListener()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent event)
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/BootstrapConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/BootstrapConfiguration.html new file mode 100644 index 00000000..2e097534 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/BootstrapConfiguration.html @@ -0,0 +1,229 @@ + + + + + + +BootstrapConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap
+

Annotation Type BootstrapConfiguration

+
+
+
+
    +
  • +
    +
    +
    @Target(value=TYPE)
    + @Retention(value=RUNTIME)
    + @Documented
    +public @interface BootstrapConfiguration
    +
    A marker interface used as a key in META-INF/spring.factories. Entries in + the factories file are used to create the bootstrap application context.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Optional Element Summary

      + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional Element and Description
      Class<?>[]exclude +
      Exclude specific auto-configuration classes such that they will never be applied.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        exclude

        +
        public abstract Class<?>[] exclude
        +
        Exclude specific auto-configuration classes such that they will never be applied.
        +
        +
        Default:
        +
        {}
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.html new file mode 100644 index 00000000..35d25843 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.html @@ -0,0 +1,367 @@ + + + + + + +LoggingSystemShutdownListener (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap
+

Class LoggingSystemShutdownListener

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>, org.springframework.core.Ordered
    +
    +
    +
    +
    public class LoggingSystemShutdownListener
    +extends Object
    +implements org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>, org.springframework.core.Ordered
    +
    Cleans up the logging system immediately after the bootstrap context is created on + startup. Logging will go dark until the ConfigFileApplicationListener fires, but this + is the price we pay for that listener being able to adjust the log levels according to + what it finds in its own configuration.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoggingSystemShutdownListener

        +
        public LoggingSystemShutdownListener()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent event)
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapApplicationListener.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapApplicationListener.html new file mode 100644 index 00000000..545761fc --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapApplicationListener.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.BootstrapApplicationListener (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.BootstrapApplicationListener

+
+
No usage of org.springframework.cloud.bootstrap.BootstrapApplicationListener
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapConfiguration.html new file mode 100644 index 00000000..d9d016eb --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.BootstrapConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.BootstrapConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.BootstrapConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/LoggingSystemShutdownListener.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/LoggingSystemShutdownListener.html new file mode 100644 index 00000000..0bf7c375 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/class-use/LoggingSystemShutdownListener.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.LoggingSystemShutdownListener

+
+
No usage of org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.html new file mode 100644 index 00000000..2942efe2 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.html @@ -0,0 +1,365 @@ + + + + + + +PropertySourceBootstrapConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.config
+

Class PropertySourceBootstrapConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>, org.springframework.core.Ordered
    +
    +
    +
    +
    @Configuration
    + @EnableConfigurationProperties(value=PropertySourceBootstrapProperties.class)
    +public class PropertySourceBootstrapConfiguration
    +extends Object
    +implements org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>, org.springframework.core.Ordered
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PropertySourceBootstrapConfiguration

        +
        public PropertySourceBootstrapConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + + + + + +
        +
      • +

        initialize

        +
        public void initialize(org.springframework.context.ConfigurableApplicationContext applicationContext)
        +
        +
        Specified by:
        +
        initialize in interface org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.html new file mode 100644 index 00000000..3389d461 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.html @@ -0,0 +1,339 @@ + + + + + + +PropertySourceBootstrapProperties (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.config
+

Class PropertySourceBootstrapProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="spring.cloud.config")
    +public class PropertySourceBootstrapProperties
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PropertySourceBootstrapProperties

        +
        public PropertySourceBootstrapProperties()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isOverrideNone

        +
        public boolean isOverrideNone()
        +
      • +
      + + + +
        +
      • +

        setOverrideNone

        +
        public void setOverrideNone(boolean overrideNone)
        +
      • +
      + + + +
        +
      • +

        isOverrideSystemProperties

        +
        public boolean isOverrideSystemProperties()
        +
      • +
      + + + +
        +
      • +

        setOverrideSystemProperties

        +
        public void setOverrideSystemProperties(boolean overrideSystemProperties)
        +
      • +
      + + + +
        +
      • +

        isAllowOverride

        +
        public boolean isAllowOverride()
        +
      • +
      + + + +
        +
      • +

        setAllowOverride

        +
        public void setAllowOverride(boolean allowOverride)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceLocator.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceLocator.html new file mode 100644 index 00000000..9e29f5bf --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceLocator.html @@ -0,0 +1,238 @@ + + + + + + +PropertySourceLocator (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.config
+

Interface PropertySourceLocator

+
+
+
+
    +
  • +
    +
    +
    public interface PropertySourceLocator
    +
    Strategy for locating (possibly remote) property sources for the Environment. + Implementations should not fail unless they intend to prevent the application from + starting.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      org.springframework.core.env.PropertySource<?>locate(org.springframework.core.env.Environment environment) 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        locate

        +
        org.springframework.core.env.PropertySource<?> locate(org.springframework.core.env.Environment environment)
        +
        +
        Parameters:
        +
        environment - the current Environment
        +
        Returns:
        +
        a PropertySource or null if there is none
        +
        Throws:
        +
        IllegalStateException - if there is a fail fast condition
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapConfiguration.html new file mode 100644 index 00000000..c3d84c2b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapProperties.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapProperties.html new file mode 100644 index 00000000..6a5d5240 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapProperties.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties

+
+
No usage of org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceLocator.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceLocator.html new file mode 100644 index 00000000..8f4128b5 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceLocator.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface org.springframework.cloud.bootstrap.config.PropertySourceLocator (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.bootstrap.config.PropertySourceLocator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-frame.html new file mode 100644 index 00000000..04273f68 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.bootstrap.config (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.bootstrap.config

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-summary.html new file mode 100644 index 00000000..4608cdf6 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-summary.html @@ -0,0 +1,165 @@ + + + + + + +org.springframework.cloud.bootstrap.config (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.bootstrap.config

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-tree.html new file mode 100644 index 00000000..bf3fe0e0 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.bootstrap.config Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.bootstrap.config

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-use.html new file mode 100644 index 00000000..8e5e348d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/config/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package org.springframework.cloud.bootstrap.config (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.bootstrap.config

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html new file mode 100644 index 00000000..824c7a2d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html @@ -0,0 +1,311 @@ + + + + + + +EncryptionBootstrapConfiguration.FailsafeTextEncryptor (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration.FailsafeTextEncryptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.security.crypto.encrypt.TextEncryptor
    +
    +
    +
    Enclosing class:
    +
    EncryptionBootstrapConfiguration
    +
    +
    +
    +
    protected static class EncryptionBootstrapConfiguration.FailsafeTextEncryptor
    +extends Object
    +implements org.springframework.security.crypto.encrypt.TextEncryptor
    +
    TextEncryptor that just fails, so that users don't get a false sense of security + adding ciphers to config files and not getting them decrypted.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        FailsafeTextEncryptor

        +
        protected FailsafeTextEncryptor()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        encrypt

        +
        public String encrypt(String text)
        +
        +
        Specified by:
        +
        encrypt in interface org.springframework.security.crypto.encrypt.TextEncryptor
        +
        +
      • +
      + + + +
        +
      • +

        decrypt

        +
        public String decrypt(String encryptedText)
        +
        +
        Specified by:
        +
        decrypt in interface org.springframework.security.crypto.encrypt.TextEncryptor
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.KeyCondition.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.KeyCondition.html new file mode 100644 index 00000000..b87d4771 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.KeyCondition.html @@ -0,0 +1,299 @@ + + + + + + +EncryptionBootstrapConfiguration.KeyCondition (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration.KeyCondition

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.autoconfigure.condition.SpringBootCondition
    • +
    • +
        +
      • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.context.annotation.Condition
    +
    +
    +
    Enclosing class:
    +
    EncryptionBootstrapConfiguration
    +
    +
    +
    +
    public static class EncryptionBootstrapConfiguration.KeyCondition
    +extends org.springframework.boot.autoconfigure.condition.SpringBootCondition
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      KeyCondition() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyCondition

        +
        public KeyCondition()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getMatchOutcome

        +
        public org.springframework.boot.autoconfigure.condition.ConditionOutcome getMatchOutcome(org.springframework.context.annotation.ConditionContext context,
        +                                                                                         org.springframework.core.type.AnnotatedTypeMetadata metadata)
        +
        +
        Specified by:
        +
        getMatchOutcome in class org.springframework.boot.autoconfigure.condition.SpringBootCondition
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html new file mode 100644 index 00000000..3943750a --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html @@ -0,0 +1,283 @@ + + + + + + +EncryptionBootstrapConfiguration.RsaEncryptionConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration.RsaEncryptionConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    EncryptionBootstrapConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.security.rsa.crypto.RsaSecretEncryptor.class)
    +protected static class EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RsaEncryptionConfiguration

        +
        protected RsaEncryptionConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        textEncryptor

        +
        @Bean
        + @ConditionalOnMissingBean(value=org.springframework.security.crypto.encrypt.TextEncryptor.class)
        +public org.springframework.security.crypto.encrypt.TextEncryptor textEncryptor()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html new file mode 100644 index 00000000..6bc0ac96 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html @@ -0,0 +1,283 @@ + + + + + + +EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    EncryptionBootstrapConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnMissingClass(value="org.springframework.security.rsa.crypto.RsaSecretEncryptor")
    +protected static class EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        VanillaEncryptionConfiguration

        +
        protected VanillaEncryptionConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        textEncryptor

        +
        @Bean
        + @ConditionalOnMissingBean(value=org.springframework.security.crypto.encrypt.TextEncryptor.class)
        +public org.springframework.security.crypto.encrypt.TextEncryptor textEncryptor()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.html new file mode 100644 index 00000000..1edc495c --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.html @@ -0,0 +1,315 @@ + + + + + + +EncryptionBootstrapConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.security.crypto.encrypt.TextEncryptor.class)
    + @EnableConfigurationProperties(value=KeyProperties.class)
    +public class EncryptionBootstrapConfiguration
    +extends Object
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EncryptionBootstrapConfiguration

        +
        public EncryptionBootstrapConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.html new file mode 100644 index 00000000..87a53413 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.html @@ -0,0 +1,415 @@ + + + + + + +EnvironmentDecryptApplicationInitializer (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EnvironmentDecryptApplicationInitializer

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>, org.springframework.core.Ordered
    +
    +
    +
    +
    public class EnvironmentDecryptApplicationInitializer
    +extends Object
    +implements org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>, org.springframework.core.Ordered
    +
    Decrypt properties from the environment and insert them with high priority so they + override the encrypted values.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        DECRYPTED_PROPERTY_SOURCE_NAME

        +
        public static final String DECRYPTED_PROPERTY_SOURCE_NAME
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DECRYPTED_BOOTSTRAP_PROPERTY_SOURCE_NAME

        +
        public static final String DECRYPTED_BOOTSTRAP_PROPERTY_SOURCE_NAME
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnvironmentDecryptApplicationInitializer

        +
        public EnvironmentDecryptApplicationInitializer(org.springframework.security.crypto.encrypt.TextEncryptor encryptor)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setFailOnError

        +
        public void setFailOnError(boolean failOnError)
        +
        Strategy to determine how to handle exceptions during decryption.
        +
        +
        Parameters:
        +
        failOnError - the flag value (default true)
        +
        +
      • +
      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      + + + +
        +
      • +

        initialize

        +
        public void initialize(org.springframework.context.ConfigurableApplicationContext applicationContext)
        +
        +
        Specified by:
        +
        initialize in interface org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>
        +
        +
      • +
      + + + +
        +
      • +

        decrypt

        +
        public Map<String,Object> decrypt(org.springframework.core.env.PropertySources propertySources)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.KeyStore.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.KeyStore.html new file mode 100644 index 00000000..34626259 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.KeyStore.html @@ -0,0 +1,368 @@ + + + + + + +KeyProperties.KeyStore (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class KeyProperties.KeyStore

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    KeyProperties
    +
    +
    +
    +
    public static class KeyProperties.KeyStore
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyStore

        +
        public KeyStore()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getAlias

        +
        public String getAlias()
        +
      • +
      + + + +
        +
      • +

        setAlias

        +
        public void setAlias(String alias)
        +
      • +
      + + + +
        +
      • +

        getLocation

        +
        public org.springframework.core.io.Resource getLocation()
        +
      • +
      + + + +
        +
      • +

        setLocation

        +
        public void setLocation(org.springframework.core.io.Resource location)
        +
      • +
      + + + +
        +
      • +

        getPassword

        +
        public String getPassword()
        +
      • +
      + + + +
        +
      • +

        setPassword

        +
        public void setPassword(String password)
        +
      • +
      + + + +
        +
      • +

        getSecret

        +
        public String getSecret()
        +
      • +
      + + + +
        +
      • +

        setSecret

        +
        public void setSecret(String secret)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.Rsa.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.Rsa.html new file mode 100644 index 00000000..483aa5c2 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.Rsa.html @@ -0,0 +1,342 @@ + + + + + + +KeyProperties.Rsa (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class KeyProperties.Rsa

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    KeyProperties
    +
    +
    +
    +
    public static class KeyProperties.Rsa
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Rsa

        +
        public Rsa()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getAlgorithm

        +
        public org.springframework.security.rsa.crypto.RsaAlgorithm getAlgorithm()
        +
      • +
      + + + +
        +
      • +

        setAlgorithm

        +
        public void setAlgorithm(org.springframework.security.rsa.crypto.RsaAlgorithm algorithm)
        +
      • +
      + + + +
        +
      • +

        isStrong

        +
        public boolean isStrong()
        +
      • +
      + + + +
        +
      • +

        setStrong

        +
        public void setStrong(boolean strong)
        +
      • +
      + + + +
        +
      • +

        getSalt

        +
        public String getSalt()
        +
      • +
      + + + +
        +
      • +

        setSalt

        +
        public void setSalt(String salt)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.html new file mode 100644 index 00000000..050fbc37 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.html @@ -0,0 +1,375 @@ + + + + + + +KeyProperties (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class KeyProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.KeyProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="encrypt")
    +public class KeyProperties
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyProperties

        +
        public KeyProperties()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html new file mode 100644 index 00000000..54bd76c1 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.KeyCondition.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.KeyCondition.html new file mode 100644 index 00000000..8159d026 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.KeyCondition.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html new file mode 100644 index 00000000..5a2cd819 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html new file mode 100644 index 00000000..84300e21 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.html new file mode 100644 index 00000000..5f0f07e2 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EnvironmentDecryptApplicationInitializer.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EnvironmentDecryptApplicationInitializer.html new file mode 100644 index 00000000..079e2ccf --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EnvironmentDecryptApplicationInitializer.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.KeyStore.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.KeyStore.html new file mode 100644 index 00000000..7d2c50b2 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.KeyStore.html @@ -0,0 +1,179 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.Rsa.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.Rsa.html new file mode 100644 index 00000000..3e8ac054 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.Rsa.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.html new file mode 100644 index 00000000..cb759608 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.KeyProperties (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.KeyProperties

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.KeyProperties
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-frame.html new file mode 100644 index 00000000..7dae2d99 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-frame.html @@ -0,0 +1,29 @@ + + + + + + +org.springframework.cloud.bootstrap.encrypt (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.bootstrap.encrypt

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-summary.html new file mode 100644 index 00000000..cd9dc611 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-summary.html @@ -0,0 +1,182 @@ + + + + + + +org.springframework.cloud.bootstrap.encrypt (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.bootstrap.encrypt

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-tree.html new file mode 100644 index 00000000..44946f7f --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-tree.html @@ -0,0 +1,151 @@ + + + + + + +org.springframework.cloud.bootstrap.encrypt Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.bootstrap.encrypt

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-use.html new file mode 100644 index 00000000..c8832720 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-use.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Package org.springframework.cloud.bootstrap.encrypt (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.bootstrap.encrypt

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-frame.html new file mode 100644 index 00000000..bd0f4694 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.bootstrap (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.bootstrap

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-summary.html new file mode 100644 index 00000000..2e92086d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-summary.html @@ -0,0 +1,170 @@ + + + + + + +org.springframework.cloud.bootstrap (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.bootstrap

+
+
+
    +
  • + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    BootstrapApplicationListener +
    A listener that prepares a SpringApplication (e.g.
    +
    LoggingSystemShutdownListener +
    Cleans up the logging system immediately after the bootstrap context is created on + startup.
    +
    +
  • +
  • + + + + + + + + + + + + +
    Annotation Types Summary 
    Annotation TypeDescription
    BootstrapConfiguration +
    A marker interface used as a key in META-INF/spring.factories.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-tree.html new file mode 100644 index 00000000..1ef6db80 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.bootstrap Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.bootstrap

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.bootstrap.BootstrapApplicationListener (implements org.springframework.context.ApplicationListener<E>, org.springframework.core.Ordered)
    • +
    • org.springframework.cloud.bootstrap.LoggingSystemShutdownListener (implements org.springframework.context.ApplicationListener<E>, org.springframework.core.Ordered)
    • +
    +
  • +
+

Annotation Type Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-use.html new file mode 100644 index 00000000..7ca183ea --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/bootstrap/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.bootstrap (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.bootstrap

+
+
No usage of org.springframework.cloud.bootstrap
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.Context.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.Context.html new file mode 100644 index 00000000..de406a8b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.Context.html @@ -0,0 +1,294 @@ + + + + + + +BeanLifecycleDecorator.Context (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.config
+

Class BeanLifecycleDecorator.Context<T>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.config.BeanLifecycleDecorator.Context<T>
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + + + +
        +
      • +

        Context

        +
        public Context(Runnable callback,
        +               T auxiliary)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getCallback

        +
        public Runnable getCallback()
        +
      • +
      + + + +
        +
      • +

        getAuxiliary

        +
        public T getAuxiliary()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.html new file mode 100644 index 00000000..2df52e7c --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.html @@ -0,0 +1,301 @@ + + + + + + +BeanLifecycleDecorator (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.config
+

Interface BeanLifecycleDecorator<T>

+
+
+
+
    +
  • +
    +
    Type Parameters:
    +
    T - the type of auxiliary context object that can be passed between + methods. Implementations can choose what type of data to supply as + it is passed around unchanged by the caller.
    +
    +
    +
    All Known Implementing Classes:
    +
    StandardBeanLifecycleDecorator
    +
    +
    +
    +
    public interface BeanLifecycleDecorator<T>
    +
    A helper interface providing optional decoration of bean instances and their + destruction callbacks. Users can supply custom implementations of this + strategy if they want tighter control over method invocation on the bean or + its destruction callback.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        decorateBean

        +
        Object decorateBean(Object bean,
        +                    BeanLifecycleDecorator.Context<T> context)
        +
        Optionally decorate and provide a new instance of a compatible bean for + the caller to use instead of the input.
        +
        +
        Parameters:
        +
        bean - the bean to optionally decorate
        +
        context - the context as created by + decorateDestructionCallback(Runnable)
        +
        Returns:
        +
        the replacement bean for the caller to use
        +
        +
      • +
      + + + +
        +
      • +

        decorateDestructionCallback

        +
        BeanLifecycleDecorator.Context<T> decorateDestructionCallback(Runnable callback)
        +
        Optionally decorate the destruction callback provided, and also return + some context that can be used later by the + decorateBean(Object, Context) method.
        +
        +
        Parameters:
        +
        callback - the destruction callback that will be used by the container
        +
        Returns:
        +
        a context wrapper
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.html new file mode 100644 index 00000000..8338812d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.html @@ -0,0 +1,349 @@ + + + + + + +StandardBeanLifecycleDecorator (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.config
+

Class StandardBeanLifecycleDecorator

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    BeanLifecycleDecorator<ReadWriteLock>
    +
    +
    +
    +
    public class StandardBeanLifecycleDecorator
    +extends Object
    +implements BeanLifecycleDecorator<ReadWriteLock>
    +
    A BeanLifecycleDecorator that tries to protect against concurrent access to a bean during its own destruction. + A read-write lock is used, and method access is protected using the read lock, while the destruction callback is + protected more strictly with the write lock. In this way concurrent access is possible to the bean as long as it is + not being destroyed, in which case only one thread has access. If the bean has no destruction callback the lock and + associated proxies are never created.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/RefreshScope.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/RefreshScope.html new file mode 100644 index 00000000..bcb97e27 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/RefreshScope.html @@ -0,0 +1,234 @@ + + + + + + +RefreshScope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.config.annotation
+

Annotation Type RefreshScope

+
+
+
+
    +
  • +
    +
    +
    @Target(value={TYPE,METHOD})
    + @Retention(value=RUNTIME)
    + @Scope(value="refresh")
    + @Documented
    +public @interface RefreshScope
    +
    Convenience annotation to put a @Bean definition in + refresh scope. + Beans annotated this way can be refreshed at runtime and any components that are using + them will get a new instance on the next method call, fully initialized and injected + with all dependencies.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Optional Element Summary

      + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional Element and Description
      org.springframework.context.annotation.ScopedProxyModeproxyMode 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        proxyMode

        +
        public abstract org.springframework.context.annotation.ScopedProxyMode proxyMode
        +
        +
        See Also:
        +
        Scope.proxyMode()
        +
        +
        +
        Default:
        +
        org.springframework.context.annotation.ScopedProxyMode.TARGET_CLASS
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/class-use/RefreshScope.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/class-use/RefreshScope.html new file mode 100644 index 00000000..3099a37f --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/class-use/RefreshScope.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.config.annotation.RefreshScope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.config.annotation.RefreshScope

+
+
No usage of org.springframework.cloud.context.config.annotation.RefreshScope
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-frame.html new file mode 100644 index 00000000..a58916a9 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.context.config.annotation (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.config.annotation

+
+

Annotation Types

+ +
+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-summary.html new file mode 100644 index 00000000..0dcf4b42 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-summary.html @@ -0,0 +1,147 @@ + + + + + + +org.springframework.cloud.context.config.annotation (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.config.annotation

+
+
+
    +
  • + + + + + + + + + + + + +
    Annotation Types Summary 
    Annotation TypeDescription
    RefreshScope +
    Convenience annotation to put a @Bean definition in + refresh scope.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-tree.html new file mode 100644 index 00000000..538d81b6 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-tree.html @@ -0,0 +1,135 @@ + + + + + + +org.springframework.cloud.context.config.annotation Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.config.annotation

+Package Hierarchies: + +
+
+

Annotation Type Hierarchy

+
    +
  • org.springframework.cloud.context.config.annotation.RefreshScope (implements java.lang.annotation.Annotation)
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-use.html new file mode 100644 index 00000000..fc99fc9d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/annotation/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.context.config.annotation (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.config.annotation

+
+
No usage of org.springframework.cloud.context.config.annotation
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.Context.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.Context.html new file mode 100644 index 00000000..a5e30254 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.Context.html @@ -0,0 +1,196 @@ + + + + + + +Uses of Class org.springframework.cloud.context.config.BeanLifecycleDecorator.Context (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.config.BeanLifecycleDecorator.Context

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.html new file mode 100644 index 00000000..dde61e07 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Interface org.springframework.cloud.context.config.BeanLifecycleDecorator (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.context.config.BeanLifecycleDecorator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/StandardBeanLifecycleDecorator.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/StandardBeanLifecycleDecorator.html new file mode 100644 index 00000000..0a3e66de --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/class-use/StandardBeanLifecycleDecorator.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.config.StandardBeanLifecycleDecorator (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.config.StandardBeanLifecycleDecorator

+
+
No usage of org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-frame.html new file mode 100644 index 00000000..1ea8ecf1 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.context.config (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.config

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-summary.html new file mode 100644 index 00000000..0245696f --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-summary.html @@ -0,0 +1,168 @@ + + + + + + +org.springframework.cloud.context.config (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.config

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-tree.html new file mode 100644 index 00000000..778830b7 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.context.config Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.config

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-use.html new file mode 100644 index 00000000..6d0ff40a --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/config/package-use.html @@ -0,0 +1,187 @@ + + + + + + +Uses of Package org.springframework.cloud.context.config (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.config

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/EncryptorFactory.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/EncryptorFactory.html new file mode 100644 index 00000000..30251657 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/EncryptorFactory.html @@ -0,0 +1,277 @@ + + + + + + +EncryptorFactory (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.encrypt
+

Class EncryptorFactory

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.encrypt.EncryptorFactory
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class EncryptorFactory
    +extends Object
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EncryptorFactory

        +
        public EncryptorFactory()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        create

        +
        public org.springframework.security.crypto.encrypt.TextEncryptor create(String data)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/KeyFormatException.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/KeyFormatException.html new file mode 100644 index 00000000..8d1c802d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/KeyFormatException.html @@ -0,0 +1,269 @@ + + + + + + +KeyFormatException (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.encrypt
+

Class KeyFormatException

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyFormatException

        +
        public KeyFormatException()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/class-use/EncryptorFactory.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/class-use/EncryptorFactory.html new file mode 100644 index 00000000..2a7fdbed --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/class-use/EncryptorFactory.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.encrypt.EncryptorFactory (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.encrypt.EncryptorFactory

+
+
No usage of org.springframework.cloud.context.encrypt.EncryptorFactory
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/class-use/KeyFormatException.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/class-use/KeyFormatException.html new file mode 100644 index 00000000..4f962a40 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/class-use/KeyFormatException.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.encrypt.KeyFormatException (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.encrypt.KeyFormatException

+
+
No usage of org.springframework.cloud.context.encrypt.KeyFormatException
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-frame.html new file mode 100644 index 00000000..a540781a --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +org.springframework.cloud.context.encrypt (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.encrypt

+
+

Classes

+ +

Exceptions

+ +
+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-summary.html new file mode 100644 index 00000000..06d3668b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-summary.html @@ -0,0 +1,159 @@ + + + + + + +org.springframework.cloud.context.encrypt (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.encrypt

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    EncryptorFactory 
    +
  • +
  • + + + + + + + + + + + + +
    Exception Summary 
    ExceptionDescription
    KeyFormatException 
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-tree.html new file mode 100644 index 00000000..ca037bd7 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.context.encrypt Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.encrypt

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-use.html new file mode 100644 index 00000000..fb78956f --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/encrypt/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.context.encrypt (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.encrypt

+
+
No usage of org.springframework.cloud.context.encrypt
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentChangeEvent.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentChangeEvent.html new file mode 100644 index 00000000..10e7eec6 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentChangeEvent.html @@ -0,0 +1,327 @@ + + + + + + +EnvironmentChangeEvent (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.environment
+

Class EnvironmentChangeEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class EnvironmentChangeEvent
    +extends org.springframework.context.ApplicationEvent
    +
    Event published to signal a change in the Environment.
    +
    +
    Author:
    +
    Dave Syer
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnvironmentChangeEvent

        +
        public EnvironmentChangeEvent(Set<String> keys)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getKeys

        +
        public Set<String> getKeys()
        +
        +
        Returns:
        +
        the keys
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManager.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManager.html new file mode 100644 index 00000000..e2eda506 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManager.html @@ -0,0 +1,335 @@ + + + + + + +EnvironmentManager (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.environment
+

Class EnvironmentManager

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.environment.EnvironmentManager
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.context.ApplicationEventPublisherAware
    +
    +
    +
    +
    @Component
    + @ManagedResource
    +public class EnvironmentManager
    +extends Object
    +implements org.springframework.context.ApplicationEventPublisherAware
    +
    Entry point for making local (but volatile) changes to the Environment of a + running application. Allows properties to be added and values changed, simply by adding + them to a high priority property source in the existing Environment.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnvironmentManager

        +
        public EnvironmentManager(org.springframework.core.env.ConfigurableEnvironment environment)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationEventPublisher

        +
        public void setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher publisher)
        +
        +
        Specified by:
        +
        setApplicationEventPublisher in interface org.springframework.context.ApplicationEventPublisherAware
        +
        +
      • +
      + + + + + + + +
        +
      • +

        setProperty

        +
        @ManagedOperation
        +public void setProperty(String name,
        +                                          String value)
        +
      • +
      + + + +
        +
      • +

        getProperty

        +
        @ManagedOperation
        +public Object getProperty(String name)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.html new file mode 100644 index 00000000..6b7a65d9 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.html @@ -0,0 +1,385 @@ + + + + + + +EnvironmentManagerMvcEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.environment
+

Class EnvironmentManagerMvcEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
    +
    +
    +
    +
    public class EnvironmentManagerMvcEndpoint
    +extends Object
    +implements org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
    +
    MVC endpoint for the EnvironmentManager providing a POST to /env as a simple + way to change the Environment.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnvironmentManagerMvcEndpoint

        +
        public EnvironmentManagerMvcEndpoint(org.springframework.boot.actuate.endpoint.EnvironmentEndpoint delegate,
        +                                     EnvironmentManager enviroment)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        value

        +
        @RequestMapping(value="",
        +                method=POST)
        + @ResponseBody
        +public Object value(@RequestParam
        +                                                                                          Map<String,String> params)
        +
      • +
      + + + +
        +
      • +

        reset

        +
        @RequestMapping(value="reset",
        +                method=POST)
        + @ResponseBody
        +public Map<String,Object> reset()
        +
      • +
      + + + +
        +
      • +

        setEnvironmentManager

        +
        public void setEnvironmentManager(EnvironmentManager environment)
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public String getPath()
        +
        +
        Specified by:
        +
        getPath in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      + + + +
        +
      • +

        isSensitive

        +
        public boolean isSensitive()
        +
        +
        Specified by:
        +
        isSensitive in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      + + + +
        +
      • +

        getEndpointType

        +
        public Class<? extends org.springframework.boot.actuate.endpoint.Endpoint> getEndpointType()
        +
        +
        Specified by:
        +
        getEndpointType in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentChangeEvent.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentChangeEvent.html new file mode 100644 index 00000000..f9720ef9 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentChangeEvent.html @@ -0,0 +1,188 @@ + + + + + + +Uses of Class org.springframework.cloud.context.environment.EnvironmentChangeEvent (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.environment.EnvironmentChangeEvent

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManager.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManager.html new file mode 100644 index 00000000..9509cae2 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManager.html @@ -0,0 +1,214 @@ + + + + + + +Uses of Class org.springframework.cloud.context.environment.EnvironmentManager (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.environment.EnvironmentManager

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManagerMvcEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManagerMvcEndpoint.html new file mode 100644 index 00000000..24963409 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManagerMvcEndpoint.html @@ -0,0 +1,167 @@ + + + + + + +Uses of Class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-frame.html new file mode 100644 index 00000000..febe2173 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +org.springframework.cloud.context.environment (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.environment

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-summary.html new file mode 100644 index 00000000..0c9fbdf5 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-summary.html @@ -0,0 +1,160 @@ + + + + + + +org.springframework.cloud.context.environment (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.environment

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-tree.html new file mode 100644 index 00000000..190e344d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-tree.html @@ -0,0 +1,149 @@ + + + + + + +org.springframework.cloud.context.environment Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.environment

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.environment.EnvironmentManager (implements org.springframework.context.ApplicationEventPublisherAware)
    • +
    • org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint (implements org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint)
    • +
    • java.util.EventObject (implements java.io.Serializable) +
        +
      • org.springframework.context.ApplicationEvent + +
      • +
      +
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-use.html new file mode 100644 index 00000000..9e67dcea --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/environment/package-use.html @@ -0,0 +1,232 @@ + + + + + + +Uses of Package org.springframework.cloud.context.environment (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.environment

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.Specification.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.Specification.html new file mode 100644 index 00000000..eb5f15a7 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.Specification.html @@ -0,0 +1,240 @@ + + + + + + +NamedContextFactory.Specification (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.named
+

Interface NamedContextFactory.Specification

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        String getName()
        +
      • +
      + + + +
        +
      • +

        getConfiguration

        +
        Class<?>[] getConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.html new file mode 100644 index 00000000..a4bfb1c5 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.html @@ -0,0 +1,415 @@ + + + + + + +NamedContextFactory (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.named
+

Class NamedContextFactory<C extends NamedContextFactory.Specification>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.named.NamedContextFactory<C>
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.DisposableBean, org.springframework.context.ApplicationContextAware
    +
    +
    +
    +
    public abstract class NamedContextFactory<C extends NamedContextFactory.Specification>
    +extends Object
    +implements org.springframework.beans.factory.DisposableBean, org.springframework.context.ApplicationContextAware
    +
    Creates a set of child contexts that allows a set of Specifications to define the beans + in each child context. + + Ported from spring-cloud-netflix FeignClientFactory and SpringClientFactory
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        NamedContextFactory

        +
        public NamedContextFactory(Class<?> defaultConfigType,
        +                           String propertySourceName,
        +                           String propertyName)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext parent)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        setConfigurations

        +
        public void setConfigurations(List<C> configurations)
        +
      • +
      + + + +
        +
      • +

        getContextNames

        +
        public Set<String> getContextNames()
        +
      • +
      + + + +
        +
      • +

        destroy

        +
        public void destroy()
        +
        +
        Specified by:
        +
        destroy in interface org.springframework.beans.factory.DisposableBean
        +
        +
      • +
      + + + +
        +
      • +

        getContext

        +
        protected org.springframework.context.annotation.AnnotationConfigApplicationContext getContext(String name)
        +
      • +
      + + + +
        +
      • +

        createContext

        +
        protected org.springframework.context.annotation.AnnotationConfigApplicationContext createContext(String name)
        +
      • +
      + + + +
        +
      • +

        getInstance

        +
        public <T> T getInstance(String name,
        +                         Class<T> type)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.Specification.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.Specification.html new file mode 100644 index 00000000..60100418 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.Specification.html @@ -0,0 +1,169 @@ + + + + + + +Uses of Interface org.springframework.cloud.context.named.NamedContextFactory.Specification (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.context.named.NamedContextFactory.Specification

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.html new file mode 100644 index 00000000..2387e292 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.named.NamedContextFactory (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.named.NamedContextFactory

+
+
No usage of org.springframework.cloud.context.named.NamedContextFactory
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-frame.html new file mode 100644 index 00000000..b0738254 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +org.springframework.cloud.context.named (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.named

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-summary.html new file mode 100644 index 00000000..f90a40fd --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-summary.html @@ -0,0 +1,162 @@ + + + + + + +org.springframework.cloud.context.named (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.named

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-tree.html new file mode 100644 index 00000000..6e2160ac --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-tree.html @@ -0,0 +1,143 @@ + + + + + + +org.springframework.cloud.context.named Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.named

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.named.NamedContextFactory<C> (implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.DisposableBean)
    • +
    +
  • +
+

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-use.html new file mode 100644 index 00000000..0ece7b9b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/named/package-use.html @@ -0,0 +1,159 @@ + + + + + + +Uses of Package org.springframework.cloud.context.named (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.named

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.html new file mode 100644 index 00000000..03a98421 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.html @@ -0,0 +1,366 @@ + + + + + + +ConfigurationPropertiesBeans (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.properties
+

Class ConfigurationPropertiesBeans

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.config.BeanPostProcessor, org.springframework.context.ApplicationContextAware
    +
    +
    +
    +
    @Component
    +public class ConfigurationPropertiesBeans
    +extends Object
    +implements org.springframework.beans.factory.config.BeanPostProcessor, org.springframework.context.ApplicationContextAware
    +
    Collects references to @ConfigurationProperties beans in the context and + its parent.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ConfigurationPropertiesBeans

        +
        public ConfigurationPropertiesBeans()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        setBeanMetaDataStore

        +
        public void setBeanMetaDataStore(org.springframework.boot.context.properties.ConfigurationBeanFactoryMetaData beans)
        +
        +
        Parameters:
        +
        beans - the bean meta data to set
        +
        +
      • +
      + + + +
        +
      • +

        postProcessBeforeInitialization

        +
        public Object postProcessBeforeInitialization(Object bean,
        +                                              String beanName)
        +                                       throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeforeInitialization in interface org.springframework.beans.factory.config.BeanPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        postProcessAfterInitialization

        +
        public Object postProcessAfterInitialization(Object bean,
        +                                             String beanName)
        +                                      throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessAfterInitialization in interface org.springframework.beans.factory.config.BeanPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        getBeanNames

        +
        public Set<String> getBeanNames()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.html new file mode 100644 index 00000000..6de8aa3c --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.html @@ -0,0 +1,378 @@ + + + + + + +ConfigurationPropertiesRebinder (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.properties
+

Class ConfigurationPropertiesRebinder

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<EnvironmentChangeEvent>
    +
    +
    +
    +
    @Component
    + @ManagedResource
    +public class ConfigurationPropertiesRebinder
    +extends Object
    +implements org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<EnvironmentChangeEvent>
    +
    Listens for EnvironmentChangeEvent and rebinds beans that were bound to the + Environment using @ConfigurationProperties. When these beans are re-bound and + re-initialized the changes are available immediately to any component that is using the + @ConfigurationProperties bean.
    +
    +
    Author:
    +
    Dave Syer
    +
    See Also:
    +
    for a deeper and optionally more focused refresh of bean components
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ConfigurationPropertiesRebinder

        +
        public ConfigurationPropertiesRebinder(org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor binder,
        +                                       ConfigurationPropertiesBeans beans)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        getErrors

        +
        public Map<String,Exception> getErrors()
        +
        A map of bean name to errors when instantiating the bean.
        +
        +
        Returns:
        +
        the errors accumulated since the latest destroy
        +
        +
      • +
      + + + +
        +
      • +

        rebind

        +
        @ManagedOperation
        +public void rebind()
        +
      • +
      + + + +
        +
      • +

        rebind

        +
        @ManagedOperation
        +public boolean rebind(String name)
        +
      • +
      + + + +
        +
      • +

        getBeanNames

        +
        @ManagedAttribute
        +public Set<String> getBeanNames()
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesBeans.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesBeans.html new file mode 100644 index 00000000..83134b08 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesBeans.html @@ -0,0 +1,201 @@ + + + + + + +Uses of Class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.properties.ConfigurationPropertiesBeans

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesRebinder.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesRebinder.html new file mode 100644 index 00000000..0563861e --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesRebinder.html @@ -0,0 +1,188 @@ + + + + + + +Uses of Class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-frame.html new file mode 100644 index 00000000..8c72ac4a --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.context.properties (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.properties

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-summary.html new file mode 100644 index 00000000..110a0511 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-summary.html @@ -0,0 +1,154 @@ + + + + + + +org.springframework.cloud.context.properties (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.properties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-tree.html new file mode 100644 index 00000000..9a7af87e --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-tree.html @@ -0,0 +1,140 @@ + + + + + + +org.springframework.cloud.context.properties Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.properties

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.properties.ConfigurationPropertiesBeans (implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.config.BeanPostProcessor)
    • +
    • org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder (implements org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<E>)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-use.html new file mode 100644 index 00000000..ea72c4bd --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/properties/package-use.html @@ -0,0 +1,212 @@ + + + + + + +Uses of Package org.springframework.cloud.context.properties (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.properties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.Empty.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.Empty.html new file mode 100644 index 00000000..8d7426f3 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.Empty.html @@ -0,0 +1,246 @@ + + + + + + +ContextRefresher.Empty (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.refresh
+

Class ContextRefresher.Empty

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.refresh.ContextRefresher.Empty
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    ContextRefresher
    +
    +
    +
    +
    @Configuration
    +protected static class ContextRefresher.Empty
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Empty

        +
        protected Empty()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.html new file mode 100644 index 00000000..1e5e1784 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.html @@ -0,0 +1,298 @@ + + + + + + +ContextRefresher (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.refresh
+

Class ContextRefresher

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.refresh.ContextRefresher
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class ContextRefresher
    +extends Object
    +
    +
    Author:
    +
    Dave Syer, Venil Noronha
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ContextRefresher

        +
        public ContextRefresher(org.springframework.context.ConfigurableApplicationContext context,
        +                        RefreshScope scope)
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.Empty.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.Empty.html new file mode 100644 index 00000000..9fd200e3 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.Empty.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.refresh.ContextRefresher.Empty (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.refresh.ContextRefresher.Empty

+
+
No usage of org.springframework.cloud.context.refresh.ContextRefresher.Empty
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.html new file mode 100644 index 00000000..7892c077 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.html @@ -0,0 +1,224 @@ + + + + + + +Uses of Class org.springframework.cloud.context.refresh.ContextRefresher (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.refresh.ContextRefresher

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-frame.html new file mode 100644 index 00000000..5708dc1a --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.context.refresh (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.refresh

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-summary.html new file mode 100644 index 00000000..fc47cf5d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-summary.html @@ -0,0 +1,148 @@ + + + + + + +org.springframework.cloud.context.refresh (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.refresh

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-tree.html new file mode 100644 index 00000000..1023361e --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-tree.html @@ -0,0 +1,140 @@ + + + + + + +org.springframework.cloud.context.refresh Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.refresh

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-use.html new file mode 100644 index 00000000..5375f077 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/refresh/package-use.html @@ -0,0 +1,197 @@ + + + + + + +Uses of Package org.springframework.cloud.context.refresh (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.refresh

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.PauseEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.PauseEndpoint.html new file mode 100644 index 00000000..81db36aa --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.PauseEndpoint.html @@ -0,0 +1,294 @@ + + + + + + +RestartEndpoint.PauseEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartEndpoint.PauseEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    • +
    • +
        +
      • org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<Boolean>, org.springframework.context.EnvironmentAware
    +
    +
    +
    Enclosing class:
    +
    RestartEndpoint
    +
    +
    +
    +
    @ConfigurationProperties(value="endpoints")
    +public class RestartEndpoint.PauseEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PauseEndpoint

        +
        public PauseEndpoint()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.ResumeEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.ResumeEndpoint.html new file mode 100644 index 00000000..516c01b3 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.ResumeEndpoint.html @@ -0,0 +1,294 @@ + + + + + + +RestartEndpoint.ResumeEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartEndpoint.ResumeEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    • +
    • +
        +
      • org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<Boolean>, org.springframework.context.EnvironmentAware
    +
    +
    +
    Enclosing class:
    +
    RestartEndpoint
    +
    +
    +
    +
    @ConfigurationProperties(value="endpoints")
    +public class RestartEndpoint.ResumeEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ResumeEndpoint

        +
        public ResumeEndpoint()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.html new file mode 100644 index 00000000..d37dbb81 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.html @@ -0,0 +1,466 @@ + + + + + + +RestartEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    • +
    • +
        +
      • org.springframework.cloud.context.restart.RestartEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<Boolean>, org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationPreparedEvent>, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @ConfigurationProperties(value="endpoints.restart")
    + @ManagedResource
    +public class RestartEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    +implements org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationPreparedEvent>
    +
    An endpoint that restarts the application context. Install as a bean and also register + a RestartListener with the SpringApplication that starts the context. + Those two components communicate via an ApplicationEvent and set up the state + needed to restart the context.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartEndpoint

        +
        public RestartEndpoint()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getTimeout

        +
        @ManagedAttribute
        +public long getTimeout()
        +
      • +
      + + + +
        +
      • +

        setTimeout

        +
        public void setTimeout(long timeout)
        +
      • +
      + + + +
        +
      • +

        setIntegrationMBeanExporter

        +
        public void setIntegrationMBeanExporter(Object exporter)
        +
      • +
      + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.boot.context.event.ApplicationPreparedEvent input)
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationPreparedEvent>
        +
        +
      • +
      + + + +
        +
      • +

        invoke

        +
        public Boolean invoke()
        +
        +
        Specified by:
        +
        invoke in interface org.springframework.boot.actuate.endpoint.Endpoint<Boolean>
        +
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        restart

        +
        @ManagedOperation
        +public org.springframework.context.ConfigurableApplicationContext restart()
        +
      • +
      + + + +
        +
      • +

        isRunning

        +
        @ManagedAttribute
        +public boolean isRunning()
        +
      • +
      + + + +
        +
      • +

        pause

        +
        @ManagedOperation
        +public void pause()
        +
      • +
      + + + +
        +
      • +

        resume

        +
        @ManagedOperation
        +public void resume()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartListener.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartListener.html new file mode 100644 index 00000000..ca3bda44 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartListener.html @@ -0,0 +1,354 @@ + + + + + + +RestartListener (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartListener

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.restart.RestartListener
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.context.ApplicationListener<org.springframework.context.ApplicationEvent>, org.springframework.context.event.SmartApplicationListener, org.springframework.core.Ordered
    +
    +
    +
    +
    public class RestartListener
    +extends Object
    +implements org.springframework.context.event.SmartApplicationListener
    +
    A listener that stores enough information about an application as it starts, to be able + to restart it later if needed.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartListener

        +
        public RestartListener()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        supportsEventType

        +
        public boolean supportsEventType(Class<? extends org.springframework.context.ApplicationEvent> eventType)
        +
        +
        Specified by:
        +
        supportsEventType in interface org.springframework.context.event.SmartApplicationListener
        +
        +
      • +
      + + + +
        +
      • +

        supportsSourceType

        +
        public boolean supportsSourceType(Class<?> sourceType)
        +
        +
        Specified by:
        +
        supportsSourceType in interface org.springframework.context.event.SmartApplicationListener
        +
        +
      • +
      + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.context.ApplicationEvent input)
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.context.ApplicationEvent>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartMvcEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartMvcEndpoint.html new file mode 100644 index 00000000..3a476f62 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/RestartMvcEndpoint.html @@ -0,0 +1,321 @@ + + + + + + +RestartMvcEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartMvcEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.mvc.AbstractEndpointMvcAdapter<org.springframework.boot.actuate.endpoint.Endpoint<?>>
    • +
    • +
        +
      • org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
      • +
      • +
          +
        • org.springframework.cloud.context.restart.RestartMvcEndpoint
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint, org.springframework.boot.actuate.endpoint.mvc.NamedMvcEndpoint
    +
    +
    +
    +
    public class RestartMvcEndpoint
    +extends org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
    +
    MVC endpoint to allow an application to be restarted on a POST (to /restart by + default).
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartMvcEndpoint

        +
        public RestartMvcEndpoint(RestartEndpoint delegate)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        invoke

        +
        @RequestMapping(method=POST)
        + @ResponseBody
        +public Object invoke()
        +
        +
        Overrides:
        +
        invoke in class org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.PauseEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.PauseEndpoint.html new file mode 100644 index 00000000..ec1a50c3 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.PauseEndpoint.html @@ -0,0 +1,201 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.ResumeEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.ResumeEndpoint.html new file mode 100644 index 00000000..1ea5a528 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.ResumeEndpoint.html @@ -0,0 +1,201 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.html new file mode 100644 index 00000000..be13465b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.html @@ -0,0 +1,207 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartListener.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartListener.html new file mode 100644 index 00000000..3a623b25 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartListener.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartListener (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartListener

+
+
No usage of org.springframework.cloud.context.restart.RestartListener
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartMvcEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartMvcEndpoint.html new file mode 100644 index 00000000..224322d0 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartMvcEndpoint.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartMvcEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartMvcEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-frame.html new file mode 100644 index 00000000..cf099c5c --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +org.springframework.cloud.context.restart (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.restart

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-summary.html new file mode 100644 index 00000000..9d6b3c96 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-summary.html @@ -0,0 +1,160 @@ + + + + + + +org.springframework.cloud.context.restart (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.restart

+
+
+
    +
  • + + + + + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    RestartEndpoint +
    An endpoint that restarts the application context.
    +
    RestartListener +
    A listener that stores enough information about an application as it starts, to be able + to restart it later if needed.
    +
    RestartMvcEndpoint +
    MVC endpoint to allow an application to be restarted on a POST (to /restart by + default).
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-tree.html new file mode 100644 index 00000000..d9e05218 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-tree.html @@ -0,0 +1,155 @@ + + + + + + +org.springframework.cloud.context.restart Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.restart

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<T> (implements org.springframework.boot.actuate.endpoint.Endpoint<T>, org.springframework.context.EnvironmentAware) + +
    • +
    • org.springframework.boot.actuate.endpoint.mvc.AbstractEndpointMvcAdapter<E> (implements org.springframework.boot.actuate.endpoint.mvc.NamedMvcEndpoint) +
        +
      • org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter + +
      • +
      +
    • +
    • org.springframework.cloud.context.restart.RestartListener (implements org.springframework.context.event.SmartApplicationListener)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-use.html new file mode 100644 index 00000000..f8252c8e --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/restart/package-use.html @@ -0,0 +1,200 @@ + + + + + + +Uses of Package org.springframework.cloud.context.restart (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.restart

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/GenericScope.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/GenericScope.html new file mode 100644 index 00000000..2294afb5 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/GenericScope.html @@ -0,0 +1,603 @@ + + + + + + +GenericScope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope
+

Class GenericScope

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.scope.GenericScope
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.DisposableBean
    +
    +
    +
    Direct Known Subclasses:
    +
    RefreshScope, ThreadScope
    +
    +
    +
    +
    public class GenericScope
    +extends Object
    +implements org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean
    +

    + A generic Scope implementation. +

    +
    +
    Since:
    +
    3.1
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GenericScope

        +
        public GenericScope()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setId

        +
        public void setId(String id)
        +
        Manual override for the serialization id that will be used to identify the bean + factory. The default is a unique key based on the bean names in the bean factory.
        +
        +
        Parameters:
        +
        id - the id to set
        +
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(String name)
        +
        The name of this scope. Default "generic".
        +
        +
        Parameters:
        +
        name - the name value to set
        +
        +
      • +
      + + + +
        +
      • +

        setProxyTargetClass

        +
        public void setProxyTargetClass(boolean proxyTargetClass)
        +
        Flag to indicate that proxies should be created for the concrete type, not just the + interfaces, of the scoped beans.
        +
        +
        Parameters:
        +
        proxyTargetClass - the flag value to set
        +
        +
      • +
      + + + +
        +
      • +

        setScopeCache

        +
        public void setScopeCache(ScopeCache cache)
        +
        The cache implementation to use for bean instances in this scope.
        +
        +
        Parameters:
        +
        cache - the cache to use
        +
        +
      • +
      + + + +
        +
      • +

        setBeanLifecycleManager

        +
        public void setBeanLifecycleManager(BeanLifecycleDecorator<?> lifecycle)
        +
        Helper to manage the creation and destruction of beans.
        +
        +
        Parameters:
        +
        lifecycle - the bean lifecycle to set
        +
        +
      • +
      + + + +
        +
      • +

        getErrors

        +
        public Map<String,Exception> getErrors()
        +
        A map of bean name to errors when instantiating the bean.
        +
        +
        Returns:
        +
        the errors accumulated since the latest destroy
        +
        +
      • +
      + + + +
        +
      • +

        destroy

        +
        public void destroy()
        +
        +
        Specified by:
        +
        destroy in interface org.springframework.beans.factory.DisposableBean
        +
        +
      • +
      + + + +
        +
      • +

        destroy

        +
        protected boolean destroy(String name)
        +
        Destroy the named bean (i.e. flush it from the cache by default).
        +
        +
        Parameters:
        +
        name - the bean name to flush
        +
        Returns:
        +
        true if the bean was already cached, false otherwise
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public Object get(String name,
        +                  org.springframework.beans.factory.ObjectFactory<?> objectFactory)
        +
        +
        Specified by:
        +
        get in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        getConversationId

        +
        public String getConversationId()
        +
        +
        Specified by:
        +
        getConversationId in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        registerDestructionCallback

        +
        public void registerDestructionCallback(String name,
        +                                        Runnable callback)
        +
        +
        Specified by:
        +
        registerDestructionCallback in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        remove

        +
        public Object remove(String name)
        +
        +
        Specified by:
        +
        remove in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        resolveContextualObject

        +
        public Object resolveContextualObject(String key)
        +
        +
        Specified by:
        +
        resolveContextualObject in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        postProcessBeanFactory

        +
        public void postProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory)
        +                            throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeanFactory in interface org.springframework.beans.factory.config.BeanFactoryPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        getName

        +
        protected String getName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/ScopeCache.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/ScopeCache.html new file mode 100644 index 00000000..968719df --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/ScopeCache.html @@ -0,0 +1,312 @@ + + + + + + +ScopeCache (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope
+

Interface ScopeCache

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    StandardScopeCache, ThreadLocalScopeCache
    +
    +
    +
    +
    public interface ScopeCache
    +
    A special purpose cache interface specifically for the GenericScope to use to manage cached bean instances. + Implementations generally fall into two categories: those that store values "globally" (i.e. one instance per key), + and those that store potentially multiple instances per key based on context (e.g. via a thread local). All + implementations should be thread safe.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        remove

        +
        Object remove(String name)
        +
        Remove the object with this name from the cache.
        +
        +
        Parameters:
        +
        name - the object name
        +
        Returns:
        +
        the object removed or null if there was none
        +
        +
      • +
      + + + +
        +
      • +

        clear

        +
        Collection<Object> clear()
        +
        Clear the cache and return all objects in an unmodifiable collection.
        +
        +
        Returns:
        +
        all objects stored in the cache
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        Object get(String name)
        +
        Get the named object from the cache.
        +
        +
        Parameters:
        +
        name - the name of the object
        +
        Returns:
        +
        the object with that name or null if there is none
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        Object put(String name,
        +           Object value)
        +
        Put a value in the cache if the key is not already used. If one is already present with the name provided, it is + not replaced, but is returned to the caller.
        +
        +
        Parameters:
        +
        name - the key
        +
        value - the new candidate value
        +
        Returns:
        +
        the value that is in the cache at the end of the operation
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/StandardScopeCache.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/StandardScopeCache.html new file mode 100644 index 00000000..14498176 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/StandardScopeCache.html @@ -0,0 +1,372 @@ + + + + + + +StandardScopeCache (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope
+

Class StandardScopeCache

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.scope.StandardScopeCache
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    ScopeCache
    +
    +
    +
    +
    public class StandardScopeCache
    +extends Object
    +implements ScopeCache
    +
    A simple cache implementation backed by a concurrent map.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        StandardScopeCache

        +
        public StandardScopeCache()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        remove

        +
        public Object remove(String name)
        +
        Description copied from interface: ScopeCache
        +
        Remove the object with this name from the cache.
        +
        +
        Specified by:
        +
        remove in interface ScopeCache
        +
        Parameters:
        +
        name - the object name
        +
        Returns:
        +
        the object removed or null if there was none
        +
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public Collection<Object> clear()
        +
        Description copied from interface: ScopeCache
        +
        Clear the cache and return all objects in an unmodifiable collection.
        +
        +
        Specified by:
        +
        clear in interface ScopeCache
        +
        Returns:
        +
        all objects stored in the cache
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public Object get(String name)
        +
        Description copied from interface: ScopeCache
        +
        Get the named object from the cache.
        +
        +
        Specified by:
        +
        get in interface ScopeCache
        +
        Parameters:
        +
        name - the name of the object
        +
        Returns:
        +
        the object with that name or null if there is none
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public Object put(String name,
        +                  Object value)
        +
        Description copied from interface: ScopeCache
        +
        Put a value in the cache if the key is not already used. If one is already present with the name provided, it is + not replaced, but is returned to the caller.
        +
        +
        Specified by:
        +
        put in interface ScopeCache
        +
        Parameters:
        +
        name - the key
        +
        value - the new candidate value
        +
        Returns:
        +
        the value that is in the cache at the end of the operation
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/GenericScope.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/GenericScope.html new file mode 100644 index 00000000..2338d128 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/GenericScope.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.GenericScope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.GenericScope

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/ScopeCache.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/ScopeCache.html new file mode 100644 index 00000000..81122006 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/ScopeCache.html @@ -0,0 +1,205 @@ + + + + + + +Uses of Interface org.springframework.cloud.context.scope.ScopeCache (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.context.scope.ScopeCache

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/StandardScopeCache.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/StandardScopeCache.html new file mode 100644 index 00000000..3dcda7da --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/class-use/StandardScopeCache.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.StandardScopeCache (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.StandardScopeCache

+
+
No usage of org.springframework.cloud.context.scope.StandardScopeCache
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-frame.html new file mode 100644 index 00000000..f02c6202 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.context.scope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.scope

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-summary.html new file mode 100644 index 00000000..68e02eb1 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-summary.html @@ -0,0 +1,170 @@ + + + + + + +org.springframework.cloud.context.scope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.scope

+
+
+
    +
  • + + + + + + + + + + + + +
    Interface Summary 
    InterfaceDescription
    ScopeCache +
    A special purpose cache interface specifically for the GenericScope to use to manage cached bean instances.
    +
    +
  • +
  • + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    GenericScope +
    + A generic Scope implementation.
    +
    StandardScopeCache +
    A simple cache implementation backed by a concurrent map.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-tree.html new file mode 100644 index 00000000..f7d9050c --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.context.scope Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.scope

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.scope.GenericScope (implements org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.config.Scope)
    • +
    • org.springframework.cloud.context.scope.StandardScopeCache (implements org.springframework.cloud.context.scope.ScopeCache)
    • +
    +
  • +
+

Interface Hierarchy

+
    +
  • org.springframework.cloud.context.scope.ScopeCache
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-use.html new file mode 100644 index 00000000..b6c02c30 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/package-use.html @@ -0,0 +1,210 @@ + + + + + + +Uses of Package org.springframework.cloud.context.scope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.scope

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScope.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScope.html new file mode 100644 index 00000000..f2e5eb2a --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScope.html @@ -0,0 +1,484 @@ + + + + + + +RefreshScope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope.refresh
+

Class RefreshScope

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor, org.springframework.context.ApplicationContextAware, org.springframework.core.Ordered
    +
    +
    +
    +
    @ManagedResource
    +public class RefreshScope
    +extends GenericScope
    +implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor, org.springframework.core.Ordered
    +

    + A Scope implementation that allows for beans to be refreshed dynamically at runtime + (see refresh(String) and refreshAll()). If a bean is refreshed then + the next time the bean is accessed (i.e. a method is executed) a new instance is + created. All lifecycle methods are applied to the bean instances, so any destruction + callbacks that were registered in the bean factory are called when it is refreshed, and + then the initialization callbacks are invoked as normal when the new instance is + created. A new bean instance is created from the original bean definition, so any + externalized content (property placeholders or expressions in string literals) is + re-evaluated when it is created. +

    + +

    + Note that all beans in this scope are only initialized when first accessed, so + the scope forces lazy initialization semantics. The implementation involves creating a + proxy for every bean in the scope, so there is a flag + proxyTargetClass which controls the proxy + creation, defaulting to JDK dynamic proxies and therefore only exposing the interfaces + implemented by a bean. If callers need access to other methods then the flag needs to + be set (and CGLib present on the classpath). Because this scope automatically proxies + all its beans, there is no need to add <aop:auto-proxy/> to any bean + definitions. +

    + +

    + The scoped proxy approach adopted here has a side benefit that bean instances are + automatically Serializable, and can be sent across the wire as long as the + receiver has an identical application context on the other side. To ensure that the two + contexts agree that they are identical they have to have the same serialization id. One + will be generated automatically by default from the bean names, so two contexts with + the same bean names are by default able to exchange beans by name. If you need to + override the default id then provide an explicit id when the + Scope is declared. +

    +
    +
    Since:
    +
    3.1
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshScope

        +
        public RefreshScope()
        +
        Create a scope instance and give it the default name: "refresh".
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      + + + +
        +
      • +

        setEager

        +
        public void setEager(boolean eager)
        +
        Flag to determine whether all beans in refresh scope should be instantiated eagerly + on startup. Default true.
        +
        +
        Parameters:
        +
        eager - the flag to set
        +
        +
      • +
      + + + +
        +
      • +

        postProcessBeanDefinitionRegistry

        +
        public void postProcessBeanDefinitionRegistry(org.springframework.beans.factory.support.BeanDefinitionRegistry registry)
        +                                       throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeanDefinitionRegistry in interface org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        start

        +
        @EventListener
        +public void start(org.springframework.context.event.ContextRefreshedEvent event)
        +
      • +
      + + + +
        +
      • +

        refresh

        +
        @ManagedOperation(description="Dispose of the current instance of bean name provided and force a refresh on next method execution.")
        +public boolean refresh(String name)
        +
      • +
      + + + +
        +
      • +

        refreshAll

        +
        @ManagedOperation(description="Dispose of the current instance of all beans in this scope and force a refresh on next method execution.")
        +public void refreshAll()
        +
      • +
      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext context)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.html new file mode 100644 index 00000000..7c76e41d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.html @@ -0,0 +1,366 @@ + + + + + + +RefreshScopeRefreshedEvent (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope.refresh
+

Class RefreshScopeRefreshedEvent

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.util.EventObject
    • +
    • +
        +
      • org.springframework.context.ApplicationEvent
      • +
      • +
          +
        • org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class RefreshScopeRefreshedEvent
    +extends org.springframework.context.ApplicationEvent
    +
    +
    Author:
    +
    Spencer Gibb
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshScopeRefreshedEvent

        +
        public RefreshScopeRefreshedEvent()
        +
      • +
      + + + +
        +
      • +

        RefreshScopeRefreshedEvent

        +
        public RefreshScopeRefreshedEvent(String name)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public String getName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScope.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScope.html new file mode 100644 index 00000000..c99a30cb --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScope.html @@ -0,0 +1,209 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.refresh.RefreshScope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.refresh.RefreshScope

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScopeRefreshedEvent.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScopeRefreshedEvent.html new file mode 100644 index 00000000..b16832df --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScopeRefreshedEvent.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent

+
+
No usage of org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-frame.html new file mode 100644 index 00000000..83360cc2 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.context.scope.refresh (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.scope.refresh

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-summary.html new file mode 100644 index 00000000..0f0ea091 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-summary.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.context.scope.refresh (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.scope.refresh

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-tree.html new file mode 100644 index 00000000..0b05864b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.context.scope.refresh Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.scope.refresh

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • java.util.EventObject (implements java.io.Serializable) +
        +
      • org.springframework.context.ApplicationEvent + +
      • +
      +
    • +
    • org.springframework.cloud.context.scope.GenericScope (implements org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.config.Scope) +
        +
      • org.springframework.cloud.context.scope.refresh.RefreshScope (implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor, org.springframework.core.Ordered)
      • +
      +
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-use.html new file mode 100644 index 00000000..68c18ed4 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/refresh/package-use.html @@ -0,0 +1,209 @@ + + + + + + +Uses of Package org.springframework.cloud.context.scope.refresh (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.scope.refresh

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.html new file mode 100644 index 00000000..56215ccc --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.html @@ -0,0 +1,371 @@ + + + + + + +ThreadLocalScopeCache (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope.thread
+

Class ThreadLocalScopeCache

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    ScopeCache
    +
    +
    +
    +
    public class ThreadLocalScopeCache
    +extends Object
    +implements ScopeCache
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ThreadLocalScopeCache

        +
        public ThreadLocalScopeCache()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        remove

        +
        public Object remove(String name)
        +
        Description copied from interface: ScopeCache
        +
        Remove the object with this name from the cache.
        +
        +
        Specified by:
        +
        remove in interface ScopeCache
        +
        Parameters:
        +
        name - the object name
        +
        Returns:
        +
        the object removed or null if there was none
        +
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public Collection<Object> clear()
        +
        Description copied from interface: ScopeCache
        +
        Clear the cache and return all objects in an unmodifiable collection.
        +
        +
        Specified by:
        +
        clear in interface ScopeCache
        +
        Returns:
        +
        all objects stored in the cache
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public Object get(String name)
        +
        Description copied from interface: ScopeCache
        +
        Get the named object from the cache.
        +
        +
        Specified by:
        +
        get in interface ScopeCache
        +
        Parameters:
        +
        name - the name of the object
        +
        Returns:
        +
        the object with that name or null if there is none
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public Object put(String name,
        +                  Object value)
        +
        Description copied from interface: ScopeCache
        +
        Put a value in the cache if the key is not already used. If one is already present with the name provided, it is + not replaced, but is returned to the caller.
        +
        +
        Specified by:
        +
        put in interface ScopeCache
        +
        Parameters:
        +
        name - the key
        +
        value - the new candidate value
        +
        Returns:
        +
        the value that is in the cache at the end of the operation
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadScope.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadScope.html new file mode 100644 index 00000000..b84313d9 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadScope.html @@ -0,0 +1,279 @@ + + + + + + +ThreadScope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope.thread
+

Class ThreadScope

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.DisposableBean
    +
    +
    +
    +
    public class ThreadScope
    +extends GenericScope
    +
    +
    Since:
    +
    3.1
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ThreadScope

        +
        public ThreadScope()
        +
        Create a scope instance and give it the default name: "thread".
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadLocalScopeCache.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadLocalScopeCache.html new file mode 100644 index 00000000..aa749532 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadLocalScopeCache.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache

+
+
No usage of org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadScope.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadScope.html new file mode 100644 index 00000000..da0a720d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadScope.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.thread.ThreadScope (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.thread.ThreadScope

+
+
No usage of org.springframework.cloud.context.scope.thread.ThreadScope
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-frame.html new file mode 100644 index 00000000..f0ee93a5 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.context.scope.thread (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.scope.thread

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-summary.html new file mode 100644 index 00000000..a58027fc --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-summary.html @@ -0,0 +1,148 @@ + + + + + + +org.springframework.cloud.context.scope.thread (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.scope.thread

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-tree.html new file mode 100644 index 00000000..43248a14 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.context.scope.thread Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.scope.thread

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.scope.GenericScope (implements org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.config.Scope) +
        +
      • org.springframework.cloud.context.scope.thread.ThreadScope
      • +
      +
    • +
    • org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache (implements org.springframework.cloud.context.scope.ScopeCache)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-use.html new file mode 100644 index 00000000..6230d062 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/context/scope/thread/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.context.scope.thread (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.scope.thread

+
+
No usage of org.springframework.cloud.context.scope.thread
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.html new file mode 100644 index 00000000..fd801ae1 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.html @@ -0,0 +1,321 @@ + + + + + + +GenericPostableMvcEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.endpoint
+

Class GenericPostableMvcEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.mvc.AbstractEndpointMvcAdapter<org.springframework.boot.actuate.endpoint.Endpoint<?>>
    • +
    • +
        +
      • org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
      • +
      • +
          +
        • org.springframework.cloud.endpoint.GenericPostableMvcEndpoint
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint, org.springframework.boot.actuate.endpoint.mvc.NamedMvcEndpoint
    +
    +
    +
    +
    public class GenericPostableMvcEndpoint
    +extends org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
    +
    A convenient base class for MVC endpoints that accept a POST (instead of the default + GET).
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint

        +DISABLED_RESPONSE
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GenericPostableMvcEndpoint(org.springframework.boot.actuate.endpoint.Endpoint<?> delegate) 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GenericPostableMvcEndpoint

        +
        public GenericPostableMvcEndpoint(org.springframework.boot.actuate.endpoint.Endpoint<?> delegate)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        invoke

        +
        @RequestMapping(method=POST)
        + @ResponseBody
        +public Object invoke()
        +
        +
        Overrides:
        +
        invoke in class org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/RefreshEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/RefreshEndpoint.html new file mode 100644 index 00000000..a7ab1fc2 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/RefreshEndpoint.html @@ -0,0 +1,310 @@ + + + + + + +RefreshEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.endpoint
+

Class RefreshEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<Collection<String>>
    • +
    • +
        +
      • org.springframework.cloud.endpoint.RefreshEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<Collection<String>>, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @ConfigurationProperties(prefix="endpoints.refresh",
    +                         ignoreUnknownFields=false)
    + @ManagedResource
    +public class RefreshEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<Collection<String>>
    +
    +
    Author:
    +
    Dave Syer, Venil Noronha
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshEndpoint

        +
        public RefreshEndpoint(ContextRefresher contextRefresher)
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/class-use/GenericPostableMvcEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/class-use/GenericPostableMvcEndpoint.html new file mode 100644 index 00000000..fce65cc7 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/class-use/GenericPostableMvcEndpoint.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.endpoint.GenericPostableMvcEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.endpoint.GenericPostableMvcEndpoint

+
+
No usage of org.springframework.cloud.endpoint.GenericPostableMvcEndpoint
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/class-use/RefreshEndpoint.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/class-use/RefreshEndpoint.html new file mode 100644 index 00000000..65a12012 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/class-use/RefreshEndpoint.html @@ -0,0 +1,179 @@ + + + + + + +Uses of Class org.springframework.cloud.endpoint.RefreshEndpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.endpoint.RefreshEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEvent.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEvent.html new file mode 100644 index 00000000..a447e68c --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEvent.html @@ -0,0 +1,340 @@ + + + + + + +RefreshEvent (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.endpoint.event
+

Class RefreshEvent

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshEvent

        +
        public RefreshEvent(Object source,
        +                    Object event,
        +                    String eventDesc)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getEvent

        +
        public Object getEvent()
        +
      • +
      + + + +
        +
      • +

        getEventDesc

        +
        public String getEventDesc()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEventListener.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEventListener.html new file mode 100644 index 00000000..620875c3 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEventListener.html @@ -0,0 +1,294 @@ + + + + + + +RefreshEventListener (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.endpoint.event
+

Class RefreshEventListener

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.endpoint.event.RefreshEventListener
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class RefreshEventListener
    +extends Object
    +
    Calls refresh when a RefreshEvent is received. + Only responds to RefreshEvent after receiving an ApplicationReadyEvent as the RefreshEvent's might come to early in the application lifecycle.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshEventListener

        +
        public RefreshEventListener(ContextRefresher refresh)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        handle

        +
        @EventListener
        +public void handle(org.springframework.boot.context.event.ApplicationReadyEvent event)
        +
      • +
      + + + +
        +
      • +

        handle

        +
        @EventListener
        +public void handle(RefreshEvent event)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEvent.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEvent.html new file mode 100644 index 00000000..a17d5ee7 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEvent.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.endpoint.event.RefreshEvent (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.endpoint.event.RefreshEvent

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEventListener.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEventListener.html new file mode 100644 index 00000000..bef60088 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEventListener.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.endpoint.event.RefreshEventListener (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.endpoint.event.RefreshEventListener

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-frame.html new file mode 100644 index 00000000..b8c76f63 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.endpoint.event (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.endpoint.event

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-summary.html new file mode 100644 index 00000000..a48cb769 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-summary.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.endpoint.event (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.endpoint.event

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-tree.html new file mode 100644 index 00000000..a917d598 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-tree.html @@ -0,0 +1,148 @@ + + + + + + +org.springframework.cloud.endpoint.event Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.endpoint.event

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-use.html new file mode 100644 index 00000000..8727bde7 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/event/package-use.html @@ -0,0 +1,182 @@ + + + + + + +Uses of Package org.springframework.cloud.endpoint.event (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.endpoint.event

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-frame.html new file mode 100644 index 00000000..f5e338c8 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.endpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.endpoint

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-summary.html new file mode 100644 index 00000000..8c64cf46 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-summary.html @@ -0,0 +1,151 @@ + + + + + + +org.springframework.cloud.endpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.endpoint

+
+
+
    +
  • + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    GenericPostableMvcEndpoint +
    A convenient base class for MVC endpoints that accept a POST (instead of the default + GET).
    +
    RefreshEndpoint 
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-tree.html new file mode 100644 index 00000000..2967d2e7 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.endpoint Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.endpoint

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<T> (implements org.springframework.boot.actuate.endpoint.Endpoint<T>, org.springframework.context.EnvironmentAware) + +
    • +
    • org.springframework.boot.actuate.endpoint.mvc.AbstractEndpointMvcAdapter<E> (implements org.springframework.boot.actuate.endpoint.mvc.NamedMvcEndpoint) +
        +
      • org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter + +
      • +
      +
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-use.html new file mode 100644 index 00000000..dcdeac0b --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/endpoint/package-use.html @@ -0,0 +1,159 @@ + + + + + + +Uses of Package org.springframework.cloud.endpoint (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.endpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/health/RefreshScopeHealthIndicator.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/RefreshScopeHealthIndicator.html new file mode 100644 index 00000000..28c3988d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/RefreshScopeHealthIndicator.html @@ -0,0 +1,305 @@ + + + + + + +RefreshScopeHealthIndicator (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.health
+

Class RefreshScopeHealthIndicator

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.health.AbstractHealthIndicator
    • +
    • +
        +
      • org.springframework.cloud.health.RefreshScopeHealthIndicator
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.health.HealthIndicator
    +
    +
    +
    +
    public class RefreshScopeHealthIndicator
    +extends org.springframework.boot.actuate.health.AbstractHealthIndicator
    +
    Health indicator for the refresh scope and configuration properties rebinding. If an + environment change causes a bean to fail in instantiate or bind this indicator will + generally say what the problem was and switch to DOWN.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        doHealthCheck

        +
        protected void doHealthCheck(org.springframework.boot.actuate.health.Health.Builder builder)
        +                      throws Exception
        +
        +
        Specified by:
        +
        doHealthCheck in class org.springframework.boot.actuate.health.AbstractHealthIndicator
        +
        Throws:
        +
        Exception
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/health/class-use/RefreshScopeHealthIndicator.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/class-use/RefreshScopeHealthIndicator.html new file mode 100644 index 00000000..da90c60d --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/class-use/RefreshScopeHealthIndicator.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.health.RefreshScopeHealthIndicator (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.health.RefreshScopeHealthIndicator

+
+
No usage of org.springframework.cloud.health.RefreshScopeHealthIndicator
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-frame.html new file mode 100644 index 00000000..7f5b444c --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.health (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.health

+ + + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-summary.html new file mode 100644 index 00000000..343eaff4 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +org.springframework.cloud.health (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.health

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    RefreshScopeHealthIndicator +
    Health indicator for the refresh scope and configuration properties rebinding.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-tree.html new file mode 100644 index 00000000..5b96a592 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-tree.html @@ -0,0 +1,143 @@ + + + + + + +org.springframework.cloud.health Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.health

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.health.AbstractHealthIndicator (implements org.springframework.boot.actuate.health.HealthIndicator) + +
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-use.html new file mode 100644 index 00000000..d9806f76 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/health/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.health (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.health

+
+
No usage of org.springframework.cloud.health
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/LoggingRebinder.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/LoggingRebinder.html new file mode 100644 index 00000000..7bba5030 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/LoggingRebinder.html @@ -0,0 +1,320 @@ + + + + + + +LoggingRebinder (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.logging
+

Class LoggingRebinder

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationListener<EnvironmentChangeEvent>, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    public class LoggingRebinder
    +extends Object
    +implements org.springframework.context.ApplicationListener<EnvironmentChangeEvent>, org.springframework.context.EnvironmentAware
    +
    Listener that looks for EnvironmentChangeEvent and rebinds logger levels if any + changed.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoggingRebinder

        +
        public LoggingRebinder()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setEnvironment

        +
        public void setEnvironment(org.springframework.core.env.Environment environment)
        +
        +
        Specified by:
        +
        setEnvironment in interface org.springframework.context.EnvironmentAware
        +
        +
      • +
      + + + + + + + +
        +
      • +

        setLogLevels

        +
        protected void setLogLevels(org.springframework.boot.logging.LoggingSystem system,
        +                            org.springframework.core.env.Environment environment)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/class-use/LoggingRebinder.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/class-use/LoggingRebinder.html new file mode 100644 index 00000000..fad4b8c2 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/class-use/LoggingRebinder.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.logging.LoggingRebinder (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.logging.LoggingRebinder

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-frame.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-frame.html new file mode 100644 index 00000000..1ca9ccad --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.logging (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.logging

+
+

Classes

+ +
+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-summary.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-summary.html new file mode 100644 index 00000000..029d2d51 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-summary.html @@ -0,0 +1,147 @@ + + + + + + +org.springframework.cloud.logging (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.logging

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-tree.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-tree.html new file mode 100644 index 00000000..495d0853 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +org.springframework.cloud.logging Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.logging

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.logging.LoggingRebinder (implements org.springframework.context.ApplicationListener<E>, org.springframework.context.EnvironmentAware)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-use.html b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-use.html new file mode 100644 index 00000000..2bda0253 --- /dev/null +++ b/spring-cloud-context/target/apidocs/org/springframework/cloud/logging/package-use.html @@ -0,0 +1,162 @@ + + + + + + +Uses of Package org.springframework.cloud.logging (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.logging

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/overview-frame.html b/spring-cloud-context/target/apidocs/overview-frame.html new file mode 100644 index 00000000..d3a86f53 --- /dev/null +++ b/spring-cloud-context/target/apidocs/overview-frame.html @@ -0,0 +1,40 @@ + + + + + + +Overview List (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + +

 

+ + diff --git a/spring-cloud-context/target/apidocs/overview-summary.html b/spring-cloud-context/target/apidocs/overview-summary.html new file mode 100644 index 00000000..a5242668 --- /dev/null +++ b/spring-cloud-context/target/apidocs/overview-summary.html @@ -0,0 +1,212 @@ + + + + + + +Overview (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API

+
+ + +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/overview-tree.html b/spring-cloud-context/target/apidocs/overview-tree.html new file mode 100644 index 00000000..ba488d98 --- /dev/null +++ b/spring-cloud-context/target/apidocs/overview-tree.html @@ -0,0 +1,261 @@ + + + + + + +Class Hierarchy (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/package-list b/spring-cloud-context/target/apidocs/package-list new file mode 100644 index 00000000..74e48791 --- /dev/null +++ b/spring-cloud-context/target/apidocs/package-list @@ -0,0 +1,19 @@ +org.springframework.cloud.autoconfigure +org.springframework.cloud.bootstrap +org.springframework.cloud.bootstrap.config +org.springframework.cloud.bootstrap.encrypt +org.springframework.cloud.context.config +org.springframework.cloud.context.config.annotation +org.springframework.cloud.context.encrypt +org.springframework.cloud.context.environment +org.springframework.cloud.context.named +org.springframework.cloud.context.properties +org.springframework.cloud.context.refresh +org.springframework.cloud.context.restart +org.springframework.cloud.context.scope +org.springframework.cloud.context.scope.refresh +org.springframework.cloud.context.scope.thread +org.springframework.cloud.endpoint +org.springframework.cloud.endpoint.event +org.springframework.cloud.health +org.springframework.cloud.logging diff --git a/spring-cloud-context/target/apidocs/script.js b/spring-cloud-context/target/apidocs/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/spring-cloud-context/target/apidocs/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/spring-cloud-context/target/apidocs/serialized-form.html b/spring-cloud-context/target/apidocs/serialized-form.html new file mode 100644 index 00000000..f246e2c9 --- /dev/null +++ b/spring-cloud-context/target/apidocs/serialized-form.html @@ -0,0 +1,206 @@ + + + + + + +Serialized Form (Spring Cloud Context 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Serialized Form

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-context/target/apidocs/stylesheet.css b/spring-cloud-context/target/apidocs/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/spring-cloud-context/target/apidocs/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/spring-cloud-context/target/classes/META-INF/additional-spring-configuration-metadata.json b/spring-cloud-context/target/classes/META-INF/additional-spring-configuration-metadata.json new file mode 100644 index 00000000..ee6cf34b --- /dev/null +++ b/spring-cloud-context/target/classes/META-INF/additional-spring-configuration-metadata.json @@ -0,0 +1,39 @@ +{"properties": [ + { + "name": "management.health.refresh.enabled", + "type": "java.lang.Boolean", + "description": "Enable the health endpoint for the refresh scope.", + "defaultValue": true + }, + { + "name": "endpoints.env.post.enabled", + "type": "java.lang.Boolean", + "description": "Enable changing the Environment through a POST to /env.", + "defaultValue": true + }, + { + "name": "endpoints.refresh.enabled", + "type": "java.lang.Boolean", + "description": "Enable the /refresh endpoint to refresh configuration and re-initialize refresh scoped beans.", + "defaultValue": true + }, + { + "name": "endpoints.restart.enabled", + "type": "java.lang.Boolean", + "description": "Enable the /restart endpoint to restart the application context.", + "defaultValue": true + }, + { + "name": "endpoints.pause.enabled", + "type": "java.lang.Boolean", + "description": "Enable the /pause endpoint (to send Lifecycle.stop()).", + "defaultValue": true + }, + { + "name": "endpoints.resume.enabled", + "type": "java.lang.Boolean", + "description": "Enable the /resume endpoint (to send Lifecycle.start()).", + "defaultValue": true + } +]} + diff --git a/spring-cloud-context/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-context/target/classes/META-INF/spring-configuration-metadata.json new file mode 100644 index 00000000..aeb78566 --- /dev/null +++ b/spring-cloud-context/target/classes/META-INF/spring-configuration-metadata.json @@ -0,0 +1,297 @@ +{ + "hints": [], + "groups": [ + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties", + "name": "encrypt", + "type": "org.springframework.cloud.bootstrap.encrypt.KeyProperties" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties", + "name": "encrypt.key-store", + "sourceMethod": "getKeyStore()", + "type": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$KeyStore" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties", + "name": "encrypt.rsa", + "sourceMethod": "getRsa()", + "type": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$Rsa" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints", + "type": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints", + "type": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint" + }, + { + "sourceType": "org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration", + "name": "endpoints.pause", + "sourceMethod": "pauseEndpoint(org.springframework.cloud.context.restart.RestartEndpoint)", + "type": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint" + }, + { + "sourceType": "org.springframework.cloud.endpoint.RefreshEndpoint", + "name": "endpoints.refresh", + "type": "org.springframework.cloud.endpoint.RefreshEndpoint" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint", + "name": "endpoints.restart", + "type": "org.springframework.cloud.context.restart.RestartEndpoint" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint", + "name": "endpoints.restart.pause-endpoint", + "sourceMethod": "getPauseEndpoint()", + "type": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint", + "name": "endpoints.restart.resume-endpoint", + "sourceMethod": "getResumeEndpoint()", + "type": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint" + }, + { + "sourceType": "org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration", + "name": "endpoints.resume", + "sourceMethod": "resumeEndpoint(org.springframework.cloud.context.restart.RestartEndpoint)", + "type": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties", + "name": "spring.cloud.config", + "type": "org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties" + } + ], + "properties": [ + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties", + "defaultValue": true, + "name": "encrypt.fail-on-error", + "description": "Flag to say that a process should fail if there is an encryption or decryption\n error.", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties", + "name": "encrypt.key", + "description": "A symmetric key. As a stronger alternative consider using a keystore.", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$KeyStore", + "name": "encrypt.key-store.alias", + "description": "Alias for a key in the store.", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$KeyStore", + "name": "encrypt.key-store.location", + "description": "Location of the key store file, e.g. classpath:\/keystore.jks.", + "type": "org.springframework.core.io.Resource" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$KeyStore", + "name": "encrypt.key-store.password", + "description": "Password that locks the keystore.", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$KeyStore", + "name": "encrypt.key-store.secret", + "description": "Secret protecting the key (defaults to the same as the password).", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$Rsa", + "name": "encrypt.rsa.algorithm", + "description": "The RSA algorithm to use (DEFAULT or OEAP). Once it is set do not change it (or\n existing ciphers will not a decryptable).", + "type": "org.springframework.security.rsa.crypto.RsaAlgorithm" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$Rsa", + "defaultValue": "deadbeef", + "name": "encrypt.rsa.salt", + "description": "Salt for the random secret used to encrypt cipher text. Once it is set do not\n change it (or existing ciphers will not a decryptable).", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.encrypt.KeyProperties$Rsa", + "defaultValue": false, + "name": "encrypt.rsa.strong", + "description": "Flag to indicate that \"strong\" AES encryption should be used internally. If\n true then the GCM algorithm is applied to the AES encrypted bytes. Default is\n false (in which case \"standard\" CBC is used instead). Once it is set do not\n change it (or existing ciphers will not a decryptable).", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints.enabled", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints.enabled", + "type": "java.lang.Boolean" + }, + { + "defaultValue": true, + "name": "endpoints.env.post.enabled", + "description": "Enable changing the Environment through a POST to \/env.", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "defaultValue": true, + "name": "endpoints.pause.enabled", + "description": "Enable the \/pause endpoint (to send Lifecycle.stop()).", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints.pause.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints.pause.sensitive", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.endpoint.RefreshEndpoint", + "defaultValue": true, + "name": "endpoints.refresh.enabled", + "description": "Enable the \/refresh endpoint to refresh configuration and re-initialize refresh scoped beans.", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.endpoint.RefreshEndpoint", + "name": "endpoints.refresh.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.endpoint.RefreshEndpoint", + "name": "endpoints.refresh.sensitive", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint", + "defaultValue": true, + "name": "endpoints.restart.enabled", + "description": "Enable the \/restart endpoint to restart the application context.", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint", + "name": "endpoints.restart.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints.restart.pause-endpoint.enabled", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints.restart.pause-endpoint.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints.restart.pause-endpoint.sensitive", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints.restart.resume-endpoint.enabled", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints.restart.resume-endpoint.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints.restart.resume-endpoint.sensitive", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint", + "name": "endpoints.restart.sensitive", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint", + "defaultValue": 0, + "name": "endpoints.restart.timeout", + "type": "java.lang.Long" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "defaultValue": true, + "name": "endpoints.resume.enabled", + "description": "Enable the \/resume endpoint (to send Lifecycle.start()).", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints.resume.id", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints.resume.sensitive", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$PauseEndpoint", + "name": "endpoints.sensitive", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.context.restart.RestartEndpoint$ResumeEndpoint", + "name": "endpoints.sensitive", + "type": "java.lang.Boolean" + }, + { + "defaultValue": true, + "name": "management.health.refresh.enabled", + "description": "Enable the health endpoint for the refresh scope.", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties", + "defaultValue": true, + "name": "spring.cloud.config.allow-override", + "description": "Flag to indicate that {@link #isSystemPropertiesOverride()\n systemPropertiesOverride} can be used. Set to false to prevent users from changing\n the default accidentally. Default true.", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties", + "defaultValue": false, + "name": "spring.cloud.config.override-none", + "description": "Flag to indicate that when {@link #setAllowOverride(boolean) allowOverride} is\n true, external properties should take lowest priority, and not override any\n existing property sources (including local config files). Default false.", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties", + "defaultValue": true, + "name": "spring.cloud.config.override-system-properties", + "description": "Flag to indicate that the external properties should override system properties.\n Default true.", + "type": "java.lang.Boolean" + } + ] +} \ No newline at end of file diff --git a/spring-cloud-context/target/classes/META-INF/spring.factories b/spring-cloud-context/target/classes/META-INF/spring.factories new file mode 100644 index 00000000..ddf6a5b0 --- /dev/null +++ b/spring-cloud-context/target/classes/META-INF/spring.factories @@ -0,0 +1,19 @@ +# AutoConfiguration +org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ +org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration,\ +org.springframework.cloud.autoconfigure.RefreshAutoConfiguration,\ +org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration,\ +org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration + +# Application Listeners +org.springframework.context.ApplicationListener=\ +org.springframework.cloud.bootstrap.BootstrapApplicationListener,\ +org.springframework.cloud.bootstrap.LoggingSystemShutdownListener,\ +org.springframework.cloud.context.restart.RestartListener + +# Bootstrap components +org.springframework.cloud.bootstrap.BootstrapConfiguration=\ +org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration,\ +org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration,\ +org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration,\ +org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration \ No newline at end of file diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.class new file mode 100644 index 00000000..de0b3e78 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.class new file mode 100644 index 00000000..89b51b9f Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration$RefreshScopeConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration$RefreshScopeConfiguration.class new file mode 100644 index 00000000..58f22e6d Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration$RefreshScopeConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.class new file mode 100644 index 00000000..8dd72d2e Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RefreshEndpointConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RefreshEndpointConfiguration.class new file mode 100644 index 00000000..9a4071b7 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RefreshEndpointConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RestartEndpointWithIntegration.class b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RestartEndpointWithIntegration.class new file mode 100644 index 00000000..02c99bda Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RestartEndpointWithIntegration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RestartEndpointWithoutIntegration.class b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RestartEndpointWithoutIntegration.class new file mode 100644 index 00000000..a53dc61a Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RestartEndpointWithoutIntegration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.class new file mode 100644 index 00000000..604dcf59 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$AncestorInitializer.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$AncestorInitializer.class new file mode 100644 index 00000000..0aa49a4f Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$AncestorInitializer.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$DelegatingEnvironmentDecryptApplicationInitializer.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$DelegatingEnvironmentDecryptApplicationInitializer.class new file mode 100644 index 00000000..d1494bfd Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$DelegatingEnvironmentDecryptApplicationInitializer.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$ExtendedDefaultPropertySource.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$ExtendedDefaultPropertySource.class new file mode 100644 index 00000000..0a404442 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener$ExtendedDefaultPropertySource.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener.class new file mode 100644 index 00000000..93e2134b Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapApplicationListener.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapConfiguration.class new file mode 100644 index 00000000..3d09a0bf Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/BootstrapConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.class new file mode 100644 index 00000000..accc8e50 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.class new file mode 100644 index 00000000..8690b853 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.class new file mode 100644 index 00000000..c34c1264 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceLocator.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceLocator.class new file mode 100644 index 00000000..2e558248 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/config/PropertySourceLocator.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$FailsafeTextEncryptor.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$FailsafeTextEncryptor.class new file mode 100644 index 00000000..fa36115f Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$FailsafeTextEncryptor.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$KeyCondition.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$KeyCondition.class new file mode 100644 index 00000000..743022ea Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$KeyCondition.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$RsaEncryptionConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$RsaEncryptionConfiguration.class new file mode 100644 index 00000000..5143af8c Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$RsaEncryptionConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$VanillaEncryptionConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$VanillaEncryptionConfiguration.class new file mode 100644 index 00000000..4cc19768 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$VanillaEncryptionConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.class new file mode 100644 index 00000000..9040a61e Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.class new file mode 100644 index 00000000..05340fdc Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties$KeyStore.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties$KeyStore.class new file mode 100644 index 00000000..e49e775c Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties$KeyStore.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties$Rsa.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties$Rsa.class new file mode 100644 index 00000000..641f8234 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties$Rsa.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties.class b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties.class new file mode 100644 index 00000000..40e297b4 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/bootstrap/encrypt/KeyProperties.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/config/BeanLifecycleDecorator$Context.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/BeanLifecycleDecorator$Context.class new file mode 100644 index 00000000..939b62f4 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/BeanLifecycleDecorator$Context.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/config/BeanLifecycleDecorator.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/BeanLifecycleDecorator.class new file mode 100644 index 00000000..781db43d Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/BeanLifecycleDecorator.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator$1.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator$1.class new file mode 100644 index 00000000..04b68261 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator$1.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator$2.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator$2.class new file mode 100644 index 00000000..751e152d Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator$2.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.class new file mode 100644 index 00000000..1ff890a7 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/config/annotation/RefreshScope.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/annotation/RefreshScope.class new file mode 100644 index 00000000..5a19c02d Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/config/annotation/RefreshScope.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/encrypt/EncryptorFactory.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/encrypt/EncryptorFactory.class new file mode 100644 index 00000000..ef9d517a Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/encrypt/EncryptorFactory.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/encrypt/KeyFormatException.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/encrypt/KeyFormatException.class new file mode 100644 index 00000000..970fb74c Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/encrypt/KeyFormatException.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentChangeEvent.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentChangeEvent.class new file mode 100644 index 00000000..a3211054 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentChangeEvent.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentManager.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentManager.class new file mode 100644 index 00000000..e5da718e Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentManager.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.class new file mode 100644 index 00000000..be25cf5d Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/named/NamedContextFactory$Specification.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/named/NamedContextFactory$Specification.class new file mode 100644 index 00000000..6a4b2213 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/named/NamedContextFactory$Specification.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/named/NamedContextFactory.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/named/NamedContextFactory.class new file mode 100644 index 00000000..9d8c1d3f Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/named/NamedContextFactory.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.class new file mode 100644 index 00000000..62d6c0ed Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.class new file mode 100644 index 00000000..76be2220 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/refresh/ContextRefresher$Empty.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/refresh/ContextRefresher$Empty.class new file mode 100644 index 00000000..f662e940 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/refresh/ContextRefresher$Empty.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/refresh/ContextRefresher.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/refresh/ContextRefresher.class new file mode 100644 index 00000000..d9f38c14 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/refresh/ContextRefresher.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$IntegrationShutdown.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$IntegrationShutdown.class new file mode 100644 index 00000000..60935999 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$IntegrationShutdown.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$PauseEndpoint.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$PauseEndpoint.class new file mode 100644 index 00000000..9463dbd4 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$PauseEndpoint.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$ResumeEndpoint.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$ResumeEndpoint.class new file mode 100644 index 00000000..a31d4ccb Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint$ResumeEndpoint.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint.class new file mode 100644 index 00000000..59e6205c Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartEndpoint.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartListener.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartListener.class new file mode 100644 index 00000000..4ae9b9c0 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartListener.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartMvcEndpoint$1.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartMvcEndpoint$1.class new file mode 100644 index 00000000..b2c8b446 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartMvcEndpoint$1.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartMvcEndpoint.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartMvcEndpoint.class new file mode 100644 index 00000000..0aabaee7 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/restart/RestartMvcEndpoint.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope$BeanLifecycleWrapper.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope$BeanLifecycleWrapper.class new file mode 100644 index 00000000..d1ffd59f Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope$BeanLifecycleWrapper.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope$BeanLifecycleWrapperCache.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope$BeanLifecycleWrapperCache.class new file mode 100644 index 00000000..3dfa696e Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope$BeanLifecycleWrapperCache.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope.class new file mode 100644 index 00000000..80acf576 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/GenericScope.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/ScopeCache.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/ScopeCache.class new file mode 100644 index 00000000..3cf9fa8a Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/ScopeCache.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/StandardScopeCache.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/StandardScopeCache.class new file mode 100644 index 00000000..850837db Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/StandardScopeCache.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/refresh/RefreshScope.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/refresh/RefreshScope.class new file mode 100644 index 00000000..cf69dc11 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/refresh/RefreshScope.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.class new file mode 100644 index 00000000..874c6a58 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache$1.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache$1.class new file mode 100644 index 00000000..c8bb03c3 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache$1.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.class new file mode 100644 index 00000000..54e653d1 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadScope.class b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadScope.class new file mode 100644 index 00000000..b41a160f Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/context/scope/thread/ThreadScope.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.class b/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.class new file mode 100644 index 00000000..6c7f9177 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/RefreshEndpoint.class b/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/RefreshEndpoint.class new file mode 100644 index 00000000..f4da4e6c Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/RefreshEndpoint.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/event/RefreshEvent.class b/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/event/RefreshEvent.class new file mode 100644 index 00000000..2832856f Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/event/RefreshEvent.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/event/RefreshEventListener.class b/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/event/RefreshEventListener.class new file mode 100644 index 00000000..458e9b82 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/endpoint/event/RefreshEventListener.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/health/RefreshScopeHealthIndicator.class b/spring-cloud-context/target/classes/org/springframework/cloud/health/RefreshScopeHealthIndicator.class new file mode 100644 index 00000000..090d86bd Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/health/RefreshScopeHealthIndicator.class differ diff --git a/spring-cloud-context/target/classes/org/springframework/cloud/logging/LoggingRebinder.class b/spring-cloud-context/target/classes/org/springframework/cloud/logging/LoggingRebinder.class new file mode 100644 index 00000000..d9942dc5 Binary files /dev/null and b/spring-cloud-context/target/classes/org/springframework/cloud/logging/LoggingRebinder.class differ diff --git a/spring-cloud-context/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-context/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 00000000..8b89c977 --- /dev/null +++ b/spring-cloud-context/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/spring-cloud-context/target/javadoc-bundle-options/package-list b/spring-cloud-context/target/javadoc-bundle-options/package-list new file mode 100644 index 00000000..b52fe94b --- /dev/null +++ b/spring-cloud-context/target/javadoc-bundle-options/package-list @@ -0,0 +1,209 @@ +java.applet +java.awt +java.awt.color +java.awt.datatransfer +java.awt.dnd +java.awt.event +java.awt.font +java.awt.geom +java.awt.im +java.awt.im.spi +java.awt.image +java.awt.image.renderable +java.awt.print +java.beans +java.beans.beancontext +java.io +java.lang +java.lang.annotation +java.lang.instrument +java.lang.invoke +java.lang.management +java.lang.ref +java.lang.reflect +java.math +java.net +java.nio +java.nio.channels +java.nio.channels.spi +java.nio.charset +java.nio.charset.spi +java.nio.file +java.nio.file.attribute +java.nio.file.spi +java.rmi +java.rmi.activation +java.rmi.dgc +java.rmi.registry +java.rmi.server +java.security +java.security.acl +java.security.cert +java.security.interfaces +java.security.spec +java.sql +java.text +java.text.spi +java.util +java.util.concurrent +java.util.concurrent.atomic +java.util.concurrent.locks +java.util.jar +java.util.logging +java.util.prefs +java.util.regex +java.util.spi +java.util.zip +javax.accessibility +javax.activation +javax.activity +javax.annotation +javax.annotation.processing +javax.crypto +javax.crypto.interfaces +javax.crypto.spec +javax.imageio +javax.imageio.event +javax.imageio.metadata +javax.imageio.plugins.bmp +javax.imageio.plugins.jpeg +javax.imageio.spi +javax.imageio.stream +javax.jws +javax.jws.soap +javax.lang.model +javax.lang.model.element +javax.lang.model.type +javax.lang.model.util +javax.management +javax.management.loading +javax.management.modelmbean +javax.management.monitor +javax.management.openmbean +javax.management.relation +javax.management.remote +javax.management.remote.rmi +javax.management.timer +javax.naming +javax.naming.directory +javax.naming.event +javax.naming.ldap +javax.naming.spi +javax.net +javax.net.ssl +javax.print +javax.print.attribute +javax.print.attribute.standard +javax.print.event +javax.rmi +javax.rmi.CORBA +javax.rmi.ssl +javax.script +javax.security.auth +javax.security.auth.callback +javax.security.auth.kerberos +javax.security.auth.login +javax.security.auth.spi +javax.security.auth.x500 +javax.security.cert +javax.security.sasl +javax.sound.midi +javax.sound.midi.spi +javax.sound.sampled +javax.sound.sampled.spi +javax.sql +javax.sql.rowset +javax.sql.rowset.serial +javax.sql.rowset.spi +javax.swing +javax.swing.border +javax.swing.colorchooser +javax.swing.event +javax.swing.filechooser +javax.swing.plaf +javax.swing.plaf.basic +javax.swing.plaf.metal +javax.swing.plaf.multi +javax.swing.plaf.nimbus +javax.swing.plaf.synth +javax.swing.table +javax.swing.text +javax.swing.text.html +javax.swing.text.html.parser +javax.swing.text.rtf +javax.swing.tree +javax.swing.undo +javax.tools +javax.transaction +javax.transaction.xa +javax.xml +javax.xml.bind +javax.xml.bind.annotation +javax.xml.bind.annotation.adapters +javax.xml.bind.attachment +javax.xml.bind.helpers +javax.xml.bind.util +javax.xml.crypto +javax.xml.crypto.dom +javax.xml.crypto.dsig +javax.xml.crypto.dsig.dom +javax.xml.crypto.dsig.keyinfo +javax.xml.crypto.dsig.spec +javax.xml.datatype +javax.xml.namespace +javax.xml.parsers +javax.xml.soap +javax.xml.stream +javax.xml.stream.events +javax.xml.stream.util +javax.xml.transform +javax.xml.transform.dom +javax.xml.transform.sax +javax.xml.transform.stax +javax.xml.transform.stream +javax.xml.validation +javax.xml.ws +javax.xml.ws.handler +javax.xml.ws.handler.soap +javax.xml.ws.http +javax.xml.ws.soap +javax.xml.ws.spi +javax.xml.ws.spi.http +javax.xml.ws.wsaddressing +javax.xml.xpath +org.ietf.jgss +org.omg.CORBA +org.omg.CORBA.DynAnyPackage +org.omg.CORBA.ORBPackage +org.omg.CORBA.TypeCodePackage +org.omg.CORBA.portable +org.omg.CORBA_2_3 +org.omg.CORBA_2_3.portable +org.omg.CosNaming +org.omg.CosNaming.NamingContextExtPackage +org.omg.CosNaming.NamingContextPackage +org.omg.Dynamic +org.omg.DynamicAny +org.omg.DynamicAny.DynAnyFactoryPackage +org.omg.DynamicAny.DynAnyPackage +org.omg.IOP +org.omg.IOP.CodecFactoryPackage +org.omg.IOP.CodecPackage +org.omg.Messaging +org.omg.PortableInterceptor +org.omg.PortableInterceptor.ORBInitInfoPackage +org.omg.PortableServer +org.omg.PortableServer.CurrentPackage +org.omg.PortableServer.POAManagerPackage +org.omg.PortableServer.POAPackage +org.omg.PortableServer.ServantLocatorPackage +org.omg.PortableServer.portable +org.omg.SendingContext +org.omg.stub.java.rmi +org.w3c.dom +org.w3c.dom.bootstrap +org.w3c.dom.events +org.w3c.dom.ls +org.xml.sax +org.xml.sax.ext +org.xml.sax.helpers diff --git a/spring-cloud-context/target/maven-archiver/pom.properties b/spring-cloud-context/target/maven-archiver/pom.properties new file mode 100644 index 00000000..43e26e0e --- /dev/null +++ b/spring-cloud-context/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Created by Apache Maven 3.3.9 +#Tue Apr 04 02:50:27 UTC 2017 +version=1.2.0.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-context diff --git a/spring-cloud-context/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-context/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..324167dc --- /dev/null +++ b/spring-cloud-context/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,67 @@ +org/springframework/cloud/context/restart/RestartEndpoint.class +org/springframework/cloud/endpoint/event/RefreshEventListener.class +org/springframework/cloud/context/scope/thread/ThreadScope.class +org/springframework/cloud/context/config/StandardBeanLifecycleDecorator$1.class +org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RestartEndpointWithIntegration.class +org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.class +org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.class +org/springframework/cloud/bootstrap/BootstrapConfiguration.class +org/springframework/cloud/context/scope/ScopeCache.class +org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$KeyCondition.class +org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.class +org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.class +org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.class +org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.class +org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$FailsafeTextEncryptor.class +org/springframework/cloud/logging/LoggingRebinder.class +org/springframework/cloud/context/restart/RestartMvcEndpoint.class +org/springframework/cloud/context/encrypt/KeyFormatException.class +org/springframework/cloud/bootstrap/BootstrapApplicationListener$ExtendedDefaultPropertySource.class +org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.class +org/springframework/cloud/autoconfigure/RefreshAutoConfiguration$RefreshScopeConfiguration.class +org/springframework/cloud/context/config/StandardBeanLifecycleDecorator$2.class +org/springframework/cloud/health/RefreshScopeHealthIndicator.class +org/springframework/cloud/context/restart/RestartListener.class +org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RestartEndpointWithoutIntegration.class +org/springframework/cloud/context/scope/StandardScopeCache.class +org/springframework/cloud/context/refresh/ContextRefresher.class +org/springframework/cloud/context/restart/RestartEndpoint$ResumeEndpoint.class +org/springframework/cloud/bootstrap/encrypt/KeyProperties$Rsa.class +org/springframework/cloud/context/named/NamedContextFactory$Specification.class +org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.class +org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache$1.class +org/springframework/cloud/context/config/BeanLifecycleDecorator.class +org/springframework/cloud/context/config/BeanLifecycleDecorator$Context.class +org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.class +org/springframework/cloud/endpoint/event/RefreshEvent.class +org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.class +org/springframework/cloud/bootstrap/config/PropertySourceLocator.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.class +org/springframework/cloud/context/encrypt/EncryptorFactory.class +org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.class +org/springframework/cloud/bootstrap/BootstrapApplicationListener$AncestorInitializer.class +org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$VanillaEncryptionConfiguration.class +org/springframework/cloud/bootstrap/BootstrapApplicationListener$DelegatingEnvironmentDecryptApplicationInitializer.class +org/springframework/cloud/bootstrap/encrypt/KeyProperties.class +org/springframework/cloud/context/config/annotation/RefreshScope.class +META-INF/spring-configuration-metadata.json +org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration$RefreshEndpointConfiguration.class +org/springframework/cloud/context/scope/GenericScope.class +org/springframework/cloud/context/restart/RestartEndpoint$IntegrationShutdown.class +org/springframework/cloud/context/scope/refresh/RefreshScope.class +org/springframework/cloud/endpoint/RefreshEndpoint.class +org/springframework/cloud/bootstrap/encrypt/KeyProperties$KeyStore.class +org/springframework/cloud/context/environment/EnvironmentChangeEvent.class +org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.class +org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.class +org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration$RsaEncryptionConfiguration.class +org/springframework/cloud/context/scope/GenericScope$BeanLifecycleWrapperCache.class +org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.class +org/springframework/cloud/context/refresh/ContextRefresher$Empty.class +org/springframework/cloud/context/restart/RestartMvcEndpoint$1.class +org/springframework/cloud/context/environment/EnvironmentManager.class +org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.class +org/springframework/cloud/context/restart/RestartEndpoint$PauseEndpoint.class +org/springframework/cloud/context/scope/GenericScope$BeanLifecycleWrapper.class +org/springframework/cloud/bootstrap/BootstrapApplicationListener.class +org/springframework/cloud/context/named/NamedContextFactory.class diff --git a/spring-cloud-context/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-context/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..eba8c8c0 --- /dev/null +++ b/spring-cloud-context/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,41 @@ +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/PropertySourceLocator.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/scope/thread/ThreadScope.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/BootstrapConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/config/BeanLifecycleDecorator.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/BootstrapApplicationListener.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/named/NamedContextFactory.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/endpoint/event/RefreshEvent.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/environment/EnvironmentManager.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/restart/RestartListener.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/scope/refresh/RefreshScope.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/endpoint/event/RefreshEventListener.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/logging/LoggingRebinder.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/restart/RestartMvcEndpoint.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/encrypt/EncryptorFactory.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/encrypt/KeyFormatException.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/scope/StandardScopeCache.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/scope/GenericScope.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/refresh/ContextRefresher.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/restart/RestartEndpoint.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/endpoint/RefreshEndpoint.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/bootstrap/encrypt/KeyProperties.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/health/RefreshScopeHealthIndicator.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/config/annotation/RefreshScope.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/environment/EnvironmentChangeEvent.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/main/java/org/springframework/cloud/context/scope/ScopeCache.java diff --git a/spring-cloud-context/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-context/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 00000000..97ed4a02 --- /dev/null +++ b/spring-cloud-context/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1,117 @@ +org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$Service.class +org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$TestProperties.class +org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$Controller.class +org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$ExampleService.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$Interceptor.class +org/springframework/cloud/context/named/NamedContextFactoryTests$FooConfig.class +org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$ExampleService.class +org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests$TestConfiguration.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$TestProperties.class +org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests$Application.class +org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests.class +org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestProperties.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$ClientApp.class +org/springframework/cloud/context/named/NamedContextFactoryTests$BarConfig.class +org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$TestProperties.class +org/springframework/cloud/context/restart/RestartIntegrationTests$TestConfiguration.class +org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests$Config.class +org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests.class +org/springframework/cloud/endpoint/RefreshEndpointTests$ExternalPropertySourceLocator.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$RefreshConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests.class +org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests.class +org/springframework/cloud/context/named/NamedContextFactoryTests.class +org/springframework/cloud/health/RefreshScopeHealthIndicatorTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests$Application.class +org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestConfiguration.class +org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests.class +org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests$Config.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$RefreshConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests$TestProperties.class +org/springframework/cloud/bootstrap/TestHigherPriorityBootstrapConfiguration.class +org/springframework/cloud/bootstrap/MessageSourceConfigurationTests.class +org/springframework/cloud/context/named/NamedContextFactoryTests$TestSpec.class +org/springframework/cloud/bootstrap/TestBootstrapConfiguration.class +org/springframework/cloud/bootstrap/TestBootstrapConfiguration$1.class +org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests.class +org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests$Application.class +META-INF/spring-configuration-metadata.json +org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$Service.class +org/springframework/cloud/context/named/NamedContextFactoryTests$BaseConfig.class +org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$ExampleService.class +org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests$TestProperties.class +org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$TestConfiguration.class +org/springframework/cloud/context/restart/RestartIntegrationTests.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$1.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$TestConfiguration.class +org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests$BasicConfiguration.class +org/springframework/cloud/bootstrap/MessageSourceConfigurationTests$TestApplication.class +org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$TestProperties.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$TestProperties.class +org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$TestProperties.class +org/springframework/cloud/context/named/NamedContextFactoryTests$Baz.class +org/springframework/cloud/logging/LoggingRebinderTests.class +org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests$RootConfiguration.class +org/springframework/cloud/context/named/NamedContextFactoryTests$TestClientFactory.class +org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests$TestBean.class +org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests$Application.class +org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$1.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests.class +org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests.class +org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests.class +org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$TestProperties.class +org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfigurationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$TestConfiguration.class +org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$NestedApp$NestedController.class +org/springframework/cloud/context/named/NamedContextFactoryTests$Foo.class +org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests.class +org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests.class +org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestService.class +org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests$Client.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$RefreshConfiguration$RebinderConfiguration.class +org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests$Config.class +org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializerTests.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestProperties.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$NestedApp.class +org/springframework/cloud/endpoint/RefreshEndpointTests$Empty.class +org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$1.class +org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests$Application.class +org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests$ClientApp.class +org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$Service.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$RefreshConfiguration$RebinderConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests$Controller.class +org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests$PropertySourceConfiguration.class +org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests.class +org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$PropertySourceConfiguration.class +org/springframework/cloud/context/named/NamedContextFactoryTests$Bar.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$ExampleService.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$RefreshConfiguration.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$Service.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$RefreshConfiguration$RebinderConfiguration.class +org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests.class +org/springframework/cloud/endpoint/RefreshEndpointTests.class +org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests.class +org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$Application.class +org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests$Application.class +org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests.class +org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests$ExampleService.class +org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$BareConfiguration.class diff --git a/spring-cloud-context/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-context/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 00000000..00f3a91f --- /dev/null +++ b/spring-cloud-context/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,36 @@ +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/logging/LoggingRebinderTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/restart/RestartIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/MessageSourceConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/TestHigherPriorityBootstrapConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfigurationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/health/RefreshScopeHealthIndicatorTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/endpoint/RefreshEndpointTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/named/NamedContextFactoryTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/TestBootstrapConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-commons-master-ci/spring-cloud-context/src/test/java/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializerTests.java diff --git a/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-javadoc.jar new file mode 100644 index 00000000..17b4abcf Binary files /dev/null and b/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-javadoc.jar differ diff --git a/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-sources.jar new file mode 100644 index 00000000..f4811ab0 Binary files /dev/null and b/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-sources.jar differ diff --git a/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-tests.jar b/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-tests.jar new file mode 100644 index 00000000..b7375c6d Binary files /dev/null and b/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT-tests.jar differ diff --git a/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT.jar b/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT.jar new file mode 100644 index 00000000..b504ef58 Binary files /dev/null and b/spring-cloud-context/target/spring-cloud-context-1.2.0.BUILD-SNAPSHOT.jar differ diff --git a/spring-cloud-context/target/test-classes/META-INF/spring-configuration-metadata.json b/spring-cloud-context/target/test-classes/META-INF/spring-configuration-metadata.json new file mode 100644 index 00000000..a1cc6174 --- /dev/null +++ b/spring-cloud-context/target/test-classes/META-INF/spring-configuration-metadata.json @@ -0,0 +1,186 @@ +{ + "hints": [], + "groups": [ + { + "sourceType": "org.springframework.cloud.context.scope.refresh.MoreRefreshScopeIntegrationTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.scope.refresh.MoreRefreshScopeIntegrationTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeIntegrationTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.scope.refresh.RefreshScopeIntegrationTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeScaleTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.scope.refresh.RefreshScopeScaleTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeLazyIntegrationTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.scope.refresh.RefreshScopeLazyIntegrationTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeConcurrencyTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.scope.refresh.RefreshScopeConcurrencyTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderIntegrationTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderIntegrationTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.environment.EnvironmentManagerIntegrationTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.environment.EnvironmentManagerIntegrationTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderListIntegrationTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderListIntegrationTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeListBindingIntegrationTests$TestProperties", + "name": "", + "type": "org.springframework.cloud.context.scope.refresh.RefreshScopeListBindingIntegrationTests$TestProperties" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.config.BootstrapConfigurationTests$PropertySourceConfiguration", + "name": "expected", + "type": "org.springframework.cloud.bootstrap.config.BootstrapConfigurationTests$PropertySourceConfiguration" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderProxyIntegrationTests$TestProperties", + "name": "messages", + "type": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderProxyIntegrationTests$TestProperties" + } + ], + "properties": [ + { + "sourceType": "org.springframework.cloud.context.scope.refresh.MoreRefreshScopeIntegrationTests$TestProperties", + "defaultValue": 0, + "name": "delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeIntegrationTests$TestProperties", + "defaultValue": 0, + "name": "delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestProperties", + "defaultValue": 0, + "name": "delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeScaleTests$TestProperties", + "defaultValue": 0, + "name": "delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeLazyIntegrationTests$TestProperties", + "defaultValue": 0, + "name": "delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeConcurrencyTests$TestProperties", + "defaultValue": 0, + "name": "delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderIntegrationTests$TestProperties", + "defaultValue": 0, + "name": "delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.context.environment.EnvironmentManagerIntegrationTests$TestProperties", + "defaultValue": 0, + "name": "delay", + "type": "java.lang.Integer" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.config.BootstrapConfigurationTests$PropertySourceConfiguration", + "defaultValue": false, + "name": "expected.fail", + "type": "java.lang.Boolean" + }, + { + "sourceType": "org.springframework.cloud.bootstrap.config.BootstrapConfigurationTests$PropertySourceConfiguration", + "name": "expected.name", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.MoreRefreshScopeIntegrationTests$TestProperties", + "name": "message", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeIntegrationTests$TestProperties", + "name": "message", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestProperties", + "name": "message", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeScaleTests$TestProperties", + "name": "message", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeLazyIntegrationTests$TestProperties", + "name": "message", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeConcurrencyTests$TestProperties", + "name": "message", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderIntegrationTests$TestProperties", + "name": "message", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.environment.EnvironmentManagerIntegrationTests$TestProperties", + "name": "message", + "type": "java.lang.String" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderListIntegrationTests$TestProperties", + "name": "messages", + "type": "java.util.List" + }, + { + "sourceType": "org.springframework.cloud.context.scope.refresh.RefreshScopeListBindingIntegrationTests$TestProperties", + "name": "messages", + "type": "java.util.List" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderProxyIntegrationTests$TestProperties", + "name": "messages.expiry", + "type": "java.util.Map" + }, + { + "sourceType": "org.springframework.cloud.context.properties.ConfigurationPropertiesRebinderProxyIntegrationTests$TestProperties", + "name": "messages.name", + "type": "java.lang.String" + } + ] +} \ No newline at end of file diff --git a/spring-cloud-context/target/test-classes/META-INF/spring.factories b/spring-cloud-context/target/test-classes/META-INF/spring.factories new file mode 100644 index 00000000..419787be --- /dev/null +++ b/spring-cloud-context/target/test-classes/META-INF/spring.factories @@ -0,0 +1,4 @@ +# Bootstrap components +org.springframework.cloud.bootstrap.BootstrapConfiguration=\ +org.springframework.cloud.bootstrap.TestBootstrapConfiguration,\ +org.springframework.cloud.bootstrap.TestHigherPriorityBootstrapConfiguration diff --git a/spring-cloud-context/target/test-classes/application-encrypt.properties b/spring-cloud-context/target/test-classes/application-encrypt.properties new file mode 100644 index 00000000..b1329f64 --- /dev/null +++ b/spring-cloud-context/target/test-classes/application-encrypt.properties @@ -0,0 +1 @@ +foo: {cipher}e4e061f9fe39ba5b14d8012d2f17d39775606039409b71ed4be0fdd033d5324a diff --git a/spring-cloud-context/target/test-classes/application-local.properties b/spring-cloud-context/target/test-classes/application-local.properties new file mode 100644 index 00000000..4da25c00 --- /dev/null +++ b/spring-cloud-context/target/test-classes/application-local.properties @@ -0,0 +1 @@ +added: Hello added! diff --git a/spring-cloud-context/target/test-classes/application-override.properties b/spring-cloud-context/target/test-classes/application-override.properties new file mode 100644 index 00000000..ea5f7924 --- /dev/null +++ b/spring-cloud-context/target/test-classes/application-override.properties @@ -0,0 +1 @@ +message: Hello override! diff --git a/spring-cloud-context/target/test-classes/application.properties b/spring-cloud-context/target/test-classes/application.properties new file mode 100644 index 00000000..d6aa5969 --- /dev/null +++ b/spring-cloud-context/target/test-classes/application.properties @@ -0,0 +1,6 @@ +message: Hello scope! +delay: 0 +debug: true +#logging.level.org.springframework.web: DEBUG +#logging.level.org.springframework.context.annotation: DEBUG +management.security.enabled=false diff --git a/spring-cloud-context/target/test-classes/bootstrap-encrypt.properties b/spring-cloud-context/target/test-classes/bootstrap-encrypt.properties new file mode 100644 index 00000000..3035e009 --- /dev/null +++ b/spring-cloud-context/target/test-classes/bootstrap-encrypt.properties @@ -0,0 +1 @@ +bar: {cipher}6154ca04d4bb6144d672c4e3d750b5147116dd381946d51fa44f8bc25dc256f4 \ No newline at end of file diff --git a/spring-cloud-context/target/test-classes/bootstrap-parent.properties b/spring-cloud-context/target/test-classes/bootstrap-parent.properties new file mode 100644 index 00000000..0c36bbdd --- /dev/null +++ b/spring-cloud-context/target/test-classes/bootstrap-parent.properties @@ -0,0 +1 @@ +info.name: parent \ No newline at end of file diff --git a/spring-cloud-context/target/test-classes/bootstrap.properties b/spring-cloud-context/target/test-classes/bootstrap.properties new file mode 100644 index 00000000..9ec10bf9 --- /dev/null +++ b/spring-cloud-context/target/test-classes/bootstrap.properties @@ -0,0 +1,2 @@ +spring.main.sources: org.springframework.cloud.bootstrap.config.BootstrapConfigurationTests.PropertySourceConfiguration +info.name: child diff --git a/spring-cloud-context/target/test-classes/custom.properties b/spring-cloud-context/target/test-classes/custom.properties new file mode 100644 index 00000000..1ee3320d --- /dev/null +++ b/spring-cloud-context/target/test-classes/custom.properties @@ -0,0 +1 @@ +spring.main.sources: org.springframework.cloud.bootstrap.BootstrapOrderingCustomPropertySourceIntegrationTests.PropertySourceConfiguration diff --git a/spring-cloud-context/target/test-classes/external-properties/bootstrap.properties b/spring-cloud-context/target/test-classes/external-properties/bootstrap.properties new file mode 100644 index 00000000..925265df --- /dev/null +++ b/spring-cloud-context/target/test-classes/external-properties/bootstrap.properties @@ -0,0 +1 @@ +info.name: externalPropertiesInfoName \ No newline at end of file diff --git a/spring-cloud-context/target/test-classes/messages.properties b/spring-cloud-context/target/test-classes/messages.properties new file mode 100644 index 00000000..16f361eb --- /dev/null +++ b/spring-cloud-context/target/test-classes/messages.properties @@ -0,0 +1 @@ +hello.message=Hello World! \ No newline at end of file diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests$Config.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests$Config.class new file mode 100644 index 00000000..73ae8db2 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests$Config.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests.class new file mode 100644 index 00000000..70de9018 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/LifecycleMvcAutoConfigurationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests$Config.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests$Config.class new file mode 100644 index 00000000..add0af3d Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests$Config.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests.class new file mode 100644 index 00000000..862a5b14 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationClassPathTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests$Config.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests$Config.class new file mode 100644 index 00000000..2b0ac4cd Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests$Config.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests.class new file mode 100644 index 00000000..6ccfb97b Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/autoconfigure/RefreshAutoConfigurationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests$Application.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests$Application.class new file mode 100644 index 00000000..074a44c5 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests$Application.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests.class new file mode 100644 index 00000000..6a4bf577 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapDisabledAutoConfigurationIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests$Application.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests$Application.class new file mode 100644 index 00000000..b62fcc8a Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests$Application.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests.class new file mode 100644 index 00000000..96fa5446 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingAutoConfigurationIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests$Application.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests$Application.class new file mode 100644 index 00000000..063ec302 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests$Application.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests$PropertySourceConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests$PropertySourceConfiguration.class new file mode 100644 index 00000000..9b1f0f3b Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests$PropertySourceConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests.class new file mode 100644 index 00000000..306070f1 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingCustomPropertySourceIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests$Application.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests$Application.class new file mode 100644 index 00000000..fb38ccf5 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests$Application.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests.class new file mode 100644 index 00000000..48a8cad1 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapOrderingSpringApplicationJsonIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests$Application.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests$Application.class new file mode 100644 index 00000000..9e1c3852 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests$Application.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests.class new file mode 100644 index 00000000..9c59e718 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/BootstrapSourcesOrderingTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/MessageSourceConfigurationTests$TestApplication.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/MessageSourceConfigurationTests$TestApplication.class new file mode 100644 index 00000000..511f90fe Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/MessageSourceConfigurationTests$TestApplication.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/MessageSourceConfigurationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/MessageSourceConfigurationTests.class new file mode 100644 index 00000000..887637e3 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/MessageSourceConfigurationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestBootstrapConfiguration$1.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestBootstrapConfiguration$1.class new file mode 100644 index 00000000..2fee184c Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestBootstrapConfiguration$1.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestBootstrapConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestBootstrapConfiguration.class new file mode 100644 index 00000000..12838b94 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestBootstrapConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestHigherPriorityBootstrapConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestHigherPriorityBootstrapConfiguration.class new file mode 100644 index 00000000..4244767d Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/TestHigherPriorityBootstrapConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$1.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$1.class new file mode 100644 index 00000000..84c81a01 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$1.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$BareConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$BareConfiguration.class new file mode 100644 index 00000000..384ee981 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$BareConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$PropertySourceConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$PropertySourceConfiguration.class new file mode 100644 index 00000000..6a4972ab Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests$PropertySourceConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests.class new file mode 100644 index 00000000..8d3d787c Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapConfigurationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests$BasicConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests$BasicConfiguration.class new file mode 100644 index 00000000..f0c9771d Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests$BasicConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests$RootConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests$RootConfiguration.class new file mode 100644 index 00000000..cb85680e Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests$RootConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests.class new file mode 100644 index 00000000..021a61e9 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/config/BootstrapListenerHierarchyIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfigurationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfigurationTests.class new file mode 100644 index 00000000..7be99d5e Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfigurationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializerTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializerTests.class new file mode 100644 index 00000000..d277b57c Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializerTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..3223d0c1 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests$TestProperties.class new file mode 100644 index 00000000..3a703401 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests.class new file mode 100644 index 00000000..ba97ebcd Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/environment/EnvironmentManagerIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Bar.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Bar.class new file mode 100644 index 00000000..3f8e8a21 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Bar.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$BarConfig.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$BarConfig.class new file mode 100644 index 00000000..d52ce24d Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$BarConfig.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$BaseConfig.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$BaseConfig.class new file mode 100644 index 00000000..16b7c3dd Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$BaseConfig.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Baz.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Baz.class new file mode 100644 index 00000000..2bf391ce Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Baz.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Foo.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Foo.class new file mode 100644 index 00000000..4f69989b Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$Foo.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$FooConfig.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$FooConfig.class new file mode 100644 index 00000000..9619a0d4 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$FooConfig.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$TestClientFactory.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$TestClientFactory.class new file mode 100644 index 00000000..d20ef679 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$TestClientFactory.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$TestSpec.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$TestSpec.class new file mode 100644 index 00000000..f842d761 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests$TestSpec.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests.class new file mode 100644 index 00000000..f2bfb27b Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/named/NamedContextFactoryTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$RefreshConfiguration$RebinderConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$RefreshConfiguration$RebinderConfiguration.class new file mode 100644 index 00000000..753f8137 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$RefreshConfiguration$RebinderConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$RefreshConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$RefreshConfiguration.class new file mode 100644 index 00000000..cc5dc7ce Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$RefreshConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..c19db7ed Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$TestProperties.class new file mode 100644 index 00000000..ce4a054e Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests.class new file mode 100644 index 00000000..5e69bfd7 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$RefreshConfiguration$RebinderConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$RefreshConfiguration$RebinderConfiguration.class new file mode 100644 index 00000000..559753ed Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$RefreshConfiguration$RebinderConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$RefreshConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$RefreshConfiguration.class new file mode 100644 index 00000000..eb590436 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$RefreshConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..d284a60a Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$TestProperties.class new file mode 100644 index 00000000..8f6ad9b3 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests.class new file mode 100644 index 00000000..10a9d1a9 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderListIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$Interceptor.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$Interceptor.class new file mode 100644 index 00000000..d4d362e0 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$Interceptor.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$RefreshConfiguration$RebinderConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$RefreshConfiguration$RebinderConfiguration.class new file mode 100644 index 00000000..705239cd Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$RefreshConfiguration$RebinderConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$RefreshConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$RefreshConfiguration.class new file mode 100644 index 00000000..6cba1b9e Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$RefreshConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..6813c3b5 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$TestProperties.class new file mode 100644 index 00000000..1d780540 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests.class new file mode 100644 index 00000000..18ca6067 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderProxyIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..a1aee4c4 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestProperties.class new file mode 100644 index 00000000..0a03f1c9 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests.class new file mode 100644 index 00000000..b8912cf0 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinderRefreshScopeIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/restart/RestartIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/restart/RestartIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..83d598d7 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/restart/RestartIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/restart/RestartIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/restart/RestartIntegrationTests.class new file mode 100644 index 00000000..8708612a Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/restart/RestartIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests$ExampleService.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests$ExampleService.class new file mode 100644 index 00000000..95e63de0 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests$ExampleService.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..ab4d2a23 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests.class new file mode 100644 index 00000000..6d43ea93 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/ImportRefreshScopeIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..a78ad179 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestProperties.class new file mode 100644 index 00000000..3b18d233 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestService.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestService.class new file mode 100644 index 00000000..27b61661 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests$TestService.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests.class new file mode 100644 index 00000000..7f7a01ef Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/MoreRefreshScopeIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests$ClientApp.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests$ClientApp.class new file mode 100644 index 00000000..72f1110d Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests$ClientApp.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests$Controller.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests$Controller.class new file mode 100644 index 00000000..1bb0a047 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests$Controller.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests.class new file mode 100644 index 00000000..deead1c0 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshEndpointIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$1.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$1.class new file mode 100644 index 00000000..a3cb7a51 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$1.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$ExampleService.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$ExampleService.class new file mode 100644 index 00000000..ec7aafa1 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$ExampleService.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$Service.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$Service.class new file mode 100644 index 00000000..c09d4fc3 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$Service.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$TestConfiguration.class new file mode 100644 index 00000000..4e922c5c Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$TestProperties.class new file mode 100644 index 00000000..da1ff01a Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests.class new file mode 100644 index 00000000..2279c85b Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConcurrencyTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$Application.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$Application.class new file mode 100644 index 00000000..50f5d0f5 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$Application.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$ClientApp.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$ClientApp.class new file mode 100644 index 00000000..a50a543f Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$ClientApp.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$Controller.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$Controller.class new file mode 100644 index 00000000..e83acb67 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$Controller.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$NestedApp$NestedController.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$NestedApp$NestedController.class new file mode 100644 index 00000000..c887d632 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$NestedApp$NestedController.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$NestedApp.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$NestedApp.class new file mode 100644 index 00000000..2f2e7562 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests$NestedApp.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests.class new file mode 100644 index 00000000..3c3d0078 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeConfigurationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$ExampleService.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$ExampleService.class new file mode 100644 index 00000000..294563ed Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$ExampleService.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$Service.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$Service.class new file mode 100644 index 00000000..cecca6e9 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$Service.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..fcfd9c59 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$TestProperties.class new file mode 100644 index 00000000..59b5a391 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests.class new file mode 100644 index 00000000..9f39e353 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$ExampleService.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$ExampleService.class new file mode 100644 index 00000000..1dd30fb9 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$ExampleService.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$Service.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$Service.class new file mode 100644 index 00000000..31bf2b3e Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$Service.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..e58c05e6 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$TestProperties.class new file mode 100644 index 00000000..db069000 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests.class new file mode 100644 index 00000000..6c0dd18c Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeLazyIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests$TestConfiguration.class new file mode 100644 index 00000000..c088d660 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests$TestProperties.class new file mode 100644 index 00000000..518fb9f4 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests.class new file mode 100644 index 00000000..044c40e3 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeListBindingIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$1.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$1.class new file mode 100644 index 00000000..fcc61015 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$1.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$ExampleService.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$ExampleService.class new file mode 100644 index 00000000..53e3789c Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$ExampleService.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$Service.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$Service.class new file mode 100644 index 00000000..f36be08a Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$Service.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$TestConfiguration.class new file mode 100644 index 00000000..a7d9d8ec Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$TestProperties.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$TestProperties.class new file mode 100644 index 00000000..08971f96 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests$TestProperties.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests.class new file mode 100644 index 00000000..37dd2310 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeScaleTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests$TestBean.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests$TestBean.class new file mode 100644 index 00000000..8386d1ca Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests$TestBean.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests$TestConfiguration.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests$TestConfiguration.class new file mode 100644 index 00000000..06875500 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests$TestConfiguration.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests.class new file mode 100644 index 00000000..b34012a9 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeSerializationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests$Application.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests$Application.class new file mode 100644 index 00000000..98ad92a5 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests$Application.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests$Client.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests$Client.class new file mode 100644 index 00000000..89a29be7 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests$Client.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests.class new file mode 100644 index 00000000..dd3ab91d Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/context/scope/refresh/RefreshScopeWebIntegrationTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests$Empty.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests$Empty.class new file mode 100644 index 00000000..986eae3e Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests$Empty.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests$ExternalPropertySourceLocator.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests$ExternalPropertySourceLocator.class new file mode 100644 index 00000000..5a629a2d Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests$ExternalPropertySourceLocator.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests.class new file mode 100644 index 00000000..a65c8b8f Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/endpoint/RefreshEndpointTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/health/RefreshScopeHealthIndicatorTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/health/RefreshScopeHealthIndicatorTests.class new file mode 100644 index 00000000..4817b819 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/health/RefreshScopeHealthIndicatorTests.class differ diff --git a/spring-cloud-context/target/test-classes/org/springframework/cloud/logging/LoggingRebinderTests.class b/spring-cloud-context/target/test-classes/org/springframework/cloud/logging/LoggingRebinderTests.class new file mode 100644 index 00000000..8d254134 Binary files /dev/null and b/spring-cloud-context/target/test-classes/org/springframework/cloud/logging/LoggingRebinderTests.class differ diff --git a/spring-cloud-context/target/test-classes/other.properties b/spring-cloud-context/target/test-classes/other.properties new file mode 100644 index 00000000..dc756282 --- /dev/null +++ b/spring-cloud-context/target/test-classes/other.properties @@ -0,0 +1 @@ +spring.application.name: main \ No newline at end of file diff --git a/spring-cloud-context/target/test-classes/plain.properties b/spring-cloud-context/target/test-classes/plain.properties new file mode 100644 index 00000000..aa8f5408 --- /dev/null +++ b/spring-cloud-context/target/test-classes/plain.properties @@ -0,0 +1 @@ +spring.application.name: app diff --git a/spring-cloud-context/target/test-classes/server.jks b/spring-cloud-context/target/test-classes/server.jks new file mode 100644 index 00000000..560be5fe Binary files /dev/null and b/spring-cloud-context/target/test-classes/server.jks differ diff --git a/spring-cloud-starter/target/classes/META-INF/spring.provides b/spring-cloud-starter/target/classes/META-INF/spring.provides new file mode 100644 index 00000000..47374804 --- /dev/null +++ b/spring-cloud-starter/target/classes/META-INF/spring.provides @@ -0,0 +1 @@ +provides: spring-cloud-commons \ No newline at end of file diff --git a/spring-cloud-starter/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-starter/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 00000000..8b89c977 --- /dev/null +++ b/spring-cloud-starter/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/spring-cloud-starter/target/maven-archiver/pom.properties b/spring-cloud-starter/target/maven-archiver/pom.properties new file mode 100644 index 00000000..6ae450ed --- /dev/null +++ b/spring-cloud-starter/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Created by Apache Maven 3.3.9 +#Tue Apr 04 02:50:30 UTC 2017 +version=1.2.0.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-starter diff --git a/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT-sources.jar new file mode 100644 index 00000000..555ca724 Binary files /dev/null and b/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT-sources.jar differ diff --git a/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT-tests.jar b/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT-tests.jar new file mode 100644 index 00000000..dba3d742 Binary files /dev/null and b/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT-tests.jar differ diff --git a/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT.jar b/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT.jar new file mode 100644 index 00000000..f5f041e1 Binary files /dev/null and b/spring-cloud-starter/target/spring-cloud-starter-1.2.0.BUILD-SNAPSHOT.jar differ diff --git a/target/apidocs/allclasses-frame.html b/target/apidocs/allclasses-frame.html new file mode 100644 index 00000000..2f7be3cd --- /dev/null +++ b/target/apidocs/allclasses-frame.html @@ -0,0 +1,152 @@ + + + + + + +All Classes (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/target/apidocs/allclasses-noframe.html b/target/apidocs/allclasses-noframe.html new file mode 100644 index 00000000..d0c5913f --- /dev/null +++ b/target/apidocs/allclasses-noframe.html @@ -0,0 +1,152 @@ + + + + + + +All Classes (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/target/apidocs/constant-values.html b/target/apidocs/constant-values.html new file mode 100644 index 00000000..58ef4ce5 --- /dev/null +++ b/target/apidocs/constant-values.html @@ -0,0 +1,321 @@ + + + + + + +Constant Field Values (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

org.springframework.*

+ + + + +
    +
  • + + + + + + + + + + + + + + +
    org.springframework.cloud.commons.util.InetUtilsProperties 
    Modifier and TypeConstant FieldValue
    + +public static final StringPREFIX"spring.cloud.inetutils"
    +
  • +
+ + +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/deprecated-list.html b/target/apidocs/deprecated-list.html new file mode 100644 index 00000000..65da59ca --- /dev/null +++ b/target/apidocs/deprecated-list.html @@ -0,0 +1,243 @@ + + + + + + +Deprecated List (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+ +
+
+ + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/help-doc.html b/target/apidocs/help-doc.html new file mode 100644 index 00000000..81421e62 --- /dev/null +++ b/target/apidocs/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Overview

    +

    The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    +
  • +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Use

    +

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/index-all.html b/target/apidocs/index-all.html new file mode 100644 index 00000000..b39aeff3 --- /dev/null +++ b/target/apidocs/index-all.html @@ -0,0 +1,1965 @@ + + + + + + +Index (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
A B C D E F G H I K L M N O P R S T U V  + + +

A

+
+
AbstractAutoServiceRegistration<R extends Registration> - Class in org.springframework.cloud.client.serviceregistry
+
+
Lifecycle methods that may be useful and common to ServiceRegistry implementations.
+
+
AbstractAutoServiceRegistration(ServiceRegistry<R>) - Constructor for class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
AbstractDiscoveryLifecycle - Class in org.springframework.cloud.client.discovery
+
+
Deprecated. +
use AbstractAutoServiceRegistration instead. This class will be removed in the next release train.
+
+
+
AbstractDiscoveryLifecycle() - Constructor for class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
abstractFeatures(Class<?>...) - Static method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
ActuatorConfiguration() - Constructor for class org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration
+
 
+
afterPropertiesSet() - Method in class org.springframework.cloud.client.hypermedia.RemoteResourceRefresher
+
 
+
afterSingletonsInstantiated() - Method in class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
apply(ServiceInstance) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequest
+
 
+
AsyncLoadBalancerAutoConfiguration - Class in org.springframework.cloud.client.loadbalancer
+
+
Auto configuration for Ribbon (client side load balancing).
+
+
AsyncLoadBalancerAutoConfiguration() - Constructor for class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration
+
 
+
AsyncLoadBalancerInterceptor - Class in org.springframework.cloud.client.loadbalancer
+
 
+
AsyncLoadBalancerInterceptor(LoadBalancerClient) - Constructor for class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor
+
 
+
AsyncRestTemplateCustomizer - Interface in org.springframework.cloud.client.loadbalancer
+
 
+
AutoServiceRegistration - Interface in org.springframework.cloud.client.serviceregistry
+
 
+
AutoServiceRegistrationAutoConfiguration - Class in org.springframework.cloud.client.serviceregistry
+
 
+
AutoServiceRegistrationAutoConfiguration() - Constructor for class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration
+
 
+
AutoServiceRegistrationConfiguration - Class in org.springframework.cloud.client.serviceregistry
+
 
+
AutoServiceRegistrationConfiguration() - Constructor for class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration
+
 
+
AutoServiceRegistrationProperties - Class in org.springframework.cloud.client.serviceregistry
+
 
+
AutoServiceRegistrationProperties() - Constructor for class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
+
 
+
+ + + +

B

+
+
BeanLifecycleDecorator<T> - Interface in org.springframework.cloud.context.config
+
+
A helper interface providing optional decoration of bean instances and their + destruction callbacks.
+
+
BeanLifecycleDecorator.Context<T> - Class in org.springframework.cloud.context.config
+
 
+
Boot15PortFinderConfiguration() - Constructor for class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
+
+
Deprecated.
+
BOOTSTRAP_PROPERTY_SOURCE_NAME - Static variable in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
BOOTSTRAP_PROPERTY_SOURCE_NAME - Static variable in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
BootstrapApplicationListener - Class in org.springframework.cloud.bootstrap
+
+
A listener that prepares a SpringApplication (e.g.
+
+
BootstrapApplicationListener() - Constructor for class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
BootstrapConfiguration - Annotation Type in org.springframework.cloud.bootstrap
+
+
A marker interface used as a key in META-INF/spring.factories.
+
+
buildTraversal(Traverson) - Method in interface org.springframework.cloud.client.hypermedia.TraversalDefinition
+
 
+
+ + + +

C

+
+
canRetry(RetryContext) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
canRetryNextServer(LoadBalancedRetryContext) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy
+
+
Return true to retry the failed request on the next server from the load balancer.
+
+
canRetrySameServer(LoadBalancedRetryContext) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy
+
+
Return true to retry the failed request on the same server.
+
+
choose(String) - Method in interface org.springframework.cloud.client.loadbalancer.ServiceInstanceChooser
+
+
Choose a ServiceInstance from the LoadBalancer for the specified service
+
+
clear() - Method in interface org.springframework.cloud.context.scope.ScopeCache
+
+
Clear the cache and return all objects in an unmodifiable collection.
+
+
clear() - Method in class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
clear() - Method in class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
close(RetryContext) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
close(LoadBalancedRetryContext) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy
+
+
Called when the retry operation has ended.
+
+
close() - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Close the ServiceRegistry.
+
+
close() - Method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
CloudHypermediaAutoConfiguration - Class in org.springframework.cloud.client.hypermedia
+
+
Registers a default RemoteResourceRefresher if at least one RemoteResource is declared in the system + and applies verification timings defined in the application properties.
+
+
CloudHypermediaAutoConfiguration() - Constructor for class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration
+
 
+
CloudHypermediaAutoConfiguration.CloudHypermediaProperties - Class in org.springframework.cloud.client.hypermedia
+
 
+
CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh - Class in org.springframework.cloud.client.hypermedia
+
 
+
CloudHypermediaProperties() - Constructor for class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties
+
 
+
combineParts(String, String, String) - Static method in class org.springframework.cloud.commons.util.IdUtils
+
 
+
CommonsClientAutoConfiguration - Class in org.springframework.cloud.client
+
+
Auto-configuration for Spring Cloud Commons Client.
+
+
CommonsClientAutoConfiguration() - Constructor for class org.springframework.cloud.client.CommonsClientAutoConfiguration
+
 
+
CommonsClientAutoConfiguration.ActuatorConfiguration - Class in org.springframework.cloud.client
+
 
+
CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration - Class in org.springframework.cloud.client
+
 
+
commonsFeatures() - Method in class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+
 
+
configurationPropertiesBeans() - Method in class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
ConfigurationPropertiesBeans - Class in org.springframework.cloud.context.properties
+
+
Collects references to @ConfigurationProperties beans in the context and + its parent.
+
+
ConfigurationPropertiesBeans() - Constructor for class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
configurationPropertiesRebinder(ConfigurationPropertiesBeans, ConfigurationPropertiesBindingPostProcessor) - Method in class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
ConfigurationPropertiesRebinder - Class in org.springframework.cloud.context.properties
+
+
Listens for EnvironmentChangeEvent and rebinds beans that were bound to the + Environment using @ConfigurationProperties.
+
+
ConfigurationPropertiesRebinder(ConfigurationPropertiesBindingPostProcessor, ConfigurationPropertiesBeans) - Constructor for class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
ConfigurationPropertiesRebinderAutoConfiguration - Class in org.springframework.cloud.autoconfigure
+
 
+
ConfigurationPropertiesRebinderAutoConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
Context(Runnable, T) - Constructor for class org.springframework.cloud.context.config.BeanLifecycleDecorator.Context
+
 
+
contextRefresher(ConfigurableApplicationContext, RefreshScope) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
ContextRefresher - Class in org.springframework.cloud.context.refresh
+
 
+
ContextRefresher(ConfigurableApplicationContext, RefreshScope) - Constructor for class org.springframework.cloud.context.refresh.ContextRefresher
+
 
+
ContextRefresher.Empty - Class in org.springframework.cloud.context.refresh
+
 
+
convert(InetAddress) - Static method in class org.springframework.cloud.commons.util.InetUtils
+
+
Deprecated. +
use the non-static convertAddress() instead
+
+
+
convertAddress(InetAddress) - Method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
create(String, ServiceInstanceChooser) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory
+
+ +
+
create(String, ServiceInstanceChooser) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory
+
 
+
create(String) - Method in class org.springframework.cloud.context.encrypt.EncryptorFactory
+
 
+
createContext(String) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
createRequest(HttpRequest, byte[], ClientHttpRequestExecution) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory
+
 
+
customize(AsyncRestTemplate) - Method in interface org.springframework.cloud.client.loadbalancer.AsyncRestTemplateCustomizer
+
 
+
customize(RestTemplate) - Method in interface org.springframework.cloud.client.loadbalancer.RestTemplateCustomizer
+
 
+
+ + + +

D

+
+
decorateBean(Object, BeanLifecycleDecorator.Context<T>) - Method in interface org.springframework.cloud.context.config.BeanLifecycleDecorator
+
+
Optionally decorate and provide a new instance of a compatible bean for + the caller to use instead of the input.
+
+
decorateBean(Object, BeanLifecycleDecorator.Context<ReadWriteLock>) - Method in class org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
+
 
+
decorateDestructionCallback(Runnable) - Method in interface org.springframework.cloud.context.config.BeanLifecycleDecorator
+
+
Optionally decorate the destruction callback provided, and also return + some context that can be used later by the + BeanLifecycleDecorator.decorateBean(Object, Context) method.
+
+
decorateDestructionCallback(Runnable) - Method in class org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
+
 
+
decrypt(String) - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
+
 
+
decrypt(PropertySources) - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
DECRYPTED_BOOTSTRAP_PROPERTY_SOURCE_NAME - Static variable in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
DECRYPTED_PROPERTY_SOURCE_NAME - Static variable in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
DEFAULT_NAME - Static variable in class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+
 
+
DEFAULT_ORDER - Static variable in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
DEFAULT_ORDER - Static variable in class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
DEFAULT_ORDER - Static variable in interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequestTransformer
+
 
+
DEFAULT_PROPERTIES - Static variable in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
DefaultServiceInstance - Class in org.springframework.cloud.client
+
+
Default implementation of ServiceInstance.
+
+
DefaultServiceInstance(String, String, int, boolean) - Constructor for class org.springframework.cloud.client.DefaultServiceInstance
+
 
+
deregister() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
De-register the local service with the DiscoveryClient
+
+
deregister() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
+
De-register the local service with the ServiceRegistry
+
+
deregister(R) - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Deregister the registration.
+
+
deregisterManagement() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
De-register the local management service with the DiscoveryClient
+
+
deregisterManagement() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
+
De-register the local management service with the ServiceRegistry
+
+
description() - Method in interface org.springframework.cloud.client.discovery.DiscoveryClient
+
+
A human readable description of the implementation, used in HealthIndicator
+
+
description() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
description() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
destroy() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
destroy() - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
destroy() - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
destroy(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
Destroy the named bean (i.e.
+
+
DiscoveredResource - Class in org.springframework.cloud.client.hypermedia
+
+
A REST resource that is defined by a service reference and a traversal operation within that service.
+
+
DiscoveredResource() - Constructor for class org.springframework.cloud.client.hypermedia.DiscoveredResource
+
 
+
discoveredResourceRefresher() - Method in class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration
+
 
+
DiscoveryClient - Interface in org.springframework.cloud.client.discovery
+
+
DiscoveryClient represents read operations commonly available to Discovery service such as + Netflix Eureka or consul.io
+
+
discoveryClient() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+
+
Deprecated.
+
discoveryClientHealthIndicator(DiscoveryClient) - Method in class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+
 
+
DiscoveryClientHealthIndicator - Class in org.springframework.cloud.client.discovery.health
+
 
+
DiscoveryClientHealthIndicator(DiscoveryClient) - Constructor for class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
discoveryCompositeHealthIndicator(HealthAggregator, List<DiscoveryHealthIndicator>) - Method in class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+
 
+
DiscoveryCompositeHealthIndicator - Class in org.springframework.cloud.client.discovery.health
+
+
Gathers all DiscoveryHealthIndicator's from a DiscoveryClient implementation + and aggregates the statuses.
+
+
DiscoveryCompositeHealthIndicator(HealthAggregator, List<DiscoveryHealthIndicator>) - Constructor for class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator
+
 
+
DiscoveryCompositeHealthIndicator.Holder - Class in org.springframework.cloud.client.discovery.health
+
 
+
DiscoveryHealthIndicator - Interface in org.springframework.cloud.client.discovery.health
+
+
A health indicator interface specific for a DiscoveryClient implementation
+
+
DiscoveryLifecycle - Interface in org.springframework.cloud.client.discovery
+
+
Deprecated. +
use AutoServiceRegistration instead. This class will be removed in the next release train.
+
+
+
DiscoveryLoadBalancerConfiguration() - Constructor for class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+
 
+
doHealthCheck(Health.Builder) - Method in class org.springframework.cloud.health.RefreshScopeHealthIndicator
+
 
+
DynamicServiceInstanceProvider - Class in org.springframework.cloud.client.hypermedia
+
+
ServiceInstanceProvider to work with a DiscoveryClient to lookup a service by name.
+
+
DynamicServiceInstanceProvider() - Constructor for class org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider
+
 
+
+ + + +

E

+
+
Empty() - Constructor for class org.springframework.cloud.context.refresh.ContextRefresher.Empty
+
 
+
EnableCircuitBreaker - Annotation Type in org.springframework.cloud.client.circuitbreaker
+
+
Annotation to enable a CircuitBreaker implementation.
+
+
EnableCircuitBreakerImportSelector - Class in org.springframework.cloud.client.circuitbreaker
+
+
Import a single circuit breaker implementation Configuration
+
+
EnableCircuitBreakerImportSelector() - Constructor for class org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector
+
 
+
EnableDiscoveryClient - Annotation Type in org.springframework.cloud.client.discovery
+
+
Annotation to enable a DiscoveryClient implementation.
+
+
EnableDiscoveryClientImportSelector - Class in org.springframework.cloud.client.discovery
+
 
+
EnableDiscoveryClientImportSelector() - Constructor for class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+
 
+
encrypt(String) - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
+
 
+
EncryptionBootstrapConfiguration - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
EncryptionBootstrapConfiguration() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration
+
 
+
EncryptionBootstrapConfiguration.FailsafeTextEncryptor - Class in org.springframework.cloud.bootstrap.encrypt
+
+
TextEncryptor that just fails, so that users don't get a false sense of security + adding ciphers to config files and not getting them decrypted.
+
+
EncryptionBootstrapConfiguration.KeyCondition - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
EncryptionBootstrapConfiguration.RsaEncryptionConfiguration - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
EncryptorFactory - Class in org.springframework.cloud.context.encrypt
+
 
+
EncryptorFactory() - Constructor for class org.springframework.cloud.context.encrypt.EncryptorFactory
+
 
+
EnvironmentChangeEvent - Class in org.springframework.cloud.context.environment
+
+
Event published to signal a change in the Environment.
+
+
EnvironmentChangeEvent(Set<String>) - Constructor for class org.springframework.cloud.context.environment.EnvironmentChangeEvent
+
 
+
EnvironmentDecryptApplicationInitializer - Class in org.springframework.cloud.bootstrap.encrypt
+
+
Decrypt properties from the environment and insert them with high priority so they + override the encrypted values.
+
+
EnvironmentDecryptApplicationInitializer(TextEncryptor) - Constructor for class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
environmentDecryptApplicationListener() - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration
+
 
+
environmentManager(ConfigurableEnvironment) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
EnvironmentManager - Class in org.springframework.cloud.context.environment
+
+
Entry point for making local (but volatile) changes to the Environment of a + running application.
+
+
EnvironmentManager(ConfigurableEnvironment) - Constructor for class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
environmentManagerEndpoint(EnvironmentEndpoint, EnvironmentManager) - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
EnvironmentManagerMvcEndpoint - Class in org.springframework.cloud.context.environment
+
+
MVC endpoint for the EnvironmentManager providing a POST to /env as a simple + way to change the Environment.
+
+
EnvironmentManagerMvcEndpoint(EnvironmentEndpoint, EnvironmentManager) - Constructor for class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
equals(Object) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
execute(String, LoadBalancerRequest<T>) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerClient
+
+
execute request using a ServiceInstance from the LoadBalancer for the specified + service
+
+
execute(String, ServiceInstance, LoadBalancerRequest<T>) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerClient
+
+
execute request using a ServiceInstance from the LoadBalancer for the specified + service
+
+
+ + + +

F

+
+
FailsafeTextEncryptor() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
+
 
+
FeaturesEndpoint - Class in org.springframework.cloud.client.actuator
+
 
+
FeaturesEndpoint(List<HasFeatures>) - Constructor for class org.springframework.cloud.client.actuator.FeaturesEndpoint
+
 
+
featuresEndpoint() - Method in class org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration
+
 
+
findFirstNonLoopbackAddress() - Method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
findFirstNonLoopbackHostInfo() - Method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
+ + + +

G

+
+
GenericPostableMvcEndpoint - Class in org.springframework.cloud.endpoint
+
+
A convenient base class for MVC endpoints that accept a POST (instead of the default + GET).
+
+
GenericPostableMvcEndpoint(Endpoint<?>) - Constructor for class org.springframework.cloud.endpoint.GenericPostableMvcEndpoint
+
 
+
GenericScope - Class in org.springframework.cloud.context.scope
+
+
+ A generic Scope implementation.
+
+
GenericScope() - Constructor for class org.springframework.cloud.context.scope.GenericScope
+
 
+
get(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
get(BeanFactory) - Static method in enum org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort
+
 
+
get(String, ObjectFactory<?>) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
get(String) - Method in interface org.springframework.cloud.context.scope.ScopeCache
+
+
Get the named object from the cache.
+
+
get(String) - Method in class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
get(String) - Method in class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
getAbstractFeatures() - Method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
getAlgorithm() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
getAlias() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
getAnnotationClass() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
getAppName() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getAuxiliary() - Method in class org.springframework.cloud.context.config.BeanLifecycleDecorator.Context
+
 
+
getBeanNames() - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
getBeanNames() - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
getCallback() - Method in class org.springframework.cloud.context.config.BeanLifecycleDecorator.Context
+
 
+
getConfig() - Method in class org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent
+
 
+
getConfiguration() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getConfiguration() - Method in interface org.springframework.cloud.context.named.NamedContextFactory.Specification
+
 
+
getConfiguredPort() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getContext() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
getContext(String) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
getContextNames() - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
getConversationId() - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
getDefaultInstanceId(PropertyResolver) - Static method in class org.springframework.cloud.commons.util.IdUtils
+
 
+
getDelegate() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder
+
 
+
getEndpointType() - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
getEndpointType() - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
getEnvironment() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getEnvironment() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
getErrors() - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
+
A map of bean name to errors when instantiating the bean.
+
+
getErrors() - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
A map of bean name to errors when instantiating the bean.
+
+
getEvent() - Method in class org.springframework.cloud.endpoint.event.RefreshEvent
+
 
+
getEventDesc() - Method in class org.springframework.cloud.endpoint.event.RefreshEvent
+
 
+
getFirstNonLoopbackHostInfo() - Static method in class org.springframework.cloud.commons.util.InetUtils
+
+
Deprecated. +
use the non-static findFirstNonLoopbackHostInfo() instead
+
+
+
getHealthIndicators() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator
+
 
+
getHost() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getHost() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getInstance(String, Class<T>) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
getInstances(String) - Method in interface org.springframework.cloud.client.discovery.DiscoveryClient
+
+
Get all ServiceInstances associated with a particular serviceId
+
+
getInstances(String) - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
getInstances(String) - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
getInstances() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties
+
 
+
getInstances(String, Class<T>) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
getIpAddressAsInt(String) - Static method in class org.springframework.cloud.commons.util.InetUtils
+
 
+
getIpAddressAsInt() - Method in class org.springframework.cloud.commons.util.InetUtils.HostInfo
+
 
+
getKey() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
getKeys() - Method in class org.springframework.cloud.context.environment.EnvironmentChangeEvent
+
 
+
getKeyStore() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
getLink() - Method in interface org.springframework.cloud.client.hypermedia.RemoteResource
+
+
Returns the Link to the resource in case it is available or null + in case it's gone, i.e.
+
+
getLocalServiceInstance() - Method in interface org.springframework.cloud.client.discovery.DiscoveryClient
+
+
Deprecated. +
use the Registration bean instead
+
+
+
getLocalServiceInstance() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
getLocalServiceInstance() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
getLocation() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
getManagementPort() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getManagementRegistration() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
getManagementServiceId() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getManagementServiceName() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getMatchOutcome(ConditionContext, AnnotatedTypeMetadata) - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition
+
 
+
getMetadata() - Method in class org.springframework.cloud.client.DefaultServiceInstance
+
 
+
getMetadata() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getMetadata() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getName() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
getName() - Method in interface org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator
+
 
+
getName() - Method in interface org.springframework.cloud.context.named.NamedContextFactory.Specification
+
 
+
getName() - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
getName() - Method in class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+
 
+
getNamedFeatures() - Method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
getOrder() - Method in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
getOrder() - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
getOrder() - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
getOrder() - Method in class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
getOrder() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
getOrder() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
getOrder() - Method in class org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
+
 
+
getOrder() - Method in class org.springframework.cloud.context.restart.RestartListener
+
 
+
getOrder() - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
getPassword() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
getPath() - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
getPath() - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
getPauseEndpoint() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
getPhase() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
getPort() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
getPort(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
getPort() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getPort() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getProperty(String) - Method in class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
getRegistration() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
getRequest() - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Gets the request that is being load balanced.
+
+
getResumeEndpoint() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
getRsa() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
getRunning() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
getSalt() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
getSecret() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
getServiceId() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getServiceId() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getServiceId() - Method in interface org.springframework.cloud.client.serviceregistry.Registration
+
 
+
getServiceInstance() - Method in class org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider
+
 
+
getServiceInstance() - Method in interface org.springframework.cloud.client.hypermedia.ServiceInstanceProvider
+
+
Returns the service instance or null in case the service is currently unavailable.
+
+
getServiceInstance() - Method in class org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider
+
 
+
getServiceInstance() - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Gets the service instance used during the retry.
+
+
getServiceRegistry() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
getServices() - Method in interface org.springframework.cloud.client.discovery.DiscoveryClient
+
 
+
getServices() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
getServices() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
getSimpleName() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
getStatus() - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
getStatus(R) - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Gets the status of a particular registration.
+
+
getTimeout() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
getUri() - Method in class org.springframework.cloud.client.DefaultServiceInstance
+
 
+
getUri(ServiceInstance) - Static method in class org.springframework.cloud.client.DefaultServiceInstance
+
+
Create a uri from the given ServiceInstance's host:port
+
+
getUri() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
getURI() - Method in class org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper
+
 
+
getUri() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
getValue() - Method in class org.springframework.cloud.client.discovery.event.HeartbeatEvent
+
+
A value representing the state of the service catalog.
+
+
getValue() - Method in class org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent
+
 
+
+ + + +

H

+
+
handle(ApplicationReadyEvent) - Method in class org.springframework.cloud.endpoint.event.RefreshEventListener
+
 
+
handle(RefreshEvent) - Method in class org.springframework.cloud.endpoint.event.RefreshEventListener
+
 
+
hasDefaultFactory() - Method in class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+
 
+
hasDefaultFactory() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
HasFeatures - Class in org.springframework.cloud.client.actuator
+
 
+
HasFeatures(List<Class<?>>, List<NamedFeature>) - Constructor for class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
hashCode() - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
health() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
health() - Method in class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder
+
 
+
health() - Method in interface org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator
+
 
+
HeartbeatEvent - Class in org.springframework.cloud.client.discovery.event
+
+
Event DiscoveryClient implementation can broadcast if they support heartbeat's from the + discovery server.
+
+
HeartbeatEvent(Object, Object) - Constructor for class org.springframework.cloud.client.discovery.event.HeartbeatEvent
+
+
Create a new event with a source (for example a discovery client) and a value.
+
+
HeartbeatMonitor - Class in org.springframework.cloud.client.discovery.event
+
+
Helper class for listeners to the HeartbeatEvent providing a convenient way to + determine if there has been a change in state.
+
+
HeartbeatMonitor() - Constructor for class org.springframework.cloud.client.discovery.event.HeartbeatMonitor
+
 
+
Holder(DiscoveryHealthIndicator) - Constructor for class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder
+
 
+
HostInfo(String) - Constructor for class org.springframework.cloud.commons.util.InetUtils.HostInfo
+
 
+
HostInfo() - Constructor for class org.springframework.cloud.commons.util.InetUtils.HostInfo
+
 
+
HostInfoEnvironmentPostProcessor - Class in org.springframework.cloud.client
+
 
+
HostInfoEnvironmentPostProcessor() - Constructor for class org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
+
 
+
+ + + +

I

+
+
IdUtils - Class in org.springframework.cloud.commons.util
+
 
+
IdUtils() - Constructor for class org.springframework.cloud.commons.util.IdUtils
+
 
+
InetUtils - Class in org.springframework.cloud.commons.util
+
 
+
InetUtils(InetUtilsProperties) - Constructor for class org.springframework.cloud.commons.util.InetUtils
+
 
+
inetUtils(InetUtilsProperties) - Method in class org.springframework.cloud.commons.util.UtilAutoConfiguration
+
 
+
InetUtils.HostInfo - Class in org.springframework.cloud.commons.util
+
 
+
InetUtilsProperties - Class in org.springframework.cloud.commons.util
+
 
+
InetUtilsProperties() - Constructor for class org.springframework.cloud.commons.util.InetUtilsProperties
+
 
+
inetUtilsProperties() - Method in class org.springframework.cloud.commons.util.UtilAutoConfiguration
+
 
+
init() - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+
+
Deprecated.
+
init() - Method in class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration
+
 
+
initialize(ConfigurableApplicationContext) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
initialize(ConfigurableApplicationContext) - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
InstanceRegisteredEvent<T> - Class in org.springframework.cloud.client.discovery.event
+
+
Event to be published after the local service instance registers itself with a + discovery service.
+
+
InstanceRegisteredEvent(Object, T) - Constructor for class org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent
+
+
Create a new InstanceRegisteredEvent instance.
+
+
intercept(HttpRequest, byte[], AsyncClientHttpRequestExecution) - Method in class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor
+
 
+
intercept(HttpRequest, byte[], ClientHttpRequestExecution) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
+
 
+
intercept(HttpRequest, byte[], ClientHttpRequestExecution) - Method in class org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
+
 
+
InterceptorRetryPolicy - Class in org.springframework.cloud.client.loadbalancer
+
+
RetryPolicy used by the LoadBalancerClient when retrying failed requests.
+
+
InterceptorRetryPolicy(HttpRequest, LoadBalancedRetryPolicy, ServiceInstanceChooser, String) - Constructor for class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
+
Creates a new retry policy.
+
+
invoke() - Method in class org.springframework.cloud.client.actuator.FeaturesEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.context.restart.RestartMvcEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.endpoint.GenericPostableMvcEndpoint
+
 
+
invoke() - Method in class org.springframework.cloud.endpoint.RefreshEndpoint
+
 
+
isAllowOverride() - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
isAutoStartup() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
isDifferent(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
isDisabled(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
isEnabled() - Method in class org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector
+
 
+
isEnabled() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
isEnabled() - Method in class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+
 
+
isEnabled() - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties
+
+
Returns true if the load balancer should retry failed requests.
+
+
isEnabled() - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
isFailFast() - Method in class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
+
 
+
isFailOnError() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
isOverrideNone() - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
isOverrideSystemProperties() - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
isRunning() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
isRunning() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
isSame(BeanFactory) - Static method in class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
isSecure() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
isSecure() - Method in interface org.springframework.cloud.client.ServiceInstance
+
 
+
isSensitive() - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
isSensitive() - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
isStrong() - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
+ + + +

K

+
+
KeyCondition() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition
+
 
+
KeyFormatException - Exception in org.springframework.cloud.context.encrypt
+
 
+
KeyFormatException() - Constructor for exception org.springframework.cloud.context.encrypt.KeyFormatException
+
 
+
KeyProperties - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
KeyProperties() - Constructor for class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
KeyProperties.KeyStore - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
KeyProperties.Rsa - Class in org.springframework.cloud.bootstrap.encrypt
+
 
+
KeyStore() - Constructor for class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
+ + + +

L

+
+
LifecycleMvcEndpointAutoConfiguration - Class in org.springframework.cloud.autoconfigure
+
+
Autoconfiguration for some MVC endpoints governing the application context lifecycle.
+
+
LifecycleMvcEndpointAutoConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
LoadBalanced - Annotation Type in org.springframework.cloud.client.loadbalancer
+
+
Annotation to mark a RestTemplate bean to be configured to use a LoadBalancerClient
+
+
loadBalancedRestTemplateInitializer(List<RestTemplateCustomizer>) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
+
 
+
LoadBalancedRetryContext - Class in org.springframework.cloud.client.loadbalancer
+
+
RetryContext for load balanced retries.
+
+
LoadBalancedRetryContext(RetryContext, HttpRequest) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Creates a new load balanced context.
+
+
LoadBalancedRetryPolicy - Interface in org.springframework.cloud.client.loadbalancer
+
+
Retry logic to use for the LoadBalancerClient.
+
+
LoadBalancedRetryPolicyFactory - Interface in org.springframework.cloud.client.loadbalancer
+
+
Responsible for creating the LoadBalancedRetryPolicy.
+
+
LoadBalancedRetryPolicyFactory.NeverRetryFactory - Class in org.springframework.cloud.client.loadbalancer
+
 
+
LoadBalancerAutoConfiguration - Class in org.springframework.cloud.client.loadbalancer
+
+
Auto configuration for Ribbon (client side load balancing).
+
+
LoadBalancerAutoConfiguration() - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
+
 
+
LoadBalancerClient - Interface in org.springframework.cloud.client.loadbalancer
+
+
Represents a client side load balancer
+
+
LoadBalancerInterceptor - Class in org.springframework.cloud.client.loadbalancer
+
 
+
LoadBalancerInterceptor(LoadBalancerClient, LoadBalancerRequestFactory) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
+
 
+
LoadBalancerInterceptor(LoadBalancerClient) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
+
 
+
LoadBalancerRequest<T> - Interface in org.springframework.cloud.client.loadbalancer
+
+
Simple interface used by LoadBalancerClient to apply metrics or pre and post + actions around load balancer requests.
+
+
loadBalancerRequestFactory(LoadBalancerClient) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
+
 
+
LoadBalancerRequestFactory - Class in org.springframework.cloud.client.loadbalancer
+
+ +
+
LoadBalancerRequestFactory(LoadBalancerClient, List<LoadBalancerRequestTransformer>) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory
+
 
+
LoadBalancerRequestFactory(LoadBalancerClient) - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory
+
 
+
LoadBalancerRequestTransformer - Interface in org.springframework.cloud.client.loadbalancer
+
+
Allows applications to transform the load balanced HttpRequest given + the chosen ServiceInstance
+
+
LoadBalancerRetryProperties - Class in org.springframework.cloud.client.loadbalancer
+
+
Configuration properties for the LoadBalancerClient.
+
+
LoadBalancerRetryProperties() - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties
+
 
+
locate(Environment) - Method in interface org.springframework.cloud.bootstrap.config.PropertySourceLocator
+
 
+
loggingRebinder() - Static method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
LoggingRebinder - Class in org.springframework.cloud.logging
+
+
Listener that looks for EnvironmentChangeEvent and rebinds logger levels if any + changed.
+
+
LoggingRebinder() - Constructor for class org.springframework.cloud.logging.LoggingRebinder
+
 
+
LoggingSystemShutdownListener - Class in org.springframework.cloud.bootstrap
+
+
Cleans up the logging system immediately after the bootstrap context is created on + startup.
+
+
LoggingSystemShutdownListener() - Constructor for class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
+ + + +

M

+
+
ManagementServerPortUtils - Class in org.springframework.cloud.client.discovery
+
 
+
ManagementServerPortUtils() - Constructor for class org.springframework.cloud.client.discovery.ManagementServerPortUtils
+
 
+
ManagementServerPortUtils.ManagementServerPort - Enum in org.springframework.cloud.client.discovery
+
 
+
+ + + +

N

+
+
NamedContextFactory<C extends NamedContextFactory.Specification> - Class in org.springframework.cloud.context.named
+
+
Creates a set of child contexts that allows a set of Specifications to define the beans + in each child context.
+
+
NamedContextFactory(Class<?>, String, String) - Constructor for class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
NamedContextFactory.Specification - Interface in org.springframework.cloud.context.named
+
 
+
namedFeature(String, Class<?>) - Static method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
NamedFeature - Class in org.springframework.cloud.client.actuator
+
 
+
NamedFeature() - Constructor for class org.springframework.cloud.client.actuator.NamedFeature
+
 
+
namedFeatures(NamedFeature...) - Static method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
namedFeatures(String, Class<?>, String, Class<?>) - Static method in class org.springframework.cloud.client.actuator.HasFeatures
+
 
+
NeverRetryFactory() - Constructor for class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory
+
 
+
NoopDiscoveryClient - Class in org.springframework.cloud.client.discovery.noop
+
+
Deprecated. + +
+
+
NoopDiscoveryClient(ServiceInstance) - Constructor for class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+
+
Deprecated.
+
NoopDiscoveryClientAutoConfiguration - Class in org.springframework.cloud.client.discovery.noop
+
+
Deprecated. +
Use + instead
+
+
+
NoopDiscoveryClientAutoConfiguration() - Constructor for class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+
+
Deprecated.
+
NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration - Class in org.springframework.cloud.client.discovery.noop
+
+
Deprecated.
+
+ + + +

O

+
+
onApplicationEvent(ApplicationEnvironmentPreparedEvent) - Method in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
onApplicationEvent(ApplicationEnvironmentPreparedEvent) - Method in class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
onApplicationEvent(EmbeddedServletContainerInitializedEvent) - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
onApplicationEvent(InstanceRegisteredEvent<?>) - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
onApplicationEvent(ContextRefreshedEvent) - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+
+
Deprecated.
+
onApplicationEvent(EnvironmentChangeEvent) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
onApplicationEvent(ApplicationPreparedEvent) - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
onApplicationEvent(ApplicationEvent) - Method in class org.springframework.cloud.context.restart.RestartListener
+
 
+
onApplicationEvent(EnvironmentChangeEvent) - Method in class org.springframework.cloud.logging.LoggingRebinder
+
 
+
open(RetryContext) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
org.springframework.cloud.autoconfigure - package org.springframework.cloud.autoconfigure
+
 
+
org.springframework.cloud.bootstrap - package org.springframework.cloud.bootstrap
+
 
+
org.springframework.cloud.bootstrap.config - package org.springframework.cloud.bootstrap.config
+
 
+
org.springframework.cloud.bootstrap.encrypt - package org.springframework.cloud.bootstrap.encrypt
+
 
+
org.springframework.cloud.client - package org.springframework.cloud.client
+
 
+
org.springframework.cloud.client.actuator - package org.springframework.cloud.client.actuator
+
 
+
org.springframework.cloud.client.circuitbreaker - package org.springframework.cloud.client.circuitbreaker
+
 
+
org.springframework.cloud.client.discovery - package org.springframework.cloud.client.discovery
+
 
+
org.springframework.cloud.client.discovery.event - package org.springframework.cloud.client.discovery.event
+
 
+
org.springframework.cloud.client.discovery.health - package org.springframework.cloud.client.discovery.health
+
 
+
org.springframework.cloud.client.discovery.noop - package org.springframework.cloud.client.discovery.noop
+
 
+
org.springframework.cloud.client.discovery.simple - package org.springframework.cloud.client.discovery.simple
+
 
+
org.springframework.cloud.client.hypermedia - package org.springframework.cloud.client.hypermedia
+
 
+
org.springframework.cloud.client.loadbalancer - package org.springframework.cloud.client.loadbalancer
+
 
+
org.springframework.cloud.client.serviceregistry - package org.springframework.cloud.client.serviceregistry
+
 
+
org.springframework.cloud.client.serviceregistry.endpoint - package org.springframework.cloud.client.serviceregistry.endpoint
+
 
+
org.springframework.cloud.commons.util - package org.springframework.cloud.commons.util
+
 
+
org.springframework.cloud.context.config - package org.springframework.cloud.context.config
+
 
+
org.springframework.cloud.context.config.annotation - package org.springframework.cloud.context.config.annotation
+
 
+
org.springframework.cloud.context.encrypt - package org.springframework.cloud.context.encrypt
+
 
+
org.springframework.cloud.context.environment - package org.springframework.cloud.context.environment
+
 
+
org.springframework.cloud.context.named - package org.springframework.cloud.context.named
+
 
+
org.springframework.cloud.context.properties - package org.springframework.cloud.context.properties
+
 
+
org.springframework.cloud.context.refresh - package org.springframework.cloud.context.refresh
+
 
+
org.springframework.cloud.context.restart - package org.springframework.cloud.context.restart
+
 
+
org.springframework.cloud.context.scope - package org.springframework.cloud.context.scope
+
 
+
org.springframework.cloud.context.scope.refresh - package org.springframework.cloud.context.scope.refresh
+
 
+
org.springframework.cloud.context.scope.thread - package org.springframework.cloud.context.scope.thread
+
 
+
org.springframework.cloud.endpoint - package org.springframework.cloud.endpoint
+
 
+
org.springframework.cloud.endpoint.event - package org.springframework.cloud.endpoint.event
+
 
+
org.springframework.cloud.health - package org.springframework.cloud.health
+
 
+
org.springframework.cloud.logging - package org.springframework.cloud.logging
+
 
+
override - Variable in class org.springframework.cloud.commons.util.InetUtils.HostInfo
+
 
+
+ + + +

P

+
+
ParentHeartbeatEvent - Class in org.springframework.cloud.client.discovery.event
+
+
Heartbeat Event that a Parent ApplicationContext can send to a child Context.
+
+
ParentHeartbeatEvent(Object, Object) - Constructor for class org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent
+
 
+
pause() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
pauseEndpoint(RestartEndpoint) - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
+
 
+
PauseEndpoint() - Constructor for class org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint
+
 
+
pauseMvcEndpoint(RestartEndpoint.PauseEndpoint) - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
portFinder(ApplicationContext) - Method in class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
+
+
Deprecated.
+
postProcessAfterInitialization(Object, String) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
postProcessBeanDefinitionRegistry(BeanDefinitionRegistry) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
+
 
+
postProcessBeanDefinitionRegistry(BeanDefinitionRegistry) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
postProcessBeanFactory(ConfigurableListableBeanFactory) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
+
 
+
postProcessBeanFactory(ConfigurableListableBeanFactory) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
postProcessBeforeInitialization(Object, String) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
postProcessEnvironment(ConfigurableEnvironment, SpringApplication) - Method in class org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
+
 
+
PREFIX - Static variable in class org.springframework.cloud.commons.util.InetUtilsProperties
+
 
+
PropertySourceBootstrapConfiguration - Class in org.springframework.cloud.bootstrap.config
+
 
+
PropertySourceBootstrapConfiguration() - Constructor for class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
PropertySourceBootstrapProperties - Class in org.springframework.cloud.bootstrap.config
+
 
+
PropertySourceBootstrapProperties() - Constructor for class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
PropertySourceLocator - Interface in org.springframework.cloud.bootstrap.config
+
+
Strategy for locating (possibly remote) property sources for the Environment.
+
+
put(String, Object) - Method in interface org.springframework.cloud.context.scope.ScopeCache
+
+
Put a value in the cache if the key is not already used.
+
+
put(String, Object) - Method in class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
put(String, Object) - Method in class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
+ + + +

R

+
+
rebind() - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
rebind(String) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
reconstructURI(ServiceInstance, URI) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerClient
+
+
Create a proper URI with a real host and port for systems to utilize.
+
+
Refresh() - Constructor for class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh
+
 
+
refresh() - Method in class org.springframework.cloud.context.refresh.ContextRefresher
+
 
+
refresh(String) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
refresh() - Method in class org.springframework.cloud.endpoint.RefreshEndpoint
+
 
+
refreshAll() - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
RefreshAutoConfiguration - Class in org.springframework.cloud.autoconfigure
+
+
Autoconfiguration for the refresh scope and associated features to do with changes in + the Environment (e.g.
+
+
RefreshAutoConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
RefreshAutoConfiguration.RefreshScopeConfiguration - Class in org.springframework.cloud.autoconfigure
+
 
+
refreshEndpoint(ContextRefresher) - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration
+
 
+
RefreshEndpoint - Class in org.springframework.cloud.endpoint
+
 
+
RefreshEndpoint(ContextRefresher) - Constructor for class org.springframework.cloud.endpoint.RefreshEndpoint
+
 
+
RefreshEndpointAutoConfiguration - Class in org.springframework.cloud.autoconfigure
+
 
+
RefreshEndpointAutoConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
+
 
+
RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration - Class in org.springframework.cloud.autoconfigure
+
 
+
RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration - Class in org.springframework.cloud.autoconfigure
+
 
+
RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration - Class in org.springframework.cloud.autoconfigure
+
 
+
RefreshEndpointConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration
+
 
+
RefreshEvent - Class in org.springframework.cloud.endpoint.event
+
+
Event that triggers a call to RefreshEndpoint.refresh()
+
+
RefreshEvent(Object, Object, String) - Constructor for class org.springframework.cloud.endpoint.event.RefreshEvent
+
 
+
refreshEventListener(ContextRefresher) - Method in class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+
 
+
RefreshEventListener - Class in org.springframework.cloud.endpoint.event
+
+
Calls RefreshEventListener.refresh when a RefreshEvent is received.
+
+
RefreshEventListener(ContextRefresher) - Constructor for class org.springframework.cloud.endpoint.event.RefreshEventListener
+
 
+
refreshMvcEndpoint(RefreshEndpoint) - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
RefreshScope - Annotation Type in org.springframework.cloud.context.config.annotation
+
+
Convenience annotation to put a @Bean definition in + refresh scope.
+
+
RefreshScope - Class in org.springframework.cloud.context.scope.refresh
+
+
+ A Scope implementation that allows for beans to be refreshed dynamically at runtime + (see RefreshScope.refresh(String) and RefreshScope.refreshAll()).
+
+
RefreshScope() - Constructor for class org.springframework.cloud.context.scope.refresh.RefreshScope
+
+
Create a scope instance and give it the default name: "refresh".
+
+
RefreshScopeConfiguration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
+
 
+
RefreshScopeHealthIndicator - Class in org.springframework.cloud.health
+
+
Health indicator for the refresh scope and configuration properties rebinding.
+
+
RefreshScopeHealthIndicator(RefreshScope, ConfigurationPropertiesRebinder) - Constructor for class org.springframework.cloud.health.RefreshScopeHealthIndicator
+
 
+
RefreshScopeRefreshedEvent - Class in org.springframework.cloud.context.scope.refresh
+
 
+
RefreshScopeRefreshedEvent() - Constructor for class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+
 
+
RefreshScopeRefreshedEvent(String) - Constructor for class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+
 
+
register() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
Register the local service with the DiscoveryClient
+
+
register() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
+
Register the local service with the ServiceRegistry
+
+
register(R) - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Register the registration.
+
+
registerDestructionCallback(String, Runnable) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
registerManagement() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
Register the local management service with the DiscoveryClient
+
+
registerManagement() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
+
Register the local management service with the ServiceRegistry
+
+
registerThrowable(RetryContext, Throwable) - Method in class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+
 
+
registerThrowable(LoadBalancedRetryContext, Throwable) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy
+
+
Called when the execution fails.
+
+
Registration - Interface in org.springframework.cloud.client.serviceregistry
+
+
A marker interface used by a ServiceRegistry.
+
+
RemoteResource - Interface in org.springframework.cloud.client.hypermedia
+
+
A REST resource that can be discovered and can be either gone or available.
+
+
RemoteResourceRefresher - Class in org.springframework.cloud.client.hypermedia
+
+
A ScheduledTaskRegistrar that verifies all DiscoveredResource instances in the system based + on the given timing configuration.
+
+
RemoteResourceRefresher() - Constructor for class org.springframework.cloud.client.hypermedia.RemoteResourceRefresher
+
 
+
remove(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
remove(String) - Method in interface org.springframework.cloud.context.scope.ScopeCache
+
+
Remove the object with this name from the cache.
+
+
remove(String) - Method in class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
remove(String) - Method in class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
reset() - Method in class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
reset() - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
resolveContextualObject(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
 
+
restart() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
restartEndpoint() - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
+
 
+
restartEndpoint() - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
+
 
+
RestartEndpoint - Class in org.springframework.cloud.context.restart
+
+
An endpoint that restarts the application context.
+
+
RestartEndpoint() - Constructor for class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
RestartEndpoint.PauseEndpoint - Class in org.springframework.cloud.context.restart
+
 
+
RestartEndpoint.ResumeEndpoint - Class in org.springframework.cloud.context.restart
+
 
+
RestartEndpointWithIntegration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
+
 
+
RestartEndpointWithoutIntegration() - Constructor for class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
+
 
+
RestartListener - Class in org.springframework.cloud.context.restart
+
+
A listener that stores enough information about an application as it starts, to be able + to restart it later if needed.
+
+
RestartListener() - Constructor for class org.springframework.cloud.context.restart.RestartListener
+
 
+
restartMvcEndpoint() - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
RestartMvcEndpoint - Class in org.springframework.cloud.context.restart
+
+
MVC endpoint to allow an application to be restarted on a POST (to /restart by + default).
+
+
RestartMvcEndpoint(RestartEndpoint) - Constructor for class org.springframework.cloud.context.restart.RestartMvcEndpoint
+
 
+
RestTemplateCustomizer - Interface in org.springframework.cloud.client.loadbalancer
+
 
+
resume() - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
resumeEndpoint(RestartEndpoint) - Method in class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
+
 
+
ResumeEndpoint() - Constructor for class org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint
+
 
+
resumeMvcEndpoint(RestartEndpoint.ResumeEndpoint) - Method in class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+
 
+
RetryLoadBalancerInterceptor - Class in org.springframework.cloud.client.loadbalancer
+
 
+
RetryLoadBalancerInterceptor(LoadBalancerClient, RetryTemplate, LoadBalancerRetryProperties, LoadBalancedRetryPolicyFactory, LoadBalancerRequestFactory) - Constructor for class org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
+
 
+
RetryLoadBalancerInterceptor(LoadBalancerClient, RetryTemplate, LoadBalancerRetryProperties, LoadBalancedRetryPolicyFactory) - Constructor for class org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
+
 
+
Rsa() - Constructor for class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
RsaEncryptionConfiguration() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
+
 
+
+ + + +

S

+
+
ScopeCache - Interface in org.springframework.cloud.context.scope
+
+
A special purpose cache interface specifically for the GenericScope to use to manage cached bean instances.
+
+
SCOPED_TARGET_PREFIX - Static variable in class org.springframework.cloud.context.scope.GenericScope
+
 
+
selectImports(AnnotationMetadata) - Method in class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+
 
+
selectImports(AnnotationMetadata) - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
ServiceInstance - Interface in org.springframework.cloud.client
+
+
Represents an instance of a Service in a Discovery System
+
+
ServiceInstanceChooser - Interface in org.springframework.cloud.client.loadbalancer
+
+
Implemented by classes which use a load balancer to choose a server to + send a request to.
+
+
ServiceInstanceProvider - Interface in org.springframework.cloud.client.hypermedia
+
+
A component that will provide a ServiceInstance or can express the absence of one by returning + null.
+
+
ServiceRegistry<R extends Registration> - Interface in org.springframework.cloud.client.serviceregistry
+
+
Contract to register and deregister instances with a Service Registry.
+
+
ServiceRegistryAutoConfiguration - Class in org.springframework.cloud.client.serviceregistry
+
 
+
ServiceRegistryAutoConfiguration() - Constructor for class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration
+
 
+
ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration - Class in org.springframework.cloud.client.serviceregistry
+
 
+
ServiceRegistryEndpoint - Class in org.springframework.cloud.client.serviceregistry.endpoint
+
+
Endpoint to display and set the service instance status using the service registry.
+
+
ServiceRegistryEndpoint(ServiceRegistry<?>) - Constructor for class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
serviceRegistryEndpoint(ServiceRegistry) - Method in class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
+
 
+
ServiceRegistryEndpointConfiguration() - Constructor for class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
+
 
+
ServiceRequestWrapper - Class in org.springframework.cloud.client.loadbalancer
+
 
+
ServiceRequestWrapper(HttpRequest, ServiceInstance, LoadBalancerClient) - Constructor for class org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper
+
 
+
setAlgorithm(RsaAlgorithm) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
setAlias(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
setAllowOverride(boolean) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.client.actuator.FeaturesEndpoint
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
+
 
+
setApplicationContext(ApplicationContext) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
setBeanClassLoader(ClassLoader) - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
setBeanLifecycleManager(BeanLifecycleDecorator<?>) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
Helper to manage the creation and destruction of beans.
+
+
setBeanMetaDataStore(ConfigurationBeanFactoryMetaData) - Method in class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
+
 
+
setConfigurations(List<C>) - Method in class org.springframework.cloud.context.named.NamedContextFactory
+
 
+
setConfiguredPort(int) - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
+
setEager(boolean) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
+
Flag to determine whether all beans in refresh scope should be instantiated eagerly + on startup.
+
+
setEnabled(boolean) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties
+
+
Sets whether the load balancer should retry failed request.
+
+
setEnvironment(Environment) - Method in class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
setEnvironment(Environment) - Method in class org.springframework.cloud.logging.LoggingRebinder
+
 
+
setEnvironmentManager(EnvironmentManager) - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
setFailFast(boolean) - Method in class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
+
 
+
setFailOnError(boolean) - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
+
Strategy to determine how to handle exceptions during decryption.
+
+
setFailOnError(boolean) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
setId(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
Manual override for the serialization id that will be used to identify the bean + factory.
+
+
setInstances(Map<String, List<SimpleDiscoveryProperties.SimpleServiceInstance>>) - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties
+
 
+
setIntegrationMBeanExporter(Object) - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
setKey(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
setKeyStore(KeyProperties.KeyStore) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties
+
 
+
setLocation(Resource) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
setLogLevels(LoggingSystem, Environment) - Method in class org.springframework.cloud.logging.LoggingRebinder
+
 
+
setName(String) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
The name of this scope.
+
+
setOrder(int) - Method in class org.springframework.cloud.bootstrap.BootstrapApplicationListener
+
 
+
setOrder(int) - Method in class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
+
 
+
setOrder(int) - Method in class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+
 
+
setOrder(int) - Method in class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
+
 
+
setOrder(int) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
setOverrideNone(boolean) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
setOverrideSystemProperties(boolean) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+
 
+
setPassword(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
setProperty(String, String) - Method in class org.springframework.cloud.context.environment.EnvironmentManager
+
 
+
setPropertySourceLocators(Collection<PropertySourceLocator>) - Method in class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+
 
+
setProxyTargetClass(boolean) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
Flag to indicate that proxies should be created for the concrete type, not just the + interfaces, of the scoped beans.
+
+
setRegistration(Registration) - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
setRequest(HttpRequest) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Sets the request that is being load baalnced.
+
+
setRestOperations(RestOperations) - Method in class org.springframework.cloud.client.hypermedia.DiscoveredResource
+
+
Configures the RestOperations to use to execute the traversal and verifying HEAD calls.
+
+
setSalt(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
setScopeCache(ScopeCache) - Method in class org.springframework.cloud.context.scope.GenericScope
+
+
The cache implementation to use for bean instances in this scope.
+
+
setSecret(String) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
+
 
+
setServiceInstance(ServiceInstance) - Method in class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
+
+
Sets the service instance to use during the retry.
+
+
setStatus(String) - Method in class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
+
 
+
setStatus(R, String) - Method in interface org.springframework.cloud.client.serviceregistry.ServiceRegistry
+
+
Sets the status of the registration.
+
+
setStrong(boolean) - Method in class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
+
 
+
setTimeout(long) - Method in class org.springframework.cloud.context.restart.RestartEndpoint
+
 
+
setUri(String) - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
shouldRegisterManagement() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
SimpleDiscoveryClient - Class in org.springframework.cloud.client.discovery.simple
+
+
A DiscoveryClient that will use the + properties file as a source of service instances
+
+
SimpleDiscoveryClient(SimpleDiscoveryProperties) - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+
 
+
simpleDiscoveryClient() - Method in class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration
+
 
+
SimpleDiscoveryClientAutoConfiguration - Class in org.springframework.cloud.client.discovery.simple
+
+
Spring Boot Auto-Configuration for Simple Properties based Discovery Client
+
+
SimpleDiscoveryClientAutoConfiguration() - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration
+
 
+
SimpleDiscoveryProperties - Class in org.springframework.cloud.client.discovery.simple
+
+
Properties to hold the details of a + DiscoveryClient service instances + for a given service
+
+
SimpleDiscoveryProperties() - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties
+
 
+
SimpleDiscoveryProperties.SimpleServiceInstance - Class in org.springframework.cloud.client.discovery.simple
+
 
+
SimpleServiceInstance() - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
SimpleServiceInstance(String) - Constructor for class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
+
 
+
SpringCloudApplication - Annotation Type in org.springframework.cloud.client
+
 
+
SpringFactoryImportSelector<T> - Class in org.springframework.cloud.commons.util
+
+
Selects configurations to load defined by the generic type T.
+
+
SpringFactoryImportSelector() - Constructor for class org.springframework.cloud.commons.util.SpringFactoryImportSelector
+
 
+
StandardBeanLifecycleDecorator - Class in org.springframework.cloud.context.config
+
+
A BeanLifecycleDecorator that tries to protect against concurrent access to a bean during its own destruction.
+
+
StandardBeanLifecycleDecorator(boolean) - Constructor for class org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
+
 
+
StandardScopeCache - Class in org.springframework.cloud.context.scope
+
+
A simple cache implementation backed by a concurrent map.
+
+
StandardScopeCache() - Constructor for class org.springframework.cloud.context.scope.StandardScopeCache
+
 
+
start() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
start(ContextRefreshedEvent) - Method in class org.springframework.cloud.context.scope.refresh.RefreshScope
+
 
+
StaticServiceInstanceProvider - Class in org.springframework.cloud.client.hypermedia
+
+
A ServiceInstanceProvider that will always return the configured ServiceInstance.
+
+
StaticServiceInstanceProvider() - Constructor for class org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider
+
 
+
stop(Runnable) - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
stop() - Method in class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
+
+
Deprecated.
+
stop() - Method in class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+
 
+
supportsEventType(Class<? extends ApplicationEvent>) - Method in class org.springframework.cloud.context.restart.RestartListener
+
 
+
supportsSourceType(Class<?>) - Method in class org.springframework.cloud.context.restart.RestartListener
+
 
+
+ + + +

T

+
+
textEncryptor() - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
+
 
+
textEncryptor() - Method in class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
+
 
+
ThreadLocalScopeCache - Class in org.springframework.cloud.context.scope.thread
+
 
+
ThreadLocalScopeCache() - Constructor for class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+
 
+
ThreadScope - Class in org.springframework.cloud.context.scope.thread
+
 
+
ThreadScope() - Constructor for class org.springframework.cloud.context.scope.thread.ThreadScope
+
+
Create a scope instance and give it the default name: "thread".
+
+
transformRequest(HttpRequest, ServiceInstance) - Method in interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequestTransformer
+
 
+
TraversalDefinition - Interface in org.springframework.cloud.client.hypermedia
+
+
Callback to define the traversal to a resource.
+
+
+ + + +

U

+
+
update(Object) - Method in class org.springframework.cloud.client.discovery.event.HeartbeatMonitor
+
 
+
UtilAutoConfiguration - Class in org.springframework.cloud.commons.util
+
 
+
UtilAutoConfiguration() - Constructor for class org.springframework.cloud.commons.util.UtilAutoConfiguration
+
 
+
+ + + +

V

+
+
value(Map<String, String>) - Method in class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
+
 
+
valueOf(String) - Static method in enum org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort
+
+
Returns the enum constant of this type with the specified name.
+
+
values() - Static method in enum org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
VanillaEncryptionConfiguration() - Constructor for class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
+
 
+
verifyOrDiscover() - Method in class org.springframework.cloud.client.hypermedia.DiscoveredResource
+
+
Verifies the link to the current
+
+
verifyOrDiscover() - Method in interface org.springframework.cloud.client.hypermedia.RemoteResource
+
+
Discovers the the resource in case it hasn't been yet or became unavailable.
+
+
+A B C D E F G H I K L M N O P R S T U V 
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/index.html b/target/apidocs/index.html new file mode 100644 index 00000000..bc1bb233 --- /dev/null +++ b/target/apidocs/index.html @@ -0,0 +1,76 @@ + + + + + + +Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.html new file mode 100644 index 00000000..ebe0fdc9 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.html @@ -0,0 +1,333 @@ + + + + + + +ConfigurationPropertiesRebinderAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class ConfigurationPropertiesRebinderAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.SmartInitializingSingleton, org.springframework.context.ApplicationContextAware
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnBean(value=org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor.class)
    +public class ConfigurationPropertiesRebinderAutoConfiguration
    +extends Object
    +implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.SmartInitializingSingleton
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ConfigurationPropertiesRebinderAutoConfiguration

        +
        public ConfigurationPropertiesRebinderAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        +
      • +
      + + + +
        +
      • +

        configurationPropertiesBeans

        +
        @Bean
        + @ConditionalOnMissingBean(search=CURRENT)
        +public ConfigurationPropertiesBeans configurationPropertiesBeans()
        +
      • +
      + + + +
        +
      • +

        configurationPropertiesRebinder

        +
        @Bean
        + @ConditionalOnMissingBean(search=CURRENT)
        +public ConfigurationPropertiesRebinder configurationPropertiesRebinder(ConfigurationPropertiesBeans beans,
        +                                                                                                                        org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor binder)
        +
      • +
      + + + +
        +
      • +

        afterSingletonsInstantiated

        +
        public void afterSingletonsInstantiated()
        +
        +
        Specified by:
        +
        afterSingletonsInstantiated in interface org.springframework.beans.factory.SmartInitializingSingleton
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.html new file mode 100644 index 00000000..bbced78e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/LifecycleMvcEndpointAutoConfiguration.html @@ -0,0 +1,349 @@ + + + + + + +LifecycleMvcEndpointAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class LifecycleMvcEndpointAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.boot.actuate.endpoint.EnvironmentEndpoint.class)
    + @ConditionalOnWebApplication
    + @ConditionalOnBean(value=RestartEndpoint.class)
    +public class LifecycleMvcEndpointAutoConfiguration
    +extends Object
    +
    Autoconfiguration for some MVC endpoints governing the application context lifecycle. + Provides restart, pause, resume, refresh (environment) and environment update + endpoints.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LifecycleMvcEndpointAutoConfiguration

        +
        public LifecycleMvcEndpointAutoConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.RefreshScopeConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.RefreshScopeConfiguration.html new file mode 100644 index 00000000..4de59e1f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.RefreshScopeConfiguration.html @@ -0,0 +1,313 @@ + + + + + + +RefreshAutoConfiguration.RefreshScopeConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshAutoConfiguration.RefreshScopeConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
    +
    +
    +
    Enclosing class:
    +
    RefreshAutoConfiguration
    +
    +
    +
    +
    @Component
    + @ConditionalOnMissingBean(value=RefreshScope.class)
    +protected static class RefreshAutoConfiguration.RefreshScopeConfiguration
    +extends Object
    +implements org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshScopeConfiguration

        +
        protected RefreshScopeConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        postProcessBeanFactory

        +
        public void postProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory)
        +                            throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeanFactory in interface org.springframework.beans.factory.config.BeanFactoryPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        postProcessBeanDefinitionRegistry

        +
        public void postProcessBeanDefinitionRegistry(org.springframework.beans.factory.support.BeanDefinitionRegistry registry)
        +                                       throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeanDefinitionRegistry in interface org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.html new file mode 100644 index 00000000..4ca1cb39 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshAutoConfiguration.html @@ -0,0 +1,348 @@ + + + + + + +RefreshAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=RefreshScope.class)
    +public class RefreshAutoConfiguration
    +extends Object
    +
    Autoconfiguration for the refresh scope and associated features to do with changes in + the Environment (e.g. rebinding logger levels).
    +
    +
    Author:
    +
    Dave Syer, Venil Noronha
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshAutoConfiguration

        +
        public RefreshAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        loggingRebinder

        +
        @Bean
        + @ConditionalOnMissingBean
        +public static LoggingRebinder loggingRebinder()
        +
      • +
      + + + +
        +
      • +

        environmentManager

        +
        @Bean
        + @ConditionalOnMissingBean
        +public EnvironmentManager environmentManager(org.springframework.core.env.ConfigurableEnvironment environment)
        +
      • +
      + + + +
        +
      • +

        contextRefresher

        +
        @Bean
        + @ConditionalOnMissingBean
        +public ContextRefresher contextRefresher(org.springframework.context.ConfigurableApplicationContext context,
        +                                                                          RefreshScope scope)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html new file mode 100644 index 00000000..9762a229 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html @@ -0,0 +1,285 @@ + + + + + + +RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshEndpointConfiguration

        +
        protected RefreshEndpointConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html new file mode 100644 index 00000000..b711810a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html @@ -0,0 +1,282 @@ + + + + + + +RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    RefreshEndpointAutoConfiguration
    +
    +
    +
    +
    @ConditionalOnClass(value=org.springframework.integration.monitor.IntegrationMBeanExporter.class)
    +protected static class RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartEndpointWithIntegration

        +
        protected RestartEndpointWithIntegration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        restartEndpoint

        +
        @Bean
        + @ConditionalOnMissingBean
        +public RestartEndpoint restartEndpoint()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html new file mode 100644 index 00000000..7fb40ab1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html @@ -0,0 +1,282 @@ + + + + + + +RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    RefreshEndpointAutoConfiguration
    +
    +
    +
    +
    @ConditionalOnMissingClass(value="org.springframework.integration.monitor.IntegrationMBeanExporter")
    +protected static class RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartEndpointWithoutIntegration

        +
        protected RestartEndpointWithoutIntegration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        restartEndpoint

        +
        @Bean
        + @ConditionalOnMissingBean
        +public RestartEndpoint restartEndpoint()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.html new file mode 100644 index 00000000..d7817246 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/RefreshEndpointAutoConfiguration.html @@ -0,0 +1,323 @@ + + + + + + +RefreshEndpointAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.autoconfigure
+

Class RefreshEndpointAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.boot.actuate.endpoint.Endpoint.class)
    +public class RefreshEndpointAutoConfiguration
    +extends Object
    +
    +
    Author:
    +
    Dave Syer, Spencer Gibb, Venil Noronha
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/class-use/ConfigurationPropertiesRebinderAutoConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/ConfigurationPropertiesRebinderAutoConfiguration.html new file mode 100644 index 00000000..aca43eb7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/ConfigurationPropertiesRebinderAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/class-use/LifecycleMvcEndpointAutoConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/LifecycleMvcEndpointAutoConfiguration.html new file mode 100644 index 00000000..fad27742 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/LifecycleMvcEndpointAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.LifecycleMvcEndpointAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.RefreshScopeConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.RefreshScopeConfiguration.html new file mode 100644 index 00000000..40cfaa0e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.RefreshScopeConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshAutoConfiguration.RefreshScopeConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.html new file mode 100644 index 00000000..8b3e48b8 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshAutoConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html new file mode 100644 index 00000000..5b17d31e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RefreshEndpointConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html new file mode 100644 index 00000000..2a754c17 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithIntegration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html new file mode 100644 index 00000000..8373e80e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration.RestartEndpointWithoutIntegration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.html b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.html new file mode 100644 index 00000000..71551587 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/class-use/RefreshEndpointAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration

+
+
No usage of org.springframework.cloud.autoconfigure.RefreshEndpointAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/package-frame.html b/target/apidocs/org/springframework/cloud/autoconfigure/package-frame.html new file mode 100644 index 00000000..0af49535 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/package-frame.html @@ -0,0 +1,28 @@ + + + + + + +org.springframework.cloud.autoconfigure (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.autoconfigure

+ + + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/package-summary.html b/target/apidocs/org/springframework/cloud/autoconfigure/package-summary.html new file mode 100644 index 00000000..72953176 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/package-summary.html @@ -0,0 +1,177 @@ + + + + + + +org.springframework.cloud.autoconfigure (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.autoconfigure

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/package-tree.html b/target/apidocs/org/springframework/cloud/autoconfigure/package-tree.html new file mode 100644 index 00000000..0083a4d7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/package-tree.html @@ -0,0 +1,146 @@ + + + + + + +org.springframework.cloud.autoconfigure Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.autoconfigure

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/autoconfigure/package-use.html b/target/apidocs/org/springframework/cloud/autoconfigure/package-use.html new file mode 100644 index 00000000..403a16ce --- /dev/null +++ b/target/apidocs/org/springframework/cloud/autoconfigure/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.autoconfigure (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.autoconfigure

+
+
No usage of org.springframework.cloud.autoconfigure
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/BootstrapApplicationListener.html b/target/apidocs/org/springframework/cloud/bootstrap/BootstrapApplicationListener.html new file mode 100644 index 00000000..09710436 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/BootstrapApplicationListener.html @@ -0,0 +1,403 @@ + + + + + + +BootstrapApplicationListener (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap
+

Class BootstrapApplicationListener

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.BootstrapApplicationListener
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>, org.springframework.core.Ordered
    +
    +
    +
    +
    public class BootstrapApplicationListener
    +extends Object
    +implements org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>, org.springframework.core.Ordered
    +
    A listener that prepares a SpringApplication (e.g. populating its Environment) by + delegating to ApplicationContextInitializer beans in a separate bootstrap + context. The bootstrap context is a SpringApplication created from sources defined in + spring.factories as BootstrapConfiguration, and initialized with external + config taken from "bootstrap.properties" (or yml), instead of the normal + "application.properties".
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BootstrapApplicationListener

        +
        public BootstrapApplicationListener()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent event)
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/BootstrapConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/BootstrapConfiguration.html new file mode 100644 index 00000000..e8e9227b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/BootstrapConfiguration.html @@ -0,0 +1,229 @@ + + + + + + +BootstrapConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap
+

Annotation Type BootstrapConfiguration

+
+
+
+
    +
  • +
    +
    +
    @Target(value=TYPE)
    + @Retention(value=RUNTIME)
    + @Documented
    +public @interface BootstrapConfiguration
    +
    A marker interface used as a key in META-INF/spring.factories. Entries in + the factories file are used to create the bootstrap application context.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Optional Element Summary

      + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional Element and Description
      Class<?>[]exclude +
      Exclude specific auto-configuration classes such that they will never be applied.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        exclude

        +
        public abstract Class<?>[] exclude
        +
        Exclude specific auto-configuration classes such that they will never be applied.
        +
        +
        Default:
        +
        {}
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.html b/target/apidocs/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.html new file mode 100644 index 00000000..1ea245fe --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/LoggingSystemShutdownListener.html @@ -0,0 +1,367 @@ + + + + + + +LoggingSystemShutdownListener (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap
+

Class LoggingSystemShutdownListener

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>, org.springframework.core.Ordered
    +
    +
    +
    +
    public class LoggingSystemShutdownListener
    +extends Object
    +implements org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>, org.springframework.core.Ordered
    +
    Cleans up the logging system immediately after the bootstrap context is created on + startup. Logging will go dark until the ConfigFileApplicationListener fires, but this + is the price we pay for that listener being able to adjust the log levels according to + what it finds in its own configuration.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoggingSystemShutdownListener

        +
        public LoggingSystemShutdownListener()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent event)
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent>
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapApplicationListener.html b/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapApplicationListener.html new file mode 100644 index 00000000..8d27d2ec --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapApplicationListener.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.BootstrapApplicationListener (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.BootstrapApplicationListener

+
+
No usage of org.springframework.cloud.bootstrap.BootstrapApplicationListener
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapConfiguration.html new file mode 100644 index 00000000..6c70695e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/class-use/BootstrapConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.BootstrapConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.BootstrapConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.BootstrapConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/class-use/LoggingSystemShutdownListener.html b/target/apidocs/org/springframework/cloud/bootstrap/class-use/LoggingSystemShutdownListener.html new file mode 100644 index 00000000..b1d49cae --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/class-use/LoggingSystemShutdownListener.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.LoggingSystemShutdownListener (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.LoggingSystemShutdownListener

+
+
No usage of org.springframework.cloud.bootstrap.LoggingSystemShutdownListener
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.html new file mode 100644 index 00000000..5d719c65 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapConfiguration.html @@ -0,0 +1,365 @@ + + + + + + +PropertySourceBootstrapConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.config
+

Class PropertySourceBootstrapConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>, org.springframework.core.Ordered
    +
    +
    +
    +
    @Configuration
    + @EnableConfigurationProperties(value=PropertySourceBootstrapProperties.class)
    +public class PropertySourceBootstrapConfiguration
    +extends Object
    +implements org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>, org.springframework.core.Ordered
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PropertySourceBootstrapConfiguration

        +
        public PropertySourceBootstrapConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + + + + + +
        +
      • +

        initialize

        +
        public void initialize(org.springframework.context.ConfigurableApplicationContext applicationContext)
        +
        +
        Specified by:
        +
        initialize in interface org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.html b/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.html new file mode 100644 index 00000000..9f8cf30e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceBootstrapProperties.html @@ -0,0 +1,339 @@ + + + + + + +PropertySourceBootstrapProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.config
+

Class PropertySourceBootstrapProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="spring.cloud.config")
    +public class PropertySourceBootstrapProperties
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PropertySourceBootstrapProperties

        +
        public PropertySourceBootstrapProperties()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isOverrideNone

        +
        public boolean isOverrideNone()
        +
      • +
      + + + +
        +
      • +

        setOverrideNone

        +
        public void setOverrideNone(boolean overrideNone)
        +
      • +
      + + + +
        +
      • +

        isOverrideSystemProperties

        +
        public boolean isOverrideSystemProperties()
        +
      • +
      + + + +
        +
      • +

        setOverrideSystemProperties

        +
        public void setOverrideSystemProperties(boolean overrideSystemProperties)
        +
      • +
      + + + +
        +
      • +

        isAllowOverride

        +
        public boolean isAllowOverride()
        +
      • +
      + + + +
        +
      • +

        setAllowOverride

        +
        public void setAllowOverride(boolean allowOverride)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceLocator.html b/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceLocator.html new file mode 100644 index 00000000..624f4b6c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/PropertySourceLocator.html @@ -0,0 +1,238 @@ + + + + + + +PropertySourceLocator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.config
+

Interface PropertySourceLocator

+
+
+
+
    +
  • +
    +
    +
    public interface PropertySourceLocator
    +
    Strategy for locating (possibly remote) property sources for the Environment. + Implementations should not fail unless they intend to prevent the application from + starting.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      org.springframework.core.env.PropertySource<?>locate(org.springframework.core.env.Environment environment) 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        locate

        +
        org.springframework.core.env.PropertySource<?> locate(org.springframework.core.env.Environment environment)
        +
        +
        Parameters:
        +
        environment - the current Environment
        +
        Returns:
        +
        a PropertySource or null if there is none
        +
        Throws:
        +
        IllegalStateException - if there is a fail fast condition
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapConfiguration.html new file mode 100644 index 00000000..de3f4c8f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapProperties.html b/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapProperties.html new file mode 100644 index 00000000..d1aaf28c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceBootstrapProperties.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties

+
+
No usage of org.springframework.cloud.bootstrap.config.PropertySourceBootstrapProperties
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceLocator.html b/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceLocator.html new file mode 100644 index 00000000..184a1a72 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/class-use/PropertySourceLocator.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface org.springframework.cloud.bootstrap.config.PropertySourceLocator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.bootstrap.config.PropertySourceLocator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/package-frame.html b/target/apidocs/org/springframework/cloud/bootstrap/config/package-frame.html new file mode 100644 index 00000000..3b663447 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.bootstrap.config (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.bootstrap.config

+ + + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/package-summary.html b/target/apidocs/org/springframework/cloud/bootstrap/config/package-summary.html new file mode 100644 index 00000000..88a27db1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/package-summary.html @@ -0,0 +1,165 @@ + + + + + + +org.springframework.cloud.bootstrap.config (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.bootstrap.config

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/package-tree.html b/target/apidocs/org/springframework/cloud/bootstrap/config/package-tree.html new file mode 100644 index 00000000..5d7506df --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.bootstrap.config Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.bootstrap.config

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/config/package-use.html b/target/apidocs/org/springframework/cloud/bootstrap/config/package-use.html new file mode 100644 index 00000000..b8a273c0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/config/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package org.springframework.cloud.bootstrap.config (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.bootstrap.config

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html new file mode 100644 index 00000000..2e84dba0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html @@ -0,0 +1,311 @@ + + + + + + +EncryptionBootstrapConfiguration.FailsafeTextEncryptor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration.FailsafeTextEncryptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.security.crypto.encrypt.TextEncryptor
    +
    +
    +
    Enclosing class:
    +
    EncryptionBootstrapConfiguration
    +
    +
    +
    +
    protected static class EncryptionBootstrapConfiguration.FailsafeTextEncryptor
    +extends Object
    +implements org.springframework.security.crypto.encrypt.TextEncryptor
    +
    TextEncryptor that just fails, so that users don't get a false sense of security + adding ciphers to config files and not getting them decrypted.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        FailsafeTextEncryptor

        +
        protected FailsafeTextEncryptor()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        encrypt

        +
        public String encrypt(String text)
        +
        +
        Specified by:
        +
        encrypt in interface org.springframework.security.crypto.encrypt.TextEncryptor
        +
        +
      • +
      + + + +
        +
      • +

        decrypt

        +
        public String decrypt(String encryptedText)
        +
        +
        Specified by:
        +
        decrypt in interface org.springframework.security.crypto.encrypt.TextEncryptor
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.KeyCondition.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.KeyCondition.html new file mode 100644 index 00000000..fe2c85d7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.KeyCondition.html @@ -0,0 +1,299 @@ + + + + + + +EncryptionBootstrapConfiguration.KeyCondition (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration.KeyCondition

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.autoconfigure.condition.SpringBootCondition
    • +
    • +
        +
      • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.context.annotation.Condition
    +
    +
    +
    Enclosing class:
    +
    EncryptionBootstrapConfiguration
    +
    +
    +
    +
    public static class EncryptionBootstrapConfiguration.KeyCondition
    +extends org.springframework.boot.autoconfigure.condition.SpringBootCondition
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      KeyCondition() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyCondition

        +
        public KeyCondition()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getMatchOutcome

        +
        public org.springframework.boot.autoconfigure.condition.ConditionOutcome getMatchOutcome(org.springframework.context.annotation.ConditionContext context,
        +                                                                                         org.springframework.core.type.AnnotatedTypeMetadata metadata)
        +
        +
        Specified by:
        +
        getMatchOutcome in class org.springframework.boot.autoconfigure.condition.SpringBootCondition
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html new file mode 100644 index 00000000..32725173 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html @@ -0,0 +1,283 @@ + + + + + + +EncryptionBootstrapConfiguration.RsaEncryptionConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration.RsaEncryptionConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    EncryptionBootstrapConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.security.rsa.crypto.RsaSecretEncryptor.class)
    +protected static class EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RsaEncryptionConfiguration

        +
        protected RsaEncryptionConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        textEncryptor

        +
        @Bean
        + @ConditionalOnMissingBean(value=org.springframework.security.crypto.encrypt.TextEncryptor.class)
        +public org.springframework.security.crypto.encrypt.TextEncryptor textEncryptor()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html new file mode 100644 index 00000000..77c1309f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html @@ -0,0 +1,283 @@ + + + + + + +EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    EncryptionBootstrapConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnMissingClass(value="org.springframework.security.rsa.crypto.RsaSecretEncryptor")
    +protected static class EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        VanillaEncryptionConfiguration

        +
        protected VanillaEncryptionConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        textEncryptor

        +
        @Bean
        + @ConditionalOnMissingBean(value=org.springframework.security.crypto.encrypt.TextEncryptor.class)
        +public org.springframework.security.crypto.encrypt.TextEncryptor textEncryptor()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.html new file mode 100644 index 00000000..ca4e1f83 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EncryptionBootstrapConfiguration.html @@ -0,0 +1,315 @@ + + + + + + +EncryptionBootstrapConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EncryptionBootstrapConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.security.crypto.encrypt.TextEncryptor.class)
    + @EnableConfigurationProperties(value=KeyProperties.class)
    +public class EncryptionBootstrapConfiguration
    +extends Object
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EncryptionBootstrapConfiguration

        +
        public EncryptionBootstrapConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.html new file mode 100644 index 00000000..b8040b65 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/EnvironmentDecryptApplicationInitializer.html @@ -0,0 +1,415 @@ + + + + + + +EnvironmentDecryptApplicationInitializer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class EnvironmentDecryptApplicationInitializer

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>, org.springframework.core.Ordered
    +
    +
    +
    +
    public class EnvironmentDecryptApplicationInitializer
    +extends Object
    +implements org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>, org.springframework.core.Ordered
    +
    Decrypt properties from the environment and insert them with high priority so they + override the encrypted values.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        DECRYPTED_PROPERTY_SOURCE_NAME

        +
        public static final String DECRYPTED_PROPERTY_SOURCE_NAME
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DECRYPTED_BOOTSTRAP_PROPERTY_SOURCE_NAME

        +
        public static final String DECRYPTED_BOOTSTRAP_PROPERTY_SOURCE_NAME
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnvironmentDecryptApplicationInitializer

        +
        public EnvironmentDecryptApplicationInitializer(org.springframework.security.crypto.encrypt.TextEncryptor encryptor)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setFailOnError

        +
        public void setFailOnError(boolean failOnError)
        +
        Strategy to determine how to handle exceptions during decryption.
        +
        +
        Parameters:
        +
        failOnError - the flag value (default true)
        +
        +
      • +
      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      + + + +
        +
      • +

        initialize

        +
        public void initialize(org.springframework.context.ConfigurableApplicationContext applicationContext)
        +
        +
        Specified by:
        +
        initialize in interface org.springframework.context.ApplicationContextInitializer<org.springframework.context.ConfigurableApplicationContext>
        +
        +
      • +
      + + + +
        +
      • +

        decrypt

        +
        public Map<String,Object> decrypt(org.springframework.core.env.PropertySources propertySources)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.KeyStore.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.KeyStore.html new file mode 100644 index 00000000..5e4fe182 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.KeyStore.html @@ -0,0 +1,368 @@ + + + + + + +KeyProperties.KeyStore (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class KeyProperties.KeyStore

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    KeyProperties
    +
    +
    +
    +
    public static class KeyProperties.KeyStore
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyStore

        +
        public KeyStore()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getAlias

        +
        public String getAlias()
        +
      • +
      + + + +
        +
      • +

        setAlias

        +
        public void setAlias(String alias)
        +
      • +
      + + + +
        +
      • +

        getLocation

        +
        public org.springframework.core.io.Resource getLocation()
        +
      • +
      + + + +
        +
      • +

        setLocation

        +
        public void setLocation(org.springframework.core.io.Resource location)
        +
      • +
      + + + +
        +
      • +

        getPassword

        +
        public String getPassword()
        +
      • +
      + + + +
        +
      • +

        setPassword

        +
        public void setPassword(String password)
        +
      • +
      + + + +
        +
      • +

        getSecret

        +
        public String getSecret()
        +
      • +
      + + + +
        +
      • +

        setSecret

        +
        public void setSecret(String secret)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.Rsa.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.Rsa.html new file mode 100644 index 00000000..da2b2938 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.Rsa.html @@ -0,0 +1,342 @@ + + + + + + +KeyProperties.Rsa (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class KeyProperties.Rsa

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    KeyProperties
    +
    +
    +
    +
    public static class KeyProperties.Rsa
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Rsa

        +
        public Rsa()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getAlgorithm

        +
        public org.springframework.security.rsa.crypto.RsaAlgorithm getAlgorithm()
        +
      • +
      + + + +
        +
      • +

        setAlgorithm

        +
        public void setAlgorithm(org.springframework.security.rsa.crypto.RsaAlgorithm algorithm)
        +
      • +
      + + + +
        +
      • +

        isStrong

        +
        public boolean isStrong()
        +
      • +
      + + + +
        +
      • +

        setStrong

        +
        public void setStrong(boolean strong)
        +
      • +
      + + + +
        +
      • +

        getSalt

        +
        public String getSalt()
        +
      • +
      + + + +
        +
      • +

        setSalt

        +
        public void setSalt(String salt)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.html new file mode 100644 index 00000000..efbb507f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/KeyProperties.html @@ -0,0 +1,375 @@ + + + + + + +KeyProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.bootstrap.encrypt
+

Class KeyProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.bootstrap.encrypt.KeyProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="encrypt")
    +public class KeyProperties
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyProperties

        +
        public KeyProperties()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html new file mode 100644 index 00000000..3ff10196 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.FailsafeTextEncryptor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.FailsafeTextEncryptor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.KeyCondition.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.KeyCondition.html new file mode 100644 index 00000000..4bb8ca0d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.KeyCondition.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.KeyCondition
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html new file mode 100644 index 00000000..d4f2c747 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.RsaEncryptionConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.RsaEncryptionConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html new file mode 100644 index 00000000..73638317 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration.VanillaEncryptionConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.html new file mode 100644 index 00000000..ee5e298c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EncryptionBootstrapConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.EncryptionBootstrapConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EnvironmentDecryptApplicationInitializer.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EnvironmentDecryptApplicationInitializer.html new file mode 100644 index 00000000..c28ac75e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/EnvironmentDecryptApplicationInitializer.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.EnvironmentDecryptApplicationInitializer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.KeyStore.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.KeyStore.html new file mode 100644 index 00000000..a5e6b893 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.KeyStore.html @@ -0,0 +1,179 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.KeyProperties.KeyStore

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.Rsa.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.Rsa.html new file mode 100644 index 00000000..23b0c17f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.Rsa.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.KeyProperties.Rsa

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.html new file mode 100644 index 00000000..a96bdbb5 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/class-use/KeyProperties.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.bootstrap.encrypt.KeyProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.bootstrap.encrypt.KeyProperties

+
+
No usage of org.springframework.cloud.bootstrap.encrypt.KeyProperties
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-frame.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-frame.html new file mode 100644 index 00000000..c0e120b2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-frame.html @@ -0,0 +1,29 @@ + + + + + + +org.springframework.cloud.bootstrap.encrypt (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.bootstrap.encrypt

+ + + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-summary.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-summary.html new file mode 100644 index 00000000..14c01c9d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-summary.html @@ -0,0 +1,182 @@ + + + + + + +org.springframework.cloud.bootstrap.encrypt (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.bootstrap.encrypt

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-tree.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-tree.html new file mode 100644 index 00000000..c63915d1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-tree.html @@ -0,0 +1,151 @@ + + + + + + +org.springframework.cloud.bootstrap.encrypt Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.bootstrap.encrypt

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-use.html b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-use.html new file mode 100644 index 00000000..5422c2c4 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/encrypt/package-use.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Package org.springframework.cloud.bootstrap.encrypt (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.bootstrap.encrypt

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/package-frame.html b/target/apidocs/org/springframework/cloud/bootstrap/package-frame.html new file mode 100644 index 00000000..177392e2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.bootstrap (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.bootstrap

+ + + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/package-summary.html b/target/apidocs/org/springframework/cloud/bootstrap/package-summary.html new file mode 100644 index 00000000..fca4a3f8 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/package-summary.html @@ -0,0 +1,170 @@ + + + + + + +org.springframework.cloud.bootstrap (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.bootstrap

+
+
+
    +
  • + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    BootstrapApplicationListener +
    A listener that prepares a SpringApplication (e.g.
    +
    LoggingSystemShutdownListener +
    Cleans up the logging system immediately after the bootstrap context is created on + startup.
    +
    +
  • +
  • + + + + + + + + + + + + +
    Annotation Types Summary 
    Annotation TypeDescription
    BootstrapConfiguration +
    A marker interface used as a key in META-INF/spring.factories.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/package-tree.html b/target/apidocs/org/springframework/cloud/bootstrap/package-tree.html new file mode 100644 index 00000000..d7ed92ab --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.bootstrap Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.bootstrap

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.bootstrap.BootstrapApplicationListener (implements org.springframework.context.ApplicationListener<E>, org.springframework.core.Ordered)
    • +
    • org.springframework.cloud.bootstrap.LoggingSystemShutdownListener (implements org.springframework.context.ApplicationListener<E>, org.springframework.core.Ordered)
    • +
    +
  • +
+

Annotation Type Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/bootstrap/package-use.html b/target/apidocs/org/springframework/cloud/bootstrap/package-use.html new file mode 100644 index 00000000..f477d480 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/bootstrap/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.bootstrap (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.bootstrap

+
+
No usage of org.springframework.cloud.bootstrap
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.ActuatorConfiguration.html b/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.ActuatorConfiguration.html new file mode 100644 index 00000000..ddd8d215 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.ActuatorConfiguration.html @@ -0,0 +1,284 @@ + + + + + + +CommonsClientAutoConfiguration.ActuatorConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class CommonsClientAutoConfiguration.ActuatorConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    CommonsClientAutoConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.boot.actuate.endpoint.Endpoint.class)
    + @ConditionalOnProperty(value="spring.cloud.features.enabled",
    +                       matchIfMissing=true)
    +protected static class CommonsClientAutoConfiguration.ActuatorConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ActuatorConfiguration

        +
        protected ActuatorConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html b/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html new file mode 100644 index 00000000..6151e21e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html @@ -0,0 +1,320 @@ + + + + + + +CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    CommonsClientAutoConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.boot.actuate.health.HealthIndicator.class)
    + @ConditionalOnBean(value=DiscoveryClient.class)
    + @ConditionalOnProperty(value="spring.cloud.discovery.enabled",
    +                       matchIfMissing=true)
    +protected static class CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DiscoveryLoadBalancerConfiguration

        +
        protected DiscoveryLoadBalancerConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.html new file mode 100644 index 00000000..f5b319ce --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/CommonsClientAutoConfiguration.html @@ -0,0 +1,268 @@ + + + + + + +CommonsClientAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class CommonsClientAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.CommonsClientAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    +public class CommonsClientAutoConfiguration
    +extends Object
    +
    Auto-configuration for Spring Cloud Commons Client.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CommonsClientAutoConfiguration

        +
        public CommonsClientAutoConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/DefaultServiceInstance.html b/target/apidocs/org/springframework/cloud/client/DefaultServiceInstance.html new file mode 100644 index 00000000..722bfa10 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/DefaultServiceInstance.html @@ -0,0 +1,343 @@ + + + + + + +DefaultServiceInstance (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class DefaultServiceInstance

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.DefaultServiceInstance
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DefaultServiceInstance

        +
        public DefaultServiceInstance(String serviceId,
        +                              String host,
        +                              int port,
        +                              boolean secure)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getUri

        +
        public URI getUri()
        +
        +
        Specified by:
        +
        getUri in interface ServiceInstance
        +
        Returns:
        +
        the service uri address
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getUri

        +
        public static URI getUri(ServiceInstance instance)
        +
        Create a uri from the given ServiceInstance's host:port
        +
        +
        Parameters:
        +
        instance -
        +
        Returns:
        +
        URI of the form (secure)?https:http + "host:port"
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.html b/target/apidocs/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.html new file mode 100644 index 00000000..e26ae1fb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/HostInfoEnvironmentPostProcessor.html @@ -0,0 +1,320 @@ + + + + + + +HostInfoEnvironmentPostProcessor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Class HostInfoEnvironmentPostProcessor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.env.EnvironmentPostProcessor, org.springframework.core.Ordered
    +
    +
    +
    +
    public class HostInfoEnvironmentPostProcessor
    +extends Object
    +implements org.springframework.boot.env.EnvironmentPostProcessor, org.springframework.core.Ordered
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HostInfoEnvironmentPostProcessor

        +
        public HostInfoEnvironmentPostProcessor()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        postProcessEnvironment

        +
        public void postProcessEnvironment(org.springframework.core.env.ConfigurableEnvironment environment,
        +                                   org.springframework.boot.SpringApplication application)
        +
        +
        Specified by:
        +
        postProcessEnvironment in interface org.springframework.boot.env.EnvironmentPostProcessor
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/ServiceInstance.html b/target/apidocs/org/springframework/cloud/client/ServiceInstance.html new file mode 100644 index 00000000..4a51ddae --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/ServiceInstance.html @@ -0,0 +1,321 @@ + + + + + + +ServiceInstance (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Interface ServiceInstance

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getServiceId

        +
        String getServiceId()
        +
        +
        Returns:
        +
        the service id as register by the DiscoveryClient
        +
        +
      • +
      + + + +
        +
      • +

        getHost

        +
        String getHost()
        +
        +
        Returns:
        +
        the hostname of the registered ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        getPort

        +
        int getPort()
        +
        +
        Returns:
        +
        the port of the registered ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        isSecure

        +
        boolean isSecure()
        +
        +
        Returns:
        +
        if the port of the registered ServiceInstance is https or not
        +
        +
      • +
      + + + +
        +
      • +

        getUri

        +
        URI getUri()
        +
        +
        Returns:
        +
        the service uri address
        +
        +
      • +
      + + + +
        +
      • +

        getMetadata

        +
        Map<String,String> getMetadata()
        +
        +
        Returns:
        +
        the key value pair metadata associated with the service instance
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/SpringCloudApplication.html b/target/apidocs/org/springframework/cloud/client/SpringCloudApplication.html new file mode 100644 index 00000000..f9bd82bb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/SpringCloudApplication.html @@ -0,0 +1,176 @@ + + + + + + +SpringCloudApplication (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client
+

Annotation Type SpringCloudApplication

+
+
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/FeaturesEndpoint.html b/target/apidocs/org/springframework/cloud/client/actuator/FeaturesEndpoint.html new file mode 100644 index 00000000..4dcb1b85 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/FeaturesEndpoint.html @@ -0,0 +1,320 @@ + + + + + + +FeaturesEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.actuator
+

Class FeaturesEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<org.springframework.cloud.client.actuator.FeaturesEndpoint.Features>
    • +
    • +
        +
      • org.springframework.cloud.client.actuator.FeaturesEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<org.springframework.cloud.client.actuator.FeaturesEndpoint.Features>, org.springframework.context.ApplicationContextAware, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @ConfigurationProperties(prefix="endpoints.features",
    +                         ignoreUnknownFields=false)
    +public class FeaturesEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<org.springframework.cloud.client.actuator.FeaturesEndpoint.Features>
    +implements org.springframework.context.ApplicationContextAware
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        FeaturesEndpoint

        +
        public FeaturesEndpoint(List<HasFeatures> hasFeaturesList)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext context)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        invoke

        +
        public org.springframework.cloud.client.actuator.FeaturesEndpoint.Features invoke()
        +
        +
        Specified by:
        +
        invoke in interface org.springframework.boot.actuate.endpoint.Endpoint<org.springframework.cloud.client.actuator.FeaturesEndpoint.Features>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/HasFeatures.html b/target/apidocs/org/springframework/cloud/client/actuator/HasFeatures.html new file mode 100644 index 00000000..58f21ce1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/HasFeatures.html @@ -0,0 +1,352 @@ + + + + + + +HasFeatures (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.actuator
+

Class HasFeatures

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.actuator.HasFeatures
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class HasFeatures
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/NamedFeature.html b/target/apidocs/org/springframework/cloud/client/actuator/NamedFeature.html new file mode 100644 index 00000000..7e369c5a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/NamedFeature.html @@ -0,0 +1,243 @@ + + + + + + +NamedFeature (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.actuator
+

Class NamedFeature

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.actuator.NamedFeature
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class NamedFeature
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        NamedFeature

        +
        public NamedFeature()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/class-use/FeaturesEndpoint.html b/target/apidocs/org/springframework/cloud/client/actuator/class-use/FeaturesEndpoint.html new file mode 100644 index 00000000..51d1a5da --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/class-use/FeaturesEndpoint.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.actuator.FeaturesEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.actuator.FeaturesEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/class-use/HasFeatures.html b/target/apidocs/org/springframework/cloud/client/actuator/class-use/HasFeatures.html new file mode 100644 index 00000000..bd7a88d2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/class-use/HasFeatures.html @@ -0,0 +1,215 @@ + + + + + + +Uses of Class org.springframework.cloud.client.actuator.HasFeatures (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.actuator.HasFeatures

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/class-use/NamedFeature.html b/target/apidocs/org/springframework/cloud/client/actuator/class-use/NamedFeature.html new file mode 100644 index 00000000..c11cb7ee --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/class-use/NamedFeature.html @@ -0,0 +1,191 @@ + + + + + + +Uses of Class org.springframework.cloud.client.actuator.NamedFeature (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.actuator.NamedFeature

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/package-frame.html b/target/apidocs/org/springframework/cloud/client/actuator/package-frame.html new file mode 100644 index 00000000..edc7c7a2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +org.springframework.cloud.client.actuator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.actuator

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/package-summary.html b/target/apidocs/org/springframework/cloud/client/actuator/package-summary.html new file mode 100644 index 00000000..f9c139bc --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/package-summary.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.client.actuator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.actuator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/package-tree.html b/target/apidocs/org/springframework/cloud/client/actuator/package-tree.html new file mode 100644 index 00000000..b4cafb68 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/package-tree.html @@ -0,0 +1,145 @@ + + + + + + +org.springframework.cloud.client.actuator Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.actuator

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<T> (implements org.springframework.boot.actuate.endpoint.Endpoint<T>, org.springframework.context.EnvironmentAware) +
        +
      • org.springframework.cloud.client.actuator.FeaturesEndpoint (implements org.springframework.context.ApplicationContextAware)
      • +
      +
    • +
    • org.springframework.cloud.client.actuator.HasFeatures
    • +
    • org.springframework.cloud.client.actuator.NamedFeature
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/actuator/package-use.html b/target/apidocs/org/springframework/cloud/client/actuator/package-use.html new file mode 100644 index 00000000..a19fc992 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/actuator/package-use.html @@ -0,0 +1,184 @@ + + + + + + +Uses of Package org.springframework.cloud.client.actuator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.actuator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.html b/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.html new file mode 100644 index 00000000..5bad901f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreaker.html @@ -0,0 +1,176 @@ + + + + + + +EnableCircuitBreaker (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.circuitbreaker
+

Annotation Type EnableCircuitBreaker

+
+
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.html b/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.html new file mode 100644 index 00000000..4904b659 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/circuitbreaker/EnableCircuitBreakerImportSelector.html @@ -0,0 +1,299 @@ + + + + + + +EnableCircuitBreakerImportSelector (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.circuitbreaker
+

Class EnableCircuitBreakerImportSelector

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.annotation.ImportSelector, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @Order(value=2147483547)
    +public class EnableCircuitBreakerImportSelector
    +extends SpringFactoryImportSelector<EnableCircuitBreaker>
    +
    Import a single circuit breaker implementation Configuration
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreaker.html b/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreaker.html new file mode 100644 index 00000000..19b44717 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreaker.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreakerImportSelector.html b/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreakerImportSelector.html new file mode 100644 index 00000000..5b6ad7a0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/circuitbreaker/class-use/EnableCircuitBreakerImportSelector.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector

+
+
No usage of org.springframework.cloud.client.circuitbreaker.EnableCircuitBreakerImportSelector
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-frame.html b/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-frame.html new file mode 100644 index 00000000..7acc914a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +org.springframework.cloud.client.circuitbreaker (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.circuitbreaker

+
+

Classes

+ +

Annotation Types

+ +
+ + diff --git a/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-summary.html b/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-summary.html new file mode 100644 index 00000000..ee24aab3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-summary.html @@ -0,0 +1,163 @@ + + + + + + +org.springframework.cloud.client.circuitbreaker (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.circuitbreaker

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    EnableCircuitBreakerImportSelector +
    Import a single circuit breaker implementation Configuration
    +
    +
  • +
  • + + + + + + + + + + + + +
    Annotation Types Summary 
    Annotation TypeDescription
    EnableCircuitBreaker +
    Annotation to enable a CircuitBreaker implementation.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-tree.html b/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-tree.html new file mode 100644 index 00000000..ebf43321 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-tree.html @@ -0,0 +1,147 @@ + + + + + + +org.springframework.cloud.client.circuitbreaker Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.circuitbreaker

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.commons.util.SpringFactoryImportSelector<T> (implements org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.EnvironmentAware) + +
    • +
    +
  • +
+

Annotation Type Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-use.html b/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-use.html new file mode 100644 index 00000000..6ce528e7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/circuitbreaker/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package org.springframework.cloud.client.circuitbreaker (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.circuitbreaker

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.ActuatorConfiguration.html b/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.ActuatorConfiguration.html new file mode 100644 index 00000000..4ebb440e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.ActuatorConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration

+
+
No usage of org.springframework.cloud.client.CommonsClientAutoConfiguration.ActuatorConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html b/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html new file mode 100644 index 00000000..7987b5d5 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration

+
+
No usage of org.springframework.cloud.client.CommonsClientAutoConfiguration.DiscoveryLoadBalancerConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.html new file mode 100644 index 00000000..7c1746bd --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/class-use/CommonsClientAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.CommonsClientAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.CommonsClientAutoConfiguration

+
+
No usage of org.springframework.cloud.client.CommonsClientAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/class-use/DefaultServiceInstance.html b/target/apidocs/org/springframework/cloud/client/class-use/DefaultServiceInstance.html new file mode 100644 index 00000000..75cfac4d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/class-use/DefaultServiceInstance.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.DefaultServiceInstance (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.DefaultServiceInstance

+
+
No usage of org.springframework.cloud.client.DefaultServiceInstance
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/class-use/HostInfoEnvironmentPostProcessor.html b/target/apidocs/org/springframework/cloud/client/class-use/HostInfoEnvironmentPostProcessor.html new file mode 100644 index 00000000..9a5cc800 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/class-use/HostInfoEnvironmentPostProcessor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.HostInfoEnvironmentPostProcessor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.HostInfoEnvironmentPostProcessor

+
+
No usage of org.springframework.cloud.client.HostInfoEnvironmentPostProcessor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/class-use/ServiceInstance.html b/target/apidocs/org/springframework/cloud/client/class-use/ServiceInstance.html new file mode 100644 index 00000000..4f4bffde --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/class-use/ServiceInstance.html @@ -0,0 +1,439 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.ServiceInstance (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.ServiceInstance

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/class-use/SpringCloudApplication.html b/target/apidocs/org/springframework/cloud/client/class-use/SpringCloudApplication.html new file mode 100644 index 00000000..d3655606 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/class-use/SpringCloudApplication.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.SpringCloudApplication (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.SpringCloudApplication

+
+
No usage of org.springframework.cloud.client.SpringCloudApplication
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.html b/target/apidocs/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.html new file mode 100644 index 00000000..a84bd0a0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/AbstractDiscoveryLifecycle.html @@ -0,0 +1,814 @@ + + + + + + +AbstractDiscoveryLifecycle (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Class AbstractDiscoveryLifecycle

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, DiscoveryLifecycle, org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent>, org.springframework.context.Lifecycle, org.springframework.context.Phased, org.springframework.context.SmartLifecycle, org.springframework.core.Ordered
    +
    +
    +
    Direct Known Subclasses:
    +
    AbstractAutoServiceRegistration
    +
    +
    +
    Deprecated.  +
    use AbstractAutoServiceRegistration instead. This class will be removed in the next release train.
    +
    +
    +
    @Deprecated
    +public abstract class AbstractDiscoveryLifecycle
    +extends Object
    +implements DiscoveryLifecycle, org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent>
    +
    Lifecycle methods that may be useful and common to various DiscoveryClient implementations.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AbstractDiscoveryLifecycle

        +
        public AbstractDiscoveryLifecycle()
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getContext

        +
        protected org.springframework.context.ApplicationContext getContext()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
        +                           throws org.springframework.beans.BeansException
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        getEnvironment

        +
        @Deprecated
        +protected org.springframework.core.env.Environment getEnvironment()
        +
        Deprecated. 
        +
      • +
      + + + + + + + +
        +
      • +

        isAutoStartup

        +
        public boolean isAutoStartup()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        isAutoStartup in interface org.springframework.context.SmartLifecycle
        +
        +
      • +
      + + + +
        +
      • +

        stop

        +
        public void stop(Runnable callback)
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        stop in interface org.springframework.context.SmartLifecycle
        +
        +
      • +
      + + + +
        +
      • +

        start

        +
        public void start()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        start in interface org.springframework.context.Lifecycle
        +
        +
      • +
      + + + +
        +
      • +

        getConfiguredPort

        +
        @Deprecated
        +protected abstract int getConfiguredPort()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        setConfiguredPort

        +
        @Deprecated
        +protected abstract void setConfiguredPort(int port)
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        shouldRegisterManagement

        +
        protected boolean shouldRegisterManagement()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        if the management service should be registered with the ServiceRegistry
        +
        +
      • +
      + + + +
        +
      • +

        getConfiguration

        +
        @Deprecated
        +protected abstract Object getConfiguration()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the object used to configure the registration
        +
        +
      • +
      + + + +
        +
      • +

        register

        +
        protected abstract void register()
        +
        Deprecated. 
        +
        Register the local service with the DiscoveryClient
        +
      • +
      + + + +
        +
      • +

        registerManagement

        +
        protected void registerManagement()
        +
        Deprecated. 
        +
        Register the local management service with the DiscoveryClient
        +
      • +
      + + + +
        +
      • +

        deregister

        +
        protected abstract void deregister()
        +
        Deprecated. 
        +
        De-register the local service with the DiscoveryClient
        +
      • +
      + + + +
        +
      • +

        deregisterManagement

        +
        protected void deregisterManagement()
        +
        Deprecated. 
        +
        De-register the local management service with the DiscoveryClient
        +
      • +
      + + + +
        +
      • +

        isEnabled

        +
        protected abstract boolean isEnabled()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        true, if the DiscoveryLifecycle is enabled
        +
        +
      • +
      + + + +
        +
      • +

        getManagementServiceId

        +
        @Deprecated
        +protected String getManagementServiceId()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the serviceId of the Management Service
        +
        +
      • +
      + + + +
        +
      • +

        getManagementServiceName

        +
        @Deprecated
        +protected String getManagementServiceName()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the service name of the Management Service
        +
        +
      • +
      + + + +
        +
      • +

        getManagementPort

        +
        @Deprecated
        +protected Integer getManagementPort()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the management server port
        +
        +
      • +
      + + + +
        +
      • +

        getAppName

        +
        @Deprecated
        +protected String getAppName()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        the app name, currently the spring.application.name property
        +
        +
      • +
      + + + +
        +
      • +

        stop

        +
        public void stop()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        stop in interface org.springframework.context.Lifecycle
        +
        +
      • +
      + + + +
        +
      • +

        destroy

        +
        @PreDestroy
        +public void destroy()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        isRunning

        +
        public boolean isRunning()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        isRunning in interface org.springframework.context.Lifecycle
        +
        +
      • +
      + + + +
        +
      • +

        getRunning

        +
        protected AtomicBoolean getRunning()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        getPhase

        +
        public int getPhase()
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        getPhase in interface org.springframework.context.Phased
        +
        +
      • +
      + + + +
        +
      • +

        onApplicationEvent

        +
        @Deprecated
        +public void onApplicationEvent(org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent event)
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryClient.html b/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryClient.html new file mode 100644 index 00000000..8b81ca4d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryClient.html @@ -0,0 +1,302 @@ + + + + + + +DiscoveryClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Interface DiscoveryClient

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    NoopDiscoveryClient, SimpleDiscoveryClient
    +
    +
    +
    +
    public interface DiscoveryClient
    +
    DiscoveryClient represents read operations commonly available to Discovery service such as + Netflix Eureka or consul.io
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        description

        +
        String description()
        +
        A human readable description of the implementation, used in HealthIndicator
        +
        +
        Returns:
        +
        the description
        +
        +
      • +
      + + + +
        +
      • +

        getLocalServiceInstance

        +
        @Deprecated
        +ServiceInstance getLocalServiceInstance()
        +
        Deprecated. use the Registration bean instead
        +
        +
        Returns:
        +
        ServiceInstance with information used to register the local service
        +
        +
      • +
      + + + +
        +
      • +

        getInstances

        +
        List<ServiceInstance> getInstances(String serviceId)
        +
        Get all ServiceInstances associated with a particular serviceId
        +
        +
        Parameters:
        +
        serviceId - the serviceId to query
        +
        Returns:
        +
        a List of ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        getServices

        +
        List<String> getServices()
        +
        +
        Returns:
        +
        all known service ids
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryLifecycle.html b/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryLifecycle.html new file mode 100644 index 00000000..3de92b9c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/DiscoveryLifecycle.html @@ -0,0 +1,243 @@ + + + + + + +DiscoveryLifecycle (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Interface DiscoveryLifecycle

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    org.springframework.context.Lifecycle, org.springframework.core.Ordered, org.springframework.context.Phased, org.springframework.context.SmartLifecycle
    +
    +
    +
    All Known Implementing Classes:
    +
    AbstractAutoServiceRegistration, AbstractDiscoveryLifecycle
    +
    +
    +
    Deprecated.  +
    use AutoServiceRegistration instead. This class will be removed in the next release train.
    +
    +
    +
    @Deprecated
    +public interface DiscoveryLifecycle
    +extends org.springframework.context.SmartLifecycle, org.springframework.core.Ordered
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from interface org.springframework.core.Ordered

        +HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
      • +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      +
        +
      • + + +

        Methods inherited from interface org.springframework.context.SmartLifecycle

        +isAutoStartup, stop
      • +
      +
        +
      • + + +

        Methods inherited from interface org.springframework.context.Lifecycle

        +isRunning, start, stop
      • +
      +
        +
      • + + +

        Methods inherited from interface org.springframework.context.Phased

        +getPhase
      • +
      +
        +
      • + + +

        Methods inherited from interface org.springframework.core.Ordered

        +getOrder
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClient.html b/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClient.html new file mode 100644 index 00000000..3476e636 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClient.html @@ -0,0 +1,230 @@ + + + + + + +EnableDiscoveryClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Annotation Type EnableDiscoveryClient

+
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Optional Element Summary

      + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional Element and Description
      booleanautoRegister +
      If true, the ServiceRegistry will automatically register the local server.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        autoRegister

        +
        public abstract boolean autoRegister
        +
        If true, the ServiceRegistry will automatically register the local server.
        +
        +
        Default:
        +
        true
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.html b/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.html new file mode 100644 index 00000000..047c0f16 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/EnableDiscoveryClientImportSelector.html @@ -0,0 +1,334 @@ + + + + + + +EnableDiscoveryClientImportSelector (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Class EnableDiscoveryClientImportSelector

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.annotation.ImportSelector, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @Order(value=2147483547)
    +public class EnableDiscoveryClientImportSelector
    +extends SpringFactoryImportSelector<EnableDiscoveryClient>
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.ManagementServerPort.html b/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.ManagementServerPort.html new file mode 100644 index 00000000..2011f3a8 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.ManagementServerPort.html @@ -0,0 +1,372 @@ + + + + + + +ManagementServerPortUtils.ManagementServerPort (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Enum ManagementServerPortUtils.ManagementServerPort

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.html b/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.html new file mode 100644 index 00000000..8f207a33 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/ManagementServerPortUtils.html @@ -0,0 +1,348 @@ + + + + + + +ManagementServerPortUtils (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery
+

Class ManagementServerPortUtils

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.ManagementServerPortUtils
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class ManagementServerPortUtils
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ManagementServerPortUtils

        +
        public ManagementServerPortUtils()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        isDifferent

        +
        public static boolean isDifferent(org.springframework.beans.factory.BeanFactory beanFactory)
        +
      • +
      + + + +
        +
      • +

        isDisabled

        +
        public static boolean isDisabled(org.springframework.beans.factory.BeanFactory beanFactory)
        +
      • +
      + + + +
        +
      • +

        isSame

        +
        public static boolean isSame(org.springframework.beans.factory.BeanFactory beanFactory)
        +
      • +
      + + + +
        +
      • +

        getPort

        +
        public static Integer getPort(org.springframework.beans.factory.BeanFactory beanFactory)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/class-use/AbstractDiscoveryLifecycle.html b/target/apidocs/org/springframework/cloud/client/discovery/class-use/AbstractDiscoveryLifecycle.html new file mode 100644 index 00000000..a6c6f1bf --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/class-use/AbstractDiscoveryLifecycle.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryClient.html b/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryClient.html new file mode 100644 index 00000000..5351b6cd --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryClient.html @@ -0,0 +1,265 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.discovery.DiscoveryClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.discovery.DiscoveryClient

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryLifecycle.html b/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryLifecycle.html new file mode 100644 index 00000000..7e8c5179 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/class-use/DiscoveryLifecycle.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.discovery.DiscoveryLifecycle (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.discovery.DiscoveryLifecycle

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClient.html b/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClient.html new file mode 100644 index 00000000..c4c8d93e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClient.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.EnableDiscoveryClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.EnableDiscoveryClient

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClientImportSelector.html b/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClientImportSelector.html new file mode 100644 index 00000000..97f0474f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/class-use/EnableDiscoveryClientImportSelector.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector

+
+
No usage of org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.ManagementServerPort.html b/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.ManagementServerPort.html new file mode 100644 index 00000000..162fe995 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.ManagementServerPort.html @@ -0,0 +1,183 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.ManagementServerPortUtils.ManagementServerPort

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.html b/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.html new file mode 100644 index 00000000..4fe110ad --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/class-use/ManagementServerPortUtils.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.ManagementServerPortUtils (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.ManagementServerPortUtils

+
+
No usage of org.springframework.cloud.client.discovery.ManagementServerPortUtils
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatEvent.html b/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatEvent.html new file mode 100644 index 00000000..69cc7cb0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatEvent.html @@ -0,0 +1,347 @@ + + + + + + +HeartbeatEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.event
+

Class HeartbeatEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class HeartbeatEvent
    +extends org.springframework.context.ApplicationEvent
    +
    Event DiscoveryClient implementation can broadcast if they support heartbeat's from the + discovery server. Provides listeners with a basic indication of a state change in the + service catalog.
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HeartbeatEvent

        +
        public HeartbeatEvent(Object source,
        +                      Object state)
        +
        Create a new event with a source (for example a discovery client) and a value. + Neither parameter should be relied on to have specific content or format.
        +
        +
        Parameters:
        +
        source - the source of the event
        +
        state - the value indicating state of the catalog
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public Object getValue()
        +
        A value representing the state of the service catalog. The only requirement is that + it changes when the catalog is updated, so it can be as simple as a version + conuter, or a hash. Implementations can provide information to help users visualize + what is going on in the catalog, but users should not rely on the content (since + the implementation of the underlying discovery might change).
        +
        +
        Returns:
        +
        A value representing state of the service catalog
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.html b/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.html new file mode 100644 index 00000000..52a995e3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/HeartbeatMonitor.html @@ -0,0 +1,285 @@ + + + + + + +HeartbeatMonitor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.event
+

Class HeartbeatMonitor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.event.HeartbeatMonitor
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class HeartbeatMonitor
    +extends Object
    +
    Helper class for listeners to the HeartbeatEvent providing a convenient way to + determine if there has been a change in state.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HeartbeatMonitor

        +
        public HeartbeatMonitor()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        update

        +
        public boolean update(Object value)
        +
        +
        Parameters:
        +
        value - the latest heartbeat
        +
        Returns:
        +
        true if the state changed
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.html b/target/apidocs/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.html new file mode 100644 index 00000000..cd995f7e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/InstanceRegisteredEvent.html @@ -0,0 +1,336 @@ + + + + + + +InstanceRegisteredEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.event
+

Class InstanceRegisteredEvent<T>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.util.EventObject
    • +
    • +
        +
      • org.springframework.context.ApplicationEvent
      • +
      • +
          +
        • org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent<T>
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class InstanceRegisteredEvent<T>
    +extends org.springframework.context.ApplicationEvent
    +
    Event to be published after the local service instance registers itself with a + discovery service.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + + + +
        +
      • +

        InstanceRegisteredEvent

        +
        public InstanceRegisteredEvent(Object source,
        +                               T config)
        +
        Create a new InstanceRegisteredEvent instance.
        +
        +
        Parameters:
        +
        source - the component that published the event (never null)
        +
        config - the configuration of the instance
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getConfig

        +
        public T getConfig()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.html b/target/apidocs/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.html new file mode 100644 index 00000000..a22472fa --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/ParentHeartbeatEvent.html @@ -0,0 +1,328 @@ + + + + + + +ParentHeartbeatEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.event
+

Class ParentHeartbeatEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class ParentHeartbeatEvent
    +extends org.springframework.context.ApplicationEvent
    +
    Heartbeat Event that a Parent ApplicationContext can send to a child Context. Useful, + for example, when config server is located via DiscoveryClient, in which case the + HeartbeatEvent that triggers this event is fired in the parent (bootstrap) + context.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ParentHeartbeatEvent

        +
        public ParentHeartbeatEvent(Object source,
        +                            Object value)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public Object getValue()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatEvent.html b/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatEvent.html new file mode 100644 index 00000000..27fcc3c1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatEvent.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.event.HeartbeatEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.event.HeartbeatEvent

+
+
No usage of org.springframework.cloud.client.discovery.event.HeartbeatEvent
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatMonitor.html b/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatMonitor.html new file mode 100644 index 00000000..423cb98f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/HeartbeatMonitor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.event.HeartbeatMonitor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.event.HeartbeatMonitor

+
+
No usage of org.springframework.cloud.client.discovery.event.HeartbeatMonitor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/InstanceRegisteredEvent.html b/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/InstanceRegisteredEvent.html new file mode 100644 index 00000000..0fd50012 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/InstanceRegisteredEvent.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.event.InstanceRegisteredEvent

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/ParentHeartbeatEvent.html b/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/ParentHeartbeatEvent.html new file mode 100644 index 00000000..b6e219e0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/class-use/ParentHeartbeatEvent.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent

+
+
No usage of org.springframework.cloud.client.discovery.event.ParentHeartbeatEvent
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/package-frame.html b/target/apidocs/org/springframework/cloud/client/discovery/event/package-frame.html new file mode 100644 index 00000000..3bbd20a3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/package-frame.html @@ -0,0 +1,24 @@ + + + + + + +org.springframework.cloud.client.discovery.event (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery.event

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/package-summary.html b/target/apidocs/org/springframework/cloud/client/discovery/event/package-summary.html new file mode 100644 index 00000000..c431e257 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/package-summary.html @@ -0,0 +1,167 @@ + + + + + + +org.springframework.cloud.client.discovery.event (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery.event

+
+
+
    +
  • + + + + + + + + + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    HeartbeatEvent +
    Event DiscoveryClient implementation can broadcast if they support heartbeat's from the + discovery server.
    +
    HeartbeatMonitor +
    Helper class for listeners to the HeartbeatEvent providing a convenient way to + determine if there has been a change in state.
    +
    InstanceRegisteredEvent<T> +
    Event to be published after the local service instance registers itself with a + discovery service.
    +
    ParentHeartbeatEvent +
    Heartbeat Event that a Parent ApplicationContext can send to a child Context.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/package-tree.html b/target/apidocs/org/springframework/cloud/client/discovery/event/package-tree.html new file mode 100644 index 00000000..aa38c0fd --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/package-tree.html @@ -0,0 +1,150 @@ + + + + + + +org.springframework.cloud.client.discovery.event Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery.event

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/event/package-use.html b/target/apidocs/org/springframework/cloud/client/discovery/event/package-use.html new file mode 100644 index 00000000..0c7d8e3f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/event/package-use.html @@ -0,0 +1,162 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery.event (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery.event

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.html b/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.html new file mode 100644 index 00000000..097600ab --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryClientHealthIndicator.html @@ -0,0 +1,367 @@ + + + + + + +DiscoveryClientHealthIndicator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.health
+

Class DiscoveryClientHealthIndicator

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DiscoveryClientHealthIndicator

        +
        public DiscoveryClientHealthIndicator(DiscoveryClient discoveryClient)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        health

        +
        public org.springframework.boot.actuate.health.Health health()
        +
        +
        Specified by:
        +
        health in interface DiscoveryHealthIndicator
        +
        Returns:
        +
        an indication of health
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.Holder.html b/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.Holder.html new file mode 100644 index 00000000..4bd39e39 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.Holder.html @@ -0,0 +1,299 @@ + + + + + + +DiscoveryCompositeHealthIndicator.Holder (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.health
+

Class DiscoveryCompositeHealthIndicator.Holder

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.health.HealthIndicator
    +
    +
    +
    Enclosing class:
    +
    DiscoveryCompositeHealthIndicator
    +
    +
    +
    +
    public static class DiscoveryCompositeHealthIndicator.Holder
    +extends Object
    +implements org.springframework.boot.actuate.health.HealthIndicator
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        health

        +
        public org.springframework.boot.actuate.health.Health health()
        +
        +
        Specified by:
        +
        health in interface org.springframework.boot.actuate.health.HealthIndicator
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.html b/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.html new file mode 100644 index 00000000..58ef109c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryCompositeHealthIndicator.html @@ -0,0 +1,317 @@ + + + + + + +DiscoveryCompositeHealthIndicator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.health
+

Class DiscoveryCompositeHealthIndicator

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.health.CompositeHealthIndicator
    • +
    • +
        +
      • org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.health.HealthIndicator
    +
    +
    +
    +
    public class DiscoveryCompositeHealthIndicator
    +extends org.springframework.boot.actuate.health.CompositeHealthIndicator
    +
    Gathers all DiscoveryHealthIndicator's from a DiscoveryClient implementation + and aggregates the statuses.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.html b/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.html new file mode 100644 index 00000000..3ab0e872 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/DiscoveryHealthIndicator.html @@ -0,0 +1,249 @@ + + + + + + +DiscoveryHealthIndicator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.health
+

Interface DiscoveryHealthIndicator

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    DiscoveryClientHealthIndicator
    +
    +
    +
    +
    public interface DiscoveryHealthIndicator
    +
    A health indicator interface specific for a DiscoveryClient implementation
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        String getName()
        +
      • +
      + + + +
        +
      • +

        health

        +
        org.springframework.boot.actuate.health.Health health()
        +
        +
        Returns:
        +
        an indication of health
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryClientHealthIndicator.html b/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryClientHealthIndicator.html new file mode 100644 index 00000000..f39459e0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryClientHealthIndicator.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.Holder.html b/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.Holder.html new file mode 100644 index 00000000..8a5cea01 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.Holder.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.html b/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.html new file mode 100644 index 00000000..9170ad4b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryCompositeHealthIndicator.html @@ -0,0 +1,167 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryHealthIndicator.html b/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryHealthIndicator.html new file mode 100644 index 00000000..9b2fa9c6 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/class-use/DiscoveryHealthIndicator.html @@ -0,0 +1,225 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/package-frame.html b/target/apidocs/org/springframework/cloud/client/discovery/health/package-frame.html new file mode 100644 index 00000000..550cc64c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/package-frame.html @@ -0,0 +1,27 @@ + + + + + + +org.springframework.cloud.client.discovery.health (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery.health

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/package-summary.html b/target/apidocs/org/springframework/cloud/client/discovery/health/package-summary.html new file mode 100644 index 00000000..1f3f9443 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/package-summary.html @@ -0,0 +1,172 @@ + + + + + + +org.springframework.cloud.client.discovery.health (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery.health

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/package-tree.html b/target/apidocs/org/springframework/cloud/client/discovery/health/package-tree.html new file mode 100644 index 00000000..d3af96f6 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/package-tree.html @@ -0,0 +1,149 @@ + + + + + + +org.springframework.cloud.client.discovery.health Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery.health

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.health.CompositeHealthIndicator (implements org.springframework.boot.actuate.health.HealthIndicator) + +
    • +
    • org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator (implements org.springframework.context.ApplicationListener<E>, org.springframework.cloud.client.discovery.health.DiscoveryHealthIndicator, org.springframework.core.Ordered)
    • +
    • org.springframework.cloud.client.discovery.health.DiscoveryCompositeHealthIndicator.Holder (implements org.springframework.boot.actuate.health.HealthIndicator)
    • +
    +
  • +
+

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/health/package-use.html b/target/apidocs/org/springframework/cloud/client/discovery/health/package-use.html new file mode 100644 index 00000000..51ef60f1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/health/package-use.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery.health (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery.health

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.html new file mode 100644 index 00000000..cc760162 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClient.html @@ -0,0 +1,373 @@ + + + + + + +NoopDiscoveryClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.noop
+

Class NoopDiscoveryClient

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    DiscoveryClient
    +
    +
    +
    Deprecated.  + +
    +
    +
    @Deprecated
    +public class NoopDiscoveryClient
    +extends Object
    +implements DiscoveryClient
    +
    DiscoveryClient used when no implementations are found on the classpath
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        NoopDiscoveryClient

        +
        public NoopDiscoveryClient(ServiceInstance instance)
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        description

        +
        public String description()
        +
        Deprecated. 
        +
        Description copied from interface: DiscoveryClient
        +
        A human readable description of the implementation, used in HealthIndicator
        +
        +
        Specified by:
        +
        description in interface DiscoveryClient
        +
        Returns:
        +
        the description
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getInstances

        +
        public List<ServiceInstance> getInstances(String serviceId)
        +
        Deprecated. 
        +
        Description copied from interface: DiscoveryClient
        +
        Get all ServiceInstances associated with a particular serviceId
        +
        +
        Specified by:
        +
        getInstances in interface DiscoveryClient
        +
        Parameters:
        +
        serviceId - the serviceId to query
        +
        Returns:
        +
        a List of ServiceInstance
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html new file mode 100644 index 00000000..4c00ea59 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html @@ -0,0 +1,282 @@ + + + + + + +NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.noop
+

Class NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    NoopDiscoveryClientAutoConfiguration
    +
    +
    +
    +
    @Configuration
    + @ConditionalOnClass(name={"org.springframework.web.context.support.GenericWebApplicationContext","org.springframework.boot.context.embedded.EmbeddedWebApplicationContext"})
    +protected static class NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Boot15PortFinderConfiguration

        +
        protected Boot15PortFinderConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        portFinder

        +
        @Bean
        +public org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.PortFinder portFinder(org.springframework.context.ApplicationContext context)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.html new file mode 100644 index 00000000..387f46d5 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/NoopDiscoveryClientAutoConfiguration.html @@ -0,0 +1,355 @@ + + + + + + +NoopDiscoveryClientAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.noop
+

Class NoopDiscoveryClientAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.context.ApplicationListener<org.springframework.context.event.ContextRefreshedEvent>
    +
    +
    +
    Deprecated.  +
    Use + instead
    +
    +
    +
    @Configuration
    + @EnableConfigurationProperties
    + @ConditionalOnMissingBean(value=DiscoveryClient.class)
    + @Deprecated
    +public class NoopDiscoveryClientAutoConfiguration
    +extends Object
    +implements org.springframework.context.ApplicationListener<org.springframework.context.event.ContextRefreshedEvent>
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        NoopDiscoveryClientAutoConfiguration

        +
        public NoopDiscoveryClientAutoConfiguration()
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.context.event.ContextRefreshedEvent event)
        +
        Deprecated. 
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.context.event.ContextRefreshedEvent>
        +
        +
      • +
      + + + +
        +
      • +

        discoveryClient

        +
        @Bean
        +public DiscoveryClient discoveryClient()
        +
        Deprecated. 
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClient.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClient.html new file mode 100644 index 00000000..31d793c7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClient.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient

+
+
No usage of org.springframework.cloud.client.discovery.noop.NoopDiscoveryClient
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html new file mode 100644 index 00000000..c948ae6e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration

+
+
No usage of org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration.Boot15PortFinderConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.html new file mode 100644 index 00000000..8ddac58f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/class-use/NoopDiscoveryClientAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration

+
+
No usage of org.springframework.cloud.client.discovery.noop.NoopDiscoveryClientAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/package-frame.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/package-frame.html new file mode 100644 index 00000000..7a57b39d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +org.springframework.cloud.client.discovery.noop (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery.noop

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/package-summary.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/package-summary.html new file mode 100644 index 00000000..3a183805 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/package-summary.html @@ -0,0 +1,157 @@ + + + + + + +org.springframework.cloud.client.discovery.noop (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery.noop

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/package-tree.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/package-tree.html new file mode 100644 index 00000000..01711023 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/package-tree.html @@ -0,0 +1,141 @@ + + + + + + +org.springframework.cloud.client.discovery.noop Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery.noop

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/noop/package-use.html b/target/apidocs/org/springframework/cloud/client/discovery/noop/package-use.html new file mode 100644 index 00000000..043045c1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/noop/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery.noop (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery.noop

+
+
No usage of org.springframework.cloud.client.discovery.noop
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/package-frame.html b/target/apidocs/org/springframework/cloud/client/discovery/package-frame.html new file mode 100644 index 00000000..23c1eac9 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/package-frame.html @@ -0,0 +1,36 @@ + + + + + + +org.springframework.cloud.client.discovery (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/package-summary.html b/target/apidocs/org/springframework/cloud/client/discovery/package-summary.html new file mode 100644 index 00000000..f9dbed7e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/package-summary.html @@ -0,0 +1,210 @@ + + + + + + +org.springframework.cloud.client.discovery (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/package-tree.html b/target/apidocs/org/springframework/cloud/client/discovery/package-tree.html new file mode 100644 index 00000000..7e179206 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/package-tree.html @@ -0,0 +1,188 @@ + + + + + + +org.springframework.cloud.client.discovery Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+
    +
  • org.springframework.cloud.client.discovery.DiscoveryClient
  • +
  • org.springframework.context.Lifecycle +
      +
    • org.springframework.context.SmartLifecycle (also extends org.springframework.context.Phased) +
        +
      • org.springframework.cloud.client.discovery.DiscoveryLifecycle (also extends org.springframework.core.Ordered)
      • +
      +
    • +
    +
  • +
  • org.springframework.core.Ordered +
      +
    • org.springframework.cloud.client.discovery.DiscoveryLifecycle (also extends org.springframework.context.SmartLifecycle)
    • +
    +
  • +
  • org.springframework.context.Phased +
      +
    • org.springframework.context.SmartLifecycle (also extends org.springframework.context.Lifecycle) +
        +
      • org.springframework.cloud.client.discovery.DiscoveryLifecycle (also extends org.springframework.core.Ordered)
      • +
      +
    • +
    +
  • +
+

Annotation Type Hierarchy

+ +

Enum Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/package-use.html b/target/apidocs/org/springframework/cloud/client/discovery/package-use.html new file mode 100644 index 00000000..ce51135a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/package-use.html @@ -0,0 +1,289 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.html new file mode 100644 index 00000000..348280cb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClient.html @@ -0,0 +1,357 @@ + + + + + + +SimpleDiscoveryClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.simple
+

Class SimpleDiscoveryClient

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    DiscoveryClient
    +
    +
    +
    +
    public class SimpleDiscoveryClient
    +extends Object
    +implements DiscoveryClient
    +
    A DiscoveryClient that will use the + properties file as a source of service instances
    +
    +
    Author:
    +
    Biju Kunjummen
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.html new file mode 100644 index 00000000..3fc3458d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryClientAutoConfiguration.html @@ -0,0 +1,282 @@ + + + + + + +SimpleDiscoveryClientAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.simple
+

Class SimpleDiscoveryClientAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnMissingBean(value=DiscoveryClient.class)
    + @EnableConfigurationProperties(value=SimpleDiscoveryProperties.class)
    +public class SimpleDiscoveryClientAutoConfiguration
    +extends Object
    +
    Spring Boot Auto-Configuration for Simple Properties based Discovery Client
    +
    +
    Author:
    +
    Biju Kunjummen
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SimpleDiscoveryClientAutoConfiguration

        +
        public SimpleDiscoveryClientAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        simpleDiscoveryClient

        +
        @Bean
        +public DiscoveryClient simpleDiscoveryClient()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.SimpleServiceInstance.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.SimpleServiceInstance.html new file mode 100644 index 00000000..fe80016a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.SimpleServiceInstance.html @@ -0,0 +1,408 @@ + + + + + + +SimpleDiscoveryProperties.SimpleServiceInstance (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.simple
+

Class SimpleDiscoveryProperties.SimpleServiceInstance

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SimpleServiceInstance

        +
        public SimpleServiceInstance()
        +
      • +
      + + + +
        +
      • +

        SimpleServiceInstance

        +
        public SimpleServiceInstance(String uri)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setUri

        +
        public void setUri(String uri)
        +
      • +
      + + + +
        +
      • +

        getServiceId

        +
        public String getServiceId()
        +
        +
        Specified by:
        +
        getServiceId in interface ServiceInstance
        +
        Returns:
        +
        the service id as register by the DiscoveryClient
        +
        +
      • +
      + + + +
        +
      • +

        getHost

        +
        public String getHost()
        +
        +
        Specified by:
        +
        getHost in interface ServiceInstance
        +
        Returns:
        +
        the hostname of the registered ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        getPort

        +
        public int getPort()
        +
        +
        Specified by:
        +
        getPort in interface ServiceInstance
        +
        Returns:
        +
        the port of the registered ServiceInstance
        +
        +
      • +
      + + + +
        +
      • +

        isSecure

        +
        public boolean isSecure()
        +
        +
        Specified by:
        +
        isSecure in interface ServiceInstance
        +
        Returns:
        +
        if the port of the registered ServiceInstance is https or not
        +
        +
      • +
      + + + +
        +
      • +

        getUri

        +
        public URI getUri()
        +
        +
        Specified by:
        +
        getUri in interface ServiceInstance
        +
        Returns:
        +
        the service uri address
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.html new file mode 100644 index 00000000..d4a652a0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/SimpleDiscoveryProperties.html @@ -0,0 +1,313 @@ + + + + + + +SimpleDiscoveryProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.discovery.simple
+

Class SimpleDiscoveryProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(prefix="spring.cloud.discovery.client.simple")
    +public class SimpleDiscoveryProperties
    +extends Object
    +
    Properties to hold the details of a + DiscoveryClient service instances + for a given service
    +
    +
    Author:
    +
    Biju Kunjummen
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClient.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClient.html new file mode 100644 index 00000000..ffc71fc5 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClient.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient

+
+
No usage of org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClient
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClientAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClientAutoConfiguration.html new file mode 100644 index 00000000..fc66375c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryClientAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration

+
+
No usage of org.springframework.cloud.client.discovery.simple.SimpleDiscoveryClientAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.SimpleServiceInstance.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.SimpleServiceInstance.html new file mode 100644 index 00000000..f5a6da8a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.SimpleServiceInstance.html @@ -0,0 +1,179 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties.SimpleServiceInstance

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.html new file mode 100644 index 00000000..623fc861 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/class-use/SimpleDiscoveryProperties.html @@ -0,0 +1,164 @@ + + + + + + +Uses of Class org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.discovery.simple.SimpleDiscoveryProperties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/package-frame.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/package-frame.html new file mode 100644 index 00000000..a8a84cde --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/package-frame.html @@ -0,0 +1,24 @@ + + + + + + +org.springframework.cloud.client.discovery.simple (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.discovery.simple

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/package-summary.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/package-summary.html new file mode 100644 index 00000000..9f6078a0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/package-summary.html @@ -0,0 +1,165 @@ + + + + + + +org.springframework.cloud.client.discovery.simple (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.discovery.simple

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/package-tree.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/package-tree.html new file mode 100644 index 00000000..13691e29 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/package-tree.html @@ -0,0 +1,142 @@ + + + + + + +org.springframework.cloud.client.discovery.simple Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.discovery.simple

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/discovery/simple/package-use.html b/target/apidocs/org/springframework/cloud/client/discovery/simple/package-use.html new file mode 100644 index 00000000..56f425a4 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/discovery/simple/package-use.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Package org.springframework.cloud.client.discovery.simple (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.discovery.simple

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html b/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html new file mode 100644 index 00000000..165b4c0b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html @@ -0,0 +1,243 @@ + + + + + + +CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Refresh

        +
        public Refresh()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html b/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html new file mode 100644 index 00000000..4d97b952 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html @@ -0,0 +1,263 @@ + + + + + + +CloudHypermediaAutoConfiguration.CloudHypermediaProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class CloudHypermediaAutoConfiguration.CloudHypermediaProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    CloudHypermediaAutoConfiguration
    +
    +
    +
    +
    @ConfigurationProperties(prefix="spring.cloud.hypermedia")
    +public static class CloudHypermediaAutoConfiguration.CloudHypermediaProperties
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudHypermediaProperties

        +
        public CloudHypermediaProperties()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.html new file mode 100644 index 00000000..2ebcfb8c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/CloudHypermediaAutoConfiguration.html @@ -0,0 +1,303 @@ + + + + + + +CloudHypermediaAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class CloudHypermediaAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudHypermediaAutoConfiguration

        +
        public CloudHypermediaAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        discoveredResourceRefresher

        +
        @Bean
        + @ConditionalOnMissingBean
        +public RemoteResourceRefresher discoveredResourceRefresher()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/DiscoveredResource.html b/target/apidocs/org/springframework/cloud/client/hypermedia/DiscoveredResource.html new file mode 100644 index 00000000..7a11351d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/DiscoveredResource.html @@ -0,0 +1,317 @@ + + + + + + +DiscoveredResource (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class DiscoveredResource

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.DiscoveredResource
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    RemoteResource
    +
    +
    +
    +
    public class DiscoveredResource
    +extends Object
    +implements RemoteResource
    +
    A REST resource that is defined by a service reference and a traversal operation within that service.
    +
    +
    Author:
    +
    Oliver Gierke
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DiscoveredResource

        +
        public DiscoveredResource()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setRestOperations

        +
        public void setRestOperations(org.springframework.web.client.RestOperations restOperations)
        +
        Configures the RestOperations to use to execute the traversal and verifying HEAD calls.
        +
        +
        Parameters:
        +
        restOperations - can be null, resorting to a default RestTemplate in that case.
        +
        +
      • +
      + + + +
        +
      • +

        verifyOrDiscover

        +
        public void verifyOrDiscover()
        +
        Verifies the link to the current
        +
        +
        Specified by:
        +
        verifyOrDiscover in interface RemoteResource
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.html b/target/apidocs/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.html new file mode 100644 index 00000000..a44117a0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/DynamicServiceInstanceProvider.html @@ -0,0 +1,294 @@ + + + + + + +DynamicServiceInstanceProvider (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class DynamicServiceInstanceProvider

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DynamicServiceInstanceProvider

        +
        public DynamicServiceInstanceProvider()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResource.html b/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResource.html new file mode 100644 index 00000000..17af279f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResource.html @@ -0,0 +1,255 @@ + + + + + + +RemoteResource (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Interface RemoteResource

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    DiscoveredResource
    +
    +
    +
    +
    public interface RemoteResource
    +
    A REST resource that can be discovered and can be either gone or available.
    +
    +
    Author:
    +
    Oliver Gierke
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      org.springframework.hateoas.LinkgetLink() +
      Returns the Link to the resource in case it is available or null + in case it's gone, i.e.
      +
      voidverifyOrDiscover() +
      Discovers the the resource in case it hasn't been yet or became unavailable.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getLink

        +
        org.springframework.hateoas.Link getLink()
        +
        Returns the Link to the resource in case it is available or null + in case it's gone, i.e. either generally unavailable or can't be discovered.
        +
      • +
      + + + +
        +
      • +

        verifyOrDiscover

        +
        void verifyOrDiscover()
        +
        Discovers the the resource in case it hasn't been yet or became unavailable. In + case a link has been discovered previously, it is verified and either confirmed or + the link is removed to indicate it's not available anymore.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.html b/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.html new file mode 100644 index 00000000..e739bf21 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/RemoteResourceRefresher.html @@ -0,0 +1,313 @@ + + + + + + +RemoteResourceRefresher (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class RemoteResourceRefresher

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.scheduling.config.ScheduledTaskRegistrar
    • +
    • +
        +
      • org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar
      • +
      • +
          +
        • org.springframework.cloud.client.hypermedia.RemoteResourceRefresher
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.SmartInitializingSingleton
    +
    +
    +
    +
    public class RemoteResourceRefresher
    +extends org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar
    +
    A ScheduledTaskRegistrar that verifies all DiscoveredResource instances in the system based + on the given timing configuration.
    +
    +
    Author:
    +
    Oliver Gierke
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidafterPropertiesSet() 
      +
        +
      • + + +

        Methods inherited from class org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar

        +afterSingletonsInstantiated
      • +
      +
        +
      • + + +

        Methods inherited from class org.springframework.scheduling.config.ScheduledTaskRegistrar

        +addCronTask, addCronTask, addFixedDelayTask, addFixedDelayTask, addFixedRateTask, addFixedRateTask, addTriggerTask, addTriggerTask, destroy, getCronTaskList, getFixedDelayTaskList, getFixedRateTaskList, getScheduler, getTriggerTaskList, hasTasks, scheduleCronTask, scheduleFixedDelayTask, scheduleFixedRateTask, scheduleTasks, scheduleTriggerTask, setCronTasks, setCronTasksList, setFixedDelayTasks, setFixedDelayTasksList, setFixedRateTasks, setFixedRateTasksList, setScheduler, setTaskScheduler, setTriggerTasks, setTriggerTasksList
      • +
      + +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RemoteResourceRefresher

        +
        public RemoteResourceRefresher()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        afterPropertiesSet

        +
        public void afterPropertiesSet()
        +
        +
        Specified by:
        +
        afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
        +
        Overrides:
        +
        afterPropertiesSet in class org.springframework.scheduling.config.ContextLifecycleScheduledTaskRegistrar
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.html b/target/apidocs/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.html new file mode 100644 index 00000000..20bb3b4b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/ServiceInstanceProvider.html @@ -0,0 +1,240 @@ + + + + + + +ServiceInstanceProvider (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Interface ServiceInstanceProvider

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getServiceInstance

        +
        ServiceInstance getServiceInstance()
        +
        Returns the service instance or null in case the service is currently unavailable.
        +
        +
        Returns:
        +
        the service instance or null in case the service is currently unavailable.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.html b/target/apidocs/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.html new file mode 100644 index 00000000..0b0a58e2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/StaticServiceInstanceProvider.html @@ -0,0 +1,293 @@ + + + + + + +StaticServiceInstanceProvider (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Class StaticServiceInstanceProvider

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        StaticServiceInstanceProvider

        +
        public StaticServiceInstanceProvider()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/TraversalDefinition.html b/target/apidocs/org/springframework/cloud/client/hypermedia/TraversalDefinition.html new file mode 100644 index 00000000..a91e4d8d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/TraversalDefinition.html @@ -0,0 +1,232 @@ + + + + + + +TraversalDefinition (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.hypermedia
+

Interface TraversalDefinition

+
+
+
+
    +
  • +
    +
    +
    public interface TraversalDefinition
    +
    Callback to define the traversal to a resource.
    +
    +
    Author:
    +
    Oliver Gierke
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      org.springframework.hateoas.client.Traverson.TraversalBuilderbuildTraversal(org.springframework.hateoas.client.Traverson traverson) 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        buildTraversal

        +
        org.springframework.hateoas.client.Traverson.TraversalBuilder buildTraversal(org.springframework.hateoas.client.Traverson traverson)
        +
        +
        Parameters:
        +
        traverson - the Traverson instance to run the traversal on.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html new file mode 100644 index 00000000..37423a0d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh

+
+
No usage of org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties.Refresh
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html new file mode 100644 index 00000000..bd0330f1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.CloudHypermediaProperties.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties

+
+
No usage of org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration.CloudHypermediaProperties
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.html new file mode 100644 index 00000000..373e18b3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/CloudHypermediaAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration

+
+
No usage of org.springframework.cloud.client.hypermedia.CloudHypermediaAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DiscoveredResource.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DiscoveredResource.html new file mode 100644 index 00000000..3beb29a6 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DiscoveredResource.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.DiscoveredResource (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.DiscoveredResource

+
+
No usage of org.springframework.cloud.client.hypermedia.DiscoveredResource
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DynamicServiceInstanceProvider.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DynamicServiceInstanceProvider.html new file mode 100644 index 00000000..3269c313 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/DynamicServiceInstanceProvider.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider

+
+
No usage of org.springframework.cloud.client.hypermedia.DynamicServiceInstanceProvider
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResource.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResource.html new file mode 100644 index 00000000..9188df99 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResource.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.hypermedia.RemoteResource (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.hypermedia.RemoteResource

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResourceRefresher.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResourceRefresher.html new file mode 100644 index 00000000..f62a553d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/RemoteResourceRefresher.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.RemoteResourceRefresher (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.RemoteResourceRefresher

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/ServiceInstanceProvider.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/ServiceInstanceProvider.html new file mode 100644 index 00000000..cab4fcad --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/ServiceInstanceProvider.html @@ -0,0 +1,174 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.hypermedia.ServiceInstanceProvider (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.hypermedia.ServiceInstanceProvider

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/StaticServiceInstanceProvider.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/StaticServiceInstanceProvider.html new file mode 100644 index 00000000..e00e4196 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/StaticServiceInstanceProvider.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider

+
+
No usage of org.springframework.cloud.client.hypermedia.StaticServiceInstanceProvider
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/TraversalDefinition.html b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/TraversalDefinition.html new file mode 100644 index 00000000..e85c15eb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/class-use/TraversalDefinition.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.hypermedia.TraversalDefinition (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.hypermedia.TraversalDefinition

+
+
No usage of org.springframework.cloud.client.hypermedia.TraversalDefinition
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/package-frame.html b/target/apidocs/org/springframework/cloud/client/hypermedia/package-frame.html new file mode 100644 index 00000000..4585ed81 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/package-frame.html @@ -0,0 +1,33 @@ + + + + + + +org.springframework.cloud.client.hypermedia (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.hypermedia

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/package-summary.html b/target/apidocs/org/springframework/cloud/client/hypermedia/package-summary.html new file mode 100644 index 00000000..b0e9e9d5 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/package-summary.html @@ -0,0 +1,210 @@ + + + + + + +org.springframework.cloud.client.hypermedia (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.hypermedia

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/package-tree.html b/target/apidocs/org/springframework/cloud/client/hypermedia/package-tree.html new file mode 100644 index 00000000..dbea1590 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/package-tree.html @@ -0,0 +1,159 @@ + + + + + + +org.springframework.cloud.client.hypermedia Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.hypermedia

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/hypermedia/package-use.html b/target/apidocs/org/springframework/cloud/client/hypermedia/package-use.html new file mode 100644 index 00000000..490c9311 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/hypermedia/package-use.html @@ -0,0 +1,173 @@ + + + + + + +Uses of Package org.springframework.cloud.client.hypermedia (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.hypermedia

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.html new file mode 100644 index 00000000..7e6b35b2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerAutoConfiguration.html @@ -0,0 +1,246 @@ + + + + + + +AsyncLoadBalancerAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class AsyncLoadBalancerAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.web.client.AsyncRestTemplate.class)
    +public class AsyncLoadBalancerAutoConfiguration
    +extends Object
    +
    Auto configuration for Ribbon (client side load balancing).
    +
    +
    Author:
    +
    Rob Worsnop
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AsyncLoadBalancerAutoConfiguration

        +
        public AsyncLoadBalancerAutoConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.html new file mode 100644 index 00000000..cf0154fe --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncLoadBalancerInterceptor.html @@ -0,0 +1,293 @@ + + + + + + +AsyncLoadBalancerInterceptor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class AsyncLoadBalancerInterceptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.http.client.AsyncClientHttpRequestInterceptor
    +
    +
    +
    +
    public class AsyncLoadBalancerInterceptor
    +extends Object
    +implements org.springframework.http.client.AsyncClientHttpRequestInterceptor
    +
    +
    Author:
    +
    Rob Worsnop
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AsyncLoadBalancerInterceptor

        +
        public AsyncLoadBalancerInterceptor(LoadBalancerClient loadBalancer)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        intercept

        +
        public org.springframework.util.concurrent.ListenableFuture<org.springframework.http.client.ClientHttpResponse> intercept(org.springframework.http.HttpRequest request,
        +                                                                                                                          byte[] body,
        +                                                                                                                          org.springframework.http.client.AsyncClientHttpRequestExecution execution)
        +                                                                                                                   throws IOException
        +
        +
        Specified by:
        +
        intercept in interface org.springframework.http.client.AsyncClientHttpRequestInterceptor
        +
        Throws:
        +
        IOException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.html new file mode 100644 index 00000000..82d641be --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/AsyncRestTemplateCustomizer.html @@ -0,0 +1,227 @@ + + + + + + +AsyncRestTemplateCustomizer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface AsyncRestTemplateCustomizer

+
+
+
+
    +
  • +
    +
    +
    public interface AsyncRestTemplateCustomizer
    +
    +
    Author:
    +
    Rob Worsnop
    +
    +
  • +
+
+
+
    +
  • + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        customize

        +
        void customize(org.springframework.web.client.AsyncRestTemplate restTemplate)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.html new file mode 100644 index 00000000..c540df14 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/InterceptorRetryPolicy.html @@ -0,0 +1,392 @@ + + + + + + +InterceptorRetryPolicy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class InterceptorRetryPolicy

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable, org.springframework.retry.RetryPolicy
    +
    +
    +
    +
    public class InterceptorRetryPolicy
    +extends Object
    +implements org.springframework.retry.RetryPolicy
    +
    RetryPolicy used by the LoadBalancerClient when retrying failed requests.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        InterceptorRetryPolicy

        +
        public InterceptorRetryPolicy(org.springframework.http.HttpRequest request,
        +                              LoadBalancedRetryPolicy policy,
        +                              ServiceInstanceChooser serviceInstanceChooser,
        +                              String serviceName)
        +
        Creates a new retry policy.
        +
        +
        Parameters:
        +
        request - the request that will be retried
        +
        policy - the retry policy from the load balancer
        +
        serviceInstanceChooser - the load balancer client
        +
        serviceName - the name of the service
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        canRetry

        +
        public boolean canRetry(org.springframework.retry.RetryContext context)
        +
        +
        Specified by:
        +
        canRetry in interface org.springframework.retry.RetryPolicy
        +
        +
      • +
      + + + +
        +
      • +

        open

        +
        public org.springframework.retry.RetryContext open(org.springframework.retry.RetryContext parent)
        +
        +
        Specified by:
        +
        open in interface org.springframework.retry.RetryPolicy
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        public void close(org.springframework.retry.RetryContext context)
        +
        +
        Specified by:
        +
        close in interface org.springframework.retry.RetryPolicy
        +
        +
      • +
      + + + +
        +
      • +

        registerThrowable

        +
        public void registerThrowable(org.springframework.retry.RetryContext context,
        +                              Throwable throwable)
        +
        +
        Specified by:
        +
        registerThrowable in interface org.springframework.retry.RetryPolicy
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(Object o)
        +
        +
        Overrides:
        +
        equals in class Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalanced.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalanced.html new file mode 100644 index 00000000..3e16b179 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalanced.html @@ -0,0 +1,175 @@ + + + + + + +LoadBalanced (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Annotation Type LoadBalanced

+
+
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.html new file mode 100644 index 00000000..043957a2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryContext.html @@ -0,0 +1,407 @@ + + + + + + +LoadBalancedRetryContext (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancedRetryContext

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.core.AttributeAccessorSupport
    • +
    • +
        +
      • org.springframework.retry.context.RetryContextSupport
      • +
      • +
          +
        • org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable, org.springframework.core.AttributeAccessor, org.springframework.retry.RetryContext
    +
    +
    +
    +
    public class LoadBalancedRetryContext
    +extends org.springframework.retry.context.RetryContextSupport
    +
    RetryContext for load balanced retries.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from interface org.springframework.retry.RetryContext

        +CLOSED, EXHAUSTED, NAME, RECOVERED, STATE_KEY
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      LoadBalancedRetryContext(org.springframework.retry.RetryContext parent, + org.springframework.http.HttpRequest request) +
      Creates a new load balanced context.
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      org.springframework.http.HttpRequestgetRequest() +
      Gets the request that is being load balanced.
      +
      ServiceInstancegetServiceInstance() +
      Gets the service instance used during the retry.
      +
      voidsetRequest(org.springframework.http.HttpRequest request) +
      Sets the request that is being load baalnced.
      +
      voidsetServiceInstance(ServiceInstance serviceInstance) +
      Sets the service instance to use during the retry.
      +
      +
        +
      • + + +

        Methods inherited from class org.springframework.retry.context.RetryContextSupport

        +getLastThrowable, getParent, getRetryCount, isExhaustedOnly, registerThrowable, setExhaustedOnly, toString
      • +
      +
        +
      • + + +

        Methods inherited from class org.springframework.core.AttributeAccessorSupport

        +attributeNames, copyAttributesFrom, equals, getAttribute, hasAttribute, hashCode, removeAttribute, setAttribute
      • +
      + +
        +
      • + + +

        Methods inherited from interface org.springframework.core.AttributeAccessor

        +attributeNames, getAttribute, hasAttribute, removeAttribute, setAttribute
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoadBalancedRetryContext

        +
        public LoadBalancedRetryContext(org.springframework.retry.RetryContext parent,
        +                                org.springframework.http.HttpRequest request)
        +
        Creates a new load balanced context.
        +
        +
        Parameters:
        +
        parent - the parent context
        +
        request - the request that is being load balanced
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getRequest

        +
        public org.springframework.http.HttpRequest getRequest()
        +
        Gets the request that is being load balanced.
        +
        +
        Returns:
        +
        the request that is being load balanced
        +
        +
      • +
      + + + +
        +
      • +

        setRequest

        +
        public void setRequest(org.springframework.http.HttpRequest request)
        +
        Sets the request that is being load baalnced.
        +
        +
        Parameters:
        +
        request - the request to load balanced
        +
        +
      • +
      + + + +
        +
      • +

        getServiceInstance

        +
        public ServiceInstance getServiceInstance()
        +
        Gets the service instance used during the retry.
        +
        +
        Returns:
        +
        the service instance used during the retry
        +
        +
      • +
      + + + +
        +
      • +

        setServiceInstance

        +
        public void setServiceInstance(ServiceInstance serviceInstance)
        +
        Sets the service instance to use during the retry.
        +
        +
        Parameters:
        +
        serviceInstance - the service instance to use during the retry
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.html new file mode 100644 index 00000000..7c102259 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicy.html @@ -0,0 +1,304 @@ + + + + + + +LoadBalancedRetryPolicy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancedRetryPolicy

+
+
+
+
    +
  • +
    +
    +
    public interface LoadBalancedRetryPolicy
    +
    Retry logic to use for the LoadBalancerClient.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        canRetrySameServer

        +
        boolean canRetrySameServer(LoadBalancedRetryContext context)
        +
        Return true to retry the failed request on the same server. + This method may be called more than once when executing a single operation.
        +
        +
        Parameters:
        +
        context - the context for the retry operation
        +
        Returns:
        +
        true to retry the failed request on the same server, false otherwise
        +
        +
      • +
      + + + +
        +
      • +

        canRetryNextServer

        +
        boolean canRetryNextServer(LoadBalancedRetryContext context)
        +
        Return true to retry the failed request on the next server from the load balancer. + This method may be called more than once when executing a single operation.
        +
        +
        Parameters:
        +
        context - the context for the retry operation
        +
        Returns:
        +
        true to retry the failed request on the next server from the load balancer, false otherwise
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        void close(LoadBalancedRetryContext context)
        +
        Called when the retry operation has ended.
        +
        +
        Parameters:
        +
        context - the context for the retry operation
        +
        +
      • +
      + + + +
        +
      • +

        registerThrowable

        +
        void registerThrowable(LoadBalancedRetryContext context,
        +                       Throwable throwable)
        +
        Called when the execution fails.
        +
        +
        Parameters:
        +
        context - the context for the retry operation
        +
        throwable - the throwable from the failed execution.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html new file mode 100644 index 00000000..00bf1214 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html @@ -0,0 +1,312 @@ + + + + + + +LoadBalancedRetryPolicyFactory.NeverRetryFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancedRetryPolicyFactory.NeverRetryFactory

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory
    • +
    +
  • +
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.html new file mode 100644 index 00000000..e7bfb344 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancedRetryPolicyFactory.html @@ -0,0 +1,263 @@ + + + + + + +LoadBalancedRetryPolicyFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancedRetryPolicyFactory

+
+
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.html new file mode 100644 index 00000000..0998da49 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerAutoConfiguration.html @@ -0,0 +1,298 @@ + + + + + + +LoadBalancerAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancerAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.springframework.web.client.RestTemplate.class)
    + @ConditionalOnBean(value=LoadBalancerClient.class)
    + @EnableConfigurationProperties(value=LoadBalancerRetryProperties.class)
    +public class LoadBalancerAutoConfiguration
    +extends Object
    +
    Auto configuration for Ribbon (client side load balancing).
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer, Will Tran
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoadBalancerAutoConfiguration

        +
        public LoadBalancerAutoConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        loadBalancedRestTemplateInitializer

        +
        @Bean
        +public org.springframework.beans.factory.SmartInitializingSingleton loadBalancedRestTemplateInitializer(List<RestTemplateCustomizer> customizers)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.html new file mode 100644 index 00000000..abb55aaf --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.html @@ -0,0 +1,322 @@ + + + + + + +LoadBalancerClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancerClient

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        <T> T execute(String serviceId,
        +              LoadBalancerRequest<T> request)
        +       throws IOException
        +
        execute request using a ServiceInstance from the LoadBalancer for the specified + service
        +
        +
        Parameters:
        +
        serviceId - the service id to look up the LoadBalancer
        +
        request - allows implementations to execute pre and post actions such as + incrementing metrics
        +
        Returns:
        +
        the result of the LoadBalancerRequest callback on the selected + ServiceInstance
        +
        Throws:
        +
        IOException
        +
        +
      • +
      + + + +
        +
      • +

        execute

        +
        <T> T execute(String serviceId,
        +              ServiceInstance serviceInstance,
        +              LoadBalancerRequest<T> request)
        +       throws IOException
        +
        execute request using a ServiceInstance from the LoadBalancer for the specified + service
        +
        +
        Parameters:
        +
        serviceId - the service id to look up the LoadBalancer
        +
        serviceInstance - the service to execute the request to
        +
        request - allows implementations to execute pre and post actions such as + incrementing metrics
        +
        Returns:
        +
        the result of the LoadBalancerRequest callback on the selected + ServiceInstance
        +
        Throws:
        +
        IOException
        +
        +
      • +
      + + + +
        +
      • +

        reconstructURI

        +
        URI reconstructURI(ServiceInstance instance,
        +                   URI original)
        +
        Create a proper URI with a real host and port for systems to utilize. + Some systems use a URI with the logical serivce name as the host, + such as http://myservice/path/to/service. This will replace the + service name with the host:port from the ServiceInstance.
        +
        +
        Parameters:
        +
        instance -
        +
        original - a URI with the host as a logical service name
        +
        Returns:
        +
        a reconstructed URI
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.html new file mode 100644 index 00000000..7258fd9f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerInterceptor.html @@ -0,0 +1,307 @@ + + + + + + +LoadBalancerInterceptor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancerInterceptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.http.client.ClientHttpRequestInterceptor
    +
    +
    +
    +
    public class LoadBalancerInterceptor
    +extends Object
    +implements org.springframework.http.client.ClientHttpRequestInterceptor
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer, Ryan Baxter, William Tran
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        intercept

        +
        public org.springframework.http.client.ClientHttpResponse intercept(org.springframework.http.HttpRequest request,
        +                                                                    byte[] body,
        +                                                                    org.springframework.http.client.ClientHttpRequestExecution execution)
        +                                                             throws IOException
        +
        +
        Specified by:
        +
        intercept in interface org.springframework.http.client.ClientHttpRequestInterceptor
        +
        Throws:
        +
        IOException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.html new file mode 100644 index 00000000..24b1c064 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequest.html @@ -0,0 +1,234 @@ + + + + + + +LoadBalancerRequest (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancerRequest<T>

+
+
+
+
    +
  • +
    +
    +
    public interface LoadBalancerRequest<T>
    +
    Simple interface used by LoadBalancerClient to apply metrics or pre and post + actions around load balancer requests.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.html new file mode 100644 index 00000000..6ff8b8e9 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestFactory.html @@ -0,0 +1,299 @@ + + + + + + +LoadBalancerRequestFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancerRequestFactory

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        createRequest

        +
        public LoadBalancerRequest<org.springframework.http.client.ClientHttpResponse> createRequest(org.springframework.http.HttpRequest request,
        +                                                                                             byte[] body,
        +                                                                                             org.springframework.http.client.ClientHttpRequestExecution execution)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.html new file mode 100644 index 00000000..b2639dd4 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRequestTransformer.html @@ -0,0 +1,272 @@ + + + + + + +LoadBalancerRequestTransformer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface LoadBalancerRequestTransformer

+
+
+
+
    +
  • +
    +
    +
    @Order(value=0)
    +public interface LoadBalancerRequestTransformer
    +
    Allows applications to transform the load balanced HttpRequest given + the chosen ServiceInstance
    +
    +
    Author:
    +
    Will Tran
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        transformRequest

        +
        org.springframework.http.HttpRequest transformRequest(org.springframework.http.HttpRequest request,
        +                                                      ServiceInstance instance)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.html new file mode 100644 index 00000000..0c67bf29 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/LoadBalancerRetryProperties.html @@ -0,0 +1,306 @@ + + + + + + +LoadBalancerRetryProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class LoadBalancerRetryProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="spring.cloud.loadbalancer.retry")
    +public class LoadBalancerRetryProperties
    +extends Object
    +
    Configuration properties for the LoadBalancerClient.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoadBalancerRetryProperties

        +
        public LoadBalancerRetryProperties()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isEnabled

        +
        public boolean isEnabled()
        +
        Returns true if the load balancer should retry failed requests.
        +
        +
        Returns:
        +
        true if the load balancer should retry failed request, false otherwise.
        +
        +
      • +
      + + + +
        +
      • +

        setEnabled

        +
        public void setEnabled(boolean enabled)
        +
        Sets whether the load balancer should retry failed request.
        +
        +
        Parameters:
        +
        enabled - whether the load balancer should retry failed requests
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.html new file mode 100644 index 00000000..0f164152 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/RestTemplateCustomizer.html @@ -0,0 +1,227 @@ + + + + + + +RestTemplateCustomizer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface RestTemplateCustomizer

+
+
+
+
    +
  • +
    +
    +
    public interface RestTemplateCustomizer
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        customize

        +
        void customize(org.springframework.web.client.RestTemplate restTemplate)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.html new file mode 100644 index 00000000..a13bf918 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/RetryLoadBalancerInterceptor.html @@ -0,0 +1,319 @@ + + + + + + +RetryLoadBalancerInterceptor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class RetryLoadBalancerInterceptor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.http.client.ClientHttpRequestInterceptor
    +
    +
    +
    +
    public class RetryLoadBalancerInterceptor
    +extends Object
    +implements org.springframework.http.client.ClientHttpRequestInterceptor
    +
    +
    Author:
    +
    Ryan Baxter, Will Tran
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.html new file mode 100644 index 00000000..b224df8b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceInstanceChooser.html @@ -0,0 +1,242 @@ + + + + + + +ServiceInstanceChooser (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Interface ServiceInstanceChooser

+
+
+
+
    +
  • +
    +
    All Known Subinterfaces:
    +
    LoadBalancerClient
    +
    +
    +
    +
    public interface ServiceInstanceChooser
    +
    Implemented by classes which use a load balancer to choose a server to + send a request to.
    +
    +
    Author:
    +
    Ryan Baxter
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        choose

        +
        ServiceInstance choose(String serviceId)
        +
        Choose a ServiceInstance from the LoadBalancer for the specified service
        +
        +
        Parameters:
        +
        serviceId - the service id to look up the LoadBalancer
        +
        Returns:
        +
        a ServiceInstance that matches the serviceId
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.html new file mode 100644 index 00000000..c2bc68ed --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/ServiceRequestWrapper.html @@ -0,0 +1,303 @@ + + + + + + +ServiceRequestWrapper (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.loadbalancer
+

Class ServiceRequestWrapper

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.http.client.support.HttpRequestWrapper
    • +
    • +
        +
      • org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.http.HttpMessage, org.springframework.http.HttpRequest
    +
    +
    +
    +
    public class ServiceRequestWrapper
    +extends org.springframework.http.client.support.HttpRequestWrapper
    +
    +
    Author:
    +
    Ryan Baxter
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServiceRequestWrapper

        +
        public ServiceRequestWrapper(org.springframework.http.HttpRequest request,
        +                             ServiceInstance instance,
        +                             LoadBalancerClient loadBalancer)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getURI

        +
        public URI getURI()
        +
        +
        Specified by:
        +
        getURI in interface org.springframework.http.HttpRequest
        +
        Overrides:
        +
        getURI in class org.springframework.http.client.support.HttpRequestWrapper
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerAutoConfiguration.html new file mode 100644 index 00000000..4d9dd283 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration

+
+
No usage of org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerInterceptor.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerInterceptor.html new file mode 100644 index 00000000..85985230 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncLoadBalancerInterceptor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor

+
+
No usage of org.springframework.cloud.client.loadbalancer.AsyncLoadBalancerInterceptor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncRestTemplateCustomizer.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncRestTemplateCustomizer.html new file mode 100644 index 00000000..bff2ca40 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/AsyncRestTemplateCustomizer.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.AsyncRestTemplateCustomizer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.AsyncRestTemplateCustomizer

+
+
No usage of org.springframework.cloud.client.loadbalancer.AsyncRestTemplateCustomizer
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/InterceptorRetryPolicy.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/InterceptorRetryPolicy.html new file mode 100644 index 00000000..390c9255 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/InterceptorRetryPolicy.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy

+
+
No usage of org.springframework.cloud.client.loadbalancer.InterceptorRetryPolicy
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalanced.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalanced.html new file mode 100644 index 00000000..68ebc843 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalanced.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalanced (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalanced

+
+
No usage of org.springframework.cloud.client.loadbalancer.LoadBalanced
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryContext.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryContext.html new file mode 100644 index 00000000..418baf02 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryContext.html @@ -0,0 +1,187 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancedRetryContext

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicy.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicy.html new file mode 100644 index 00000000..cd1b59e2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicy.html @@ -0,0 +1,190 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicy

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html new file mode 100644 index 00000000..a20017dd --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.NeverRetryFactory.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory

+
+
No usage of org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory.NeverRetryFactory
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.html new file mode 100644 index 00000000..94391e50 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancedRetryPolicyFactory.html @@ -0,0 +1,187 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancedRetryPolicyFactory

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerAutoConfiguration.html new file mode 100644 index 00000000..f623e83e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration

+
+
No usage of org.springframework.cloud.client.loadbalancer.LoadBalancerAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerClient.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerClient.html new file mode 100644 index 00000000..df91b771 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerClient.html @@ -0,0 +1,209 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancerClient (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancerClient

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerInterceptor.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerInterceptor.html new file mode 100644 index 00000000..fdbfe970 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerInterceptor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor

+
+
No usage of org.springframework.cloud.client.loadbalancer.LoadBalancerInterceptor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequest.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequest.html new file mode 100644 index 00000000..0c3bc5d1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequest.html @@ -0,0 +1,194 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequest (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancerRequest

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestFactory.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestFactory.html new file mode 100644 index 00000000..9124c238 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestFactory.html @@ -0,0 +1,185 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancerRequestFactory

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestTransformer.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestTransformer.html new file mode 100644 index 00000000..92efeecf --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRequestTransformer.html @@ -0,0 +1,165 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.LoadBalancerRequestTransformer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.LoadBalancerRequestTransformer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRetryProperties.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRetryProperties.html new file mode 100644 index 00000000..6854ff2f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/LoadBalancerRetryProperties.html @@ -0,0 +1,174 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RestTemplateCustomizer.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RestTemplateCustomizer.html new file mode 100644 index 00000000..0e30f9eb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RestTemplateCustomizer.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.RestTemplateCustomizer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.RestTemplateCustomizer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RetryLoadBalancerInterceptor.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RetryLoadBalancerInterceptor.html new file mode 100644 index 00000000..83eca74a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/RetryLoadBalancerInterceptor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor

+
+
No usage of org.springframework.cloud.client.loadbalancer.RetryLoadBalancerInterceptor
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceInstanceChooser.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceInstanceChooser.html new file mode 100644 index 00000000..cc7cdf58 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceInstanceChooser.html @@ -0,0 +1,205 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.loadbalancer.ServiceInstanceChooser (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.loadbalancer.ServiceInstanceChooser

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceRequestWrapper.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceRequestWrapper.html new file mode 100644 index 00000000..6f44cb0a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/class-use/ServiceRequestWrapper.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper

+
+
No usage of org.springframework.cloud.client.loadbalancer.ServiceRequestWrapper
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/package-frame.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/package-frame.html new file mode 100644 index 00000000..c901661b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/package-frame.html @@ -0,0 +1,46 @@ + + + + + + +org.springframework.cloud.client.loadbalancer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.loadbalancer

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/package-summary.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/package-summary.html new file mode 100644 index 00000000..51968b19 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/package-summary.html @@ -0,0 +1,272 @@ + + + + + + +org.springframework.cloud.client.loadbalancer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.loadbalancer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/package-tree.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/package-tree.html new file mode 100644 index 00000000..556bba53 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/package-tree.html @@ -0,0 +1,179 @@ + + + + + + +org.springframework.cloud.client.loadbalancer Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.loadbalancer

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/loadbalancer/package-use.html b/target/apidocs/org/springframework/cloud/client/loadbalancer/package-use.html new file mode 100644 index 00000000..fe265b42 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/loadbalancer/package-use.html @@ -0,0 +1,208 @@ + + + + + + +Uses of Package org.springframework.cloud.client.loadbalancer (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.loadbalancer

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/package-frame.html b/target/apidocs/org/springframework/cloud/client/package-frame.html new file mode 100644 index 00000000..17379de7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/package-frame.html @@ -0,0 +1,33 @@ + + + + + + +org.springframework.cloud.client (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/package-summary.html b/target/apidocs/org/springframework/cloud/client/package-summary.html new file mode 100644 index 00000000..5c5b2f48 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/package-summary.html @@ -0,0 +1,196 @@ + + + + + + +org.springframework.cloud.client (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/package-tree.html b/target/apidocs/org/springframework/cloud/client/package-tree.html new file mode 100644 index 00000000..7a4f3bad --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/package-tree.html @@ -0,0 +1,151 @@ + + + + + + +org.springframework.cloud.client Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/package-use.html b/target/apidocs/org/springframework/cloud/client/package-use.html new file mode 100644 index 00000000..94713b22 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/package-use.html @@ -0,0 +1,266 @@ + + + + + + +Uses of Package org.springframework.cloud.client (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.html new file mode 100644 index 00000000..f861ec9c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/AbstractAutoServiceRegistration.html @@ -0,0 +1,443 @@ + + + + + + +AbstractAutoServiceRegistration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class AbstractAutoServiceRegistration<R extends Registration>

+
+
+ +
+
    +
  • +
    +
    Type Parameters:
    +
    R - registration type passed to the ServiceRegistry.
    +
    +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, DiscoveryLifecycle, AutoServiceRegistration, org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent>, org.springframework.context.Lifecycle, org.springframework.context.Phased, org.springframework.context.SmartLifecycle, org.springframework.core.Ordered
    +
    +
    +
    +
    public abstract class AbstractAutoServiceRegistration<R extends Registration>
    +extends AbstractDiscoveryLifecycle
    +implements AutoServiceRegistration
    +
    Lifecycle methods that may be useful and common to ServiceRegistry implementations. + + TODO: document the lifecycle
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.html new file mode 100644 index 00000000..c6402899 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistration.html @@ -0,0 +1,177 @@ + + + + + + +AutoServiceRegistration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Interface AutoServiceRegistration

+
+
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.html new file mode 100644 index 00000000..f5a4a107 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationAutoConfiguration.html @@ -0,0 +1,280 @@ + + + + + + +AutoServiceRegistrationAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class AutoServiceRegistrationAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AutoServiceRegistrationAutoConfiguration

        +
        public AutoServiceRegistrationAutoConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.html new file mode 100644 index 00000000..ecce0270 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationConfiguration.html @@ -0,0 +1,245 @@ + + + + + + +AutoServiceRegistrationConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class AutoServiceRegistrationConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AutoServiceRegistrationConfiguration

        +
        public AutoServiceRegistrationConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.html new file mode 100644 index 00000000..e9615cc1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/AutoServiceRegistrationProperties.html @@ -0,0 +1,291 @@ + + + + + + +AutoServiceRegistrationProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class AutoServiceRegistrationProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="spring.cloud.service-registry.auto-registration")
    +public class AutoServiceRegistrationProperties
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AutoServiceRegistrationProperties

        +
        public AutoServiceRegistrationProperties()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isFailFast

        +
        public boolean isFailFast()
        +
      • +
      + + + +
        +
      • +

        setFailFast

        +
        public void setFailFast(boolean failFast)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/Registration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/Registration.html new file mode 100644 index 00000000..0e1a1791 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/Registration.html @@ -0,0 +1,234 @@ + + + + + + +Registration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Interface Registration

+
+
+
+
    +
  • +
    +
    +
    public interface Registration
    +
    A marker interface used by a ServiceRegistry.
    +
    +
    Since:
    +
    1.2.0
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getServiceId

        +
        String getServiceId()
        +
        +
        Returns:
        +
        the serviceId associated with this registration
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistry.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistry.html new file mode 100644 index 00000000..7a75a4f6 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistry.html @@ -0,0 +1,334 @@ + + + + + + +ServiceRegistry (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Interface ServiceRegistry<R extends Registration>

+
+
+
+
    +
  • +
    +
    +
    public interface ServiceRegistry<R extends Registration>
    +
    Contract to register and deregister instances with a Service Registry.
    +
    +
    Since:
    +
    1.2.0
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethod and Description
      voidclose() +
      Close the ServiceRegistry.
      +
      voidderegister(R registration) +
      Deregister the registration.
      +
      <T> TgetStatus(R registration) +
      Gets the status of a particular registration.
      +
      voidregister(R registration) +
      Register the registration.
      +
      voidsetStatus(R registration, + String status) +
      Sets the status of the registration.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        register

        +
        void register(R registration)
        +
        Register the registration. Registrations typically have information about + instances such as: hostname and port.
        +
        +
        Parameters:
        +
        registration - the registraion
        +
        +
      • +
      + + + + + +
        +
      • +

        deregister

        +
        void deregister(R registration)
        +
        Deregister the registration.
        +
        +
        Parameters:
        +
        registration -
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        void close()
        +
        Close the ServiceRegistry. This a lifecycle method.
        +
      • +
      + + + + + +
        +
      • +

        setStatus

        +
        void setStatus(R registration,
        +               String status)
        +
        Sets the status of the registration. The status values are determined + by the individual implementations.
        +
        +
        Parameters:
        +
        registration - the registration to update
        +
        status - the status to set
        +
        See Also:
        +
        ServiceRegistryEndpoint
        +
        +
      • +
      + + + + + +
        +
      • +

        getStatus

        +
        <T> T getStatus(R registration)
        +
        Gets the status of a particular registration.
        +
        +
        Type Parameters:
        +
        T - the type of the status
        +
        Parameters:
        +
        registration - the registration to query
        +
        Returns:
        +
        the status of the registration
        +
        See Also:
        +
        ServiceRegistryEndpoint
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html new file mode 100644 index 00000000..8082b0a0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html @@ -0,0 +1,282 @@ + + + + + + +ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    ServiceRegistryAutoConfiguration
    +
    +
    +
    +
    @ConditionalOnBean(value=ServiceRegistry.class)
    + @ConditionalOnClass(value=org.springframework.boot.actuate.endpoint.Endpoint.class)
    +protected class ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServiceRegistryEndpointConfiguration

        +
        protected ServiceRegistryEndpointConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.html new file mode 100644 index 00000000..8d8f83e6 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/ServiceRegistryAutoConfiguration.html @@ -0,0 +1,263 @@ + + + + + + +ServiceRegistryAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry
+

Class ServiceRegistryAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    +public class ServiceRegistryAutoConfiguration
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServiceRegistryAutoConfiguration

        +
        public ServiceRegistryAutoConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AbstractAutoServiceRegistration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AbstractAutoServiceRegistration.html new file mode 100644 index 00000000..9ea0aa63 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AbstractAutoServiceRegistration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration

+
+
No usage of org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistration.html new file mode 100644 index 00000000..33606cbb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistration.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.serviceregistry.AutoServiceRegistration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.serviceregistry.AutoServiceRegistration

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationAutoConfiguration.html new file mode 100644 index 00000000..452de4ea --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration

+
+
No usage of org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationConfiguration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationConfiguration.html new file mode 100644 index 00000000..14f7901c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration

+
+
No usage of org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationProperties.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationProperties.html new file mode 100644 index 00000000..3bf4024b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/AutoServiceRegistrationProperties.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties

+
+
No usage of org.springframework.cloud.client.serviceregistry.AutoServiceRegistrationProperties
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/Registration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/Registration.html new file mode 100644 index 00000000..27cad91d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/Registration.html @@ -0,0 +1,196 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.serviceregistry.Registration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.serviceregistry.Registration

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistry.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistry.html new file mode 100644 index 00000000..5fd2f2cb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistry.html @@ -0,0 +1,210 @@ + + + + + + +Uses of Interface org.springframework.cloud.client.serviceregistry.ServiceRegistry (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.client.serviceregistry.ServiceRegistry

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html new file mode 100644 index 00000000..6b6b1571 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration

+
+
No usage of org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration.ServiceRegistryEndpointConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.html new file mode 100644 index 00000000..62b15550 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/class-use/ServiceRegistryAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration

+
+
No usage of org.springframework.cloud.client.serviceregistry.ServiceRegistryAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.html new file mode 100644 index 00000000..e3bbbd80 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/ServiceRegistryEndpoint.html @@ -0,0 +1,385 @@ + + + + + + +ServiceRegistryEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.client.serviceregistry.endpoint
+

Class ServiceRegistryEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
    +
    +
    +
    +
    @ManagedResource(description="Can be used to display and set the service instance status using the service registry")
    +public class ServiceRegistryEndpoint
    +extends Object
    +implements org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
    +
    Endpoint to display and set the service instance status using the service registry.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServiceRegistryEndpoint

        +
        public ServiceRegistryEndpoint(ServiceRegistry<?> serviceRegistry)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setRegistration

        +
        public void setRegistration(Registration registration)
        +
      • +
      + + + +
        +
      • +

        setStatus

        +
        @RequestMapping(path="instance-status",
        +                method=POST)
        + @ResponseBody
        + @ManagedOperation
        +public org.springframework.http.ResponseEntity<?> setStatus(@RequestBody
        +                                                                                                                                                                   String status)
        +
      • +
      + + + +
        +
      • +

        getStatus

        +
        @RequestMapping(path="instance-status",
        +                method=GET)
        + @ResponseBody
        + @ManagedAttribute
        +public org.springframework.http.ResponseEntity getStatus()
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public String getPath()
        +
        +
        Specified by:
        +
        getPath in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      + + + +
        +
      • +

        isSensitive

        +
        public boolean isSensitive()
        +
        +
        Specified by:
        +
        isSensitive in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      + + + +
        +
      • +

        getEndpointType

        +
        public Class<? extends org.springframework.boot.actuate.endpoint.Endpoint<?>> getEndpointType()
        +
        +
        Specified by:
        +
        getEndpointType in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/class-use/ServiceRegistryEndpoint.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/class-use/ServiceRegistryEndpoint.html new file mode 100644 index 00000000..53218e63 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/class-use/ServiceRegistryEndpoint.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-frame.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-frame.html new file mode 100644 index 00000000..c8eefbaa --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.client.serviceregistry.endpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.serviceregistry.endpoint

+
+

Classes

+ +
+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-summary.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-summary.html new file mode 100644 index 00000000..58a830eb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +org.springframework.cloud.client.serviceregistry.endpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.serviceregistry.endpoint

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    ServiceRegistryEndpoint +
    Endpoint to display and set the service instance status using the service registry.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-tree.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-tree.html new file mode 100644 index 00000000..dad16161 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +org.springframework.cloud.client.serviceregistry.endpoint Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.serviceregistry.endpoint

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint (implements org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-use.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-use.html new file mode 100644 index 00000000..32d32514 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/endpoint/package-use.html @@ -0,0 +1,161 @@ + + + + + + +Uses of Package org.springframework.cloud.client.serviceregistry.endpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.serviceregistry.endpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/package-frame.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/package-frame.html new file mode 100644 index 00000000..d9d430ba --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/package-frame.html @@ -0,0 +1,31 @@ + + + + + + +org.springframework.cloud.client.serviceregistry (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.client.serviceregistry

+ + + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/package-summary.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/package-summary.html new file mode 100644 index 00000000..2cbba09e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/package-summary.html @@ -0,0 +1,189 @@ + + + + + + +org.springframework.cloud.client.serviceregistry (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.client.serviceregistry

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/package-tree.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/package-tree.html new file mode 100644 index 00000000..5635983d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/package-tree.html @@ -0,0 +1,154 @@ + + + + + + +org.springframework.cloud.client.serviceregistry Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.client.serviceregistry

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/client/serviceregistry/package-use.html b/target/apidocs/org/springframework/cloud/client/serviceregistry/package-use.html new file mode 100644 index 00000000..62bd7bde --- /dev/null +++ b/target/apidocs/org/springframework/cloud/client/serviceregistry/package-use.html @@ -0,0 +1,195 @@ + + + + + + +Uses of Package org.springframework.cloud.client.serviceregistry (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.client.serviceregistry

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/IdUtils.html b/target/apidocs/org/springframework/cloud/commons/util/IdUtils.html new file mode 100644 index 00000000..f70c71bb --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/IdUtils.html @@ -0,0 +1,294 @@ + + + + + + +IdUtils (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class IdUtils

+
+
+ +
+
    +
  • +
    +
    +
    public class IdUtils
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        IdUtils

        +
        public IdUtils()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getDefaultInstanceId

        +
        public static String getDefaultInstanceId(org.springframework.core.env.PropertyResolver resolver)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/InetUtils.HostInfo.html b/target/apidocs/org/springframework/cloud/commons/util/InetUtils.HostInfo.html new file mode 100644 index 00000000..765194ba --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/InetUtils.HostInfo.html @@ -0,0 +1,325 @@ + + + + + + +InetUtils.HostInfo (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class InetUtils.HostInfo

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.commons.util.InetUtils.HostInfo
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    InetUtils
    +
    +
    +
    +
    public static class InetUtils.HostInfo
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        override

        +
        public boolean override
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HostInfo

        +
        public HostInfo(String hostname)
        +
      • +
      + + + +
        +
      • +

        HostInfo

        +
        public HostInfo()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getIpAddressAsInt

        +
        public int getIpAddressAsInt()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/InetUtils.html b/target/apidocs/org/springframework/cloud/commons/util/InetUtils.html new file mode 100644 index 00000000..fdc8c0ae --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/InetUtils.html @@ -0,0 +1,400 @@ + + + + + + +InetUtils (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class InetUtils

+
+
+ +
+ +
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        findFirstNonLoopbackHostInfo

        +
        public InetUtils.HostInfo findFirstNonLoopbackHostInfo()
        +
      • +
      + + + +
        +
      • +

        findFirstNonLoopbackAddress

        +
        public InetAddress findFirstNonLoopbackAddress()
        +
      • +
      + + + + + + + +
        +
      • +

        getFirstNonLoopbackHostInfo

        +
        @Deprecated
        +public static InetUtils.HostInfo getFirstNonLoopbackHostInfo()
        +
        Deprecated. use the non-static findFirstNonLoopbackHostInfo() instead
        +
        Find the first non-loopback host info. If there were errors return a host info with + 'localhost' and '127.0.0.1' for hostname and ipAddress respectively.
        +
      • +
      + + + + + + + +
        +
      • +

        getIpAddressAsInt

        +
        public static int getIpAddressAsInt(String host)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/InetUtilsProperties.html b/target/apidocs/org/springframework/cloud/commons/util/InetUtilsProperties.html new file mode 100644 index 00000000..19a31398 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/InetUtilsProperties.html @@ -0,0 +1,284 @@ + + + + + + +InetUtilsProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class InetUtilsProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.commons.util.InetUtilsProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(value="spring.cloud.inetutils")
    +public class InetUtilsProperties
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        InetUtilsProperties

        +
        public InetUtilsProperties()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/SpringFactoryImportSelector.html b/target/apidocs/org/springframework/cloud/commons/util/SpringFactoryImportSelector.html new file mode 100644 index 00000000..e0185941 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/SpringFactoryImportSelector.html @@ -0,0 +1,393 @@ + + + + + + +SpringFactoryImportSelector (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class SpringFactoryImportSelector<T>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.commons.util.SpringFactoryImportSelector<T>
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.annotation.ImportSelector, org.springframework.context.EnvironmentAware
    +
    +
    +
    Direct Known Subclasses:
    +
    EnableCircuitBreakerImportSelector, EnableDiscoveryClientImportSelector
    +
    +
    +
    +
    public abstract class SpringFactoryImportSelector<T>
    +extends Object
    +implements org.springframework.context.annotation.DeferredImportSelector, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.EnvironmentAware
    +
    Selects configurations to load defined by the generic type T. Loads implementations + using SpringFactoriesLoader.
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SpringFactoryImportSelector

        +
        protected SpringFactoryImportSelector()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        selectImports

        +
        public String[] selectImports(org.springframework.core.type.AnnotationMetadata metadata)
        +
        +
        Specified by:
        +
        selectImports in interface org.springframework.context.annotation.ImportSelector
        +
        +
      • +
      + + + +
        +
      • +

        hasDefaultFactory

        +
        protected boolean hasDefaultFactory()
        +
      • +
      + + + +
        +
      • +

        isEnabled

        +
        protected abstract boolean isEnabled()
        +
      • +
      + + + +
        +
      • +

        getSimpleName

        +
        protected String getSimpleName()
        +
      • +
      + + + +
        +
      • +

        getAnnotationClass

        +
        protected Class<T> getAnnotationClass()
        +
      • +
      + + + +
        +
      • +

        getEnvironment

        +
        protected org.springframework.core.env.Environment getEnvironment()
        +
      • +
      + + + +
        +
      • +

        setEnvironment

        +
        public void setEnvironment(org.springframework.core.env.Environment environment)
        +
        +
        Specified by:
        +
        setEnvironment in interface org.springframework.context.EnvironmentAware
        +
        +
      • +
      + + + +
        +
      • +

        setBeanClassLoader

        +
        public void setBeanClassLoader(ClassLoader classLoader)
        +
        +
        Specified by:
        +
        setBeanClassLoader in interface org.springframework.beans.factory.BeanClassLoaderAware
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/UtilAutoConfiguration.html b/target/apidocs/org/springframework/cloud/commons/util/UtilAutoConfiguration.html new file mode 100644 index 00000000..2c82de02 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/UtilAutoConfiguration.html @@ -0,0 +1,297 @@ + + + + + + +UtilAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.commons.util
+

Class UtilAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.commons.util.UtilAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnProperty(value="spring.cloud.util.enabled",
    +                       matchIfMissing=true)
    + @EnableConfigurationProperties
    +public class UtilAutoConfiguration
    +extends Object
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UtilAutoConfiguration

        +
        public UtilAutoConfiguration()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/class-use/IdUtils.html b/target/apidocs/org/springframework/cloud/commons/util/class-use/IdUtils.html new file mode 100644 index 00000000..4b09920f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/class-use/IdUtils.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.IdUtils (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.IdUtils

+
+
No usage of org.springframework.cloud.commons.util.IdUtils
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.HostInfo.html b/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.HostInfo.html new file mode 100644 index 00000000..c8dfdc6a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.HostInfo.html @@ -0,0 +1,186 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.InetUtils.HostInfo (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.InetUtils.HostInfo

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.html b/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.html new file mode 100644 index 00000000..65cf19d3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtils.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.InetUtils (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.InetUtils

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtilsProperties.html b/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtilsProperties.html new file mode 100644 index 00000000..f946f0bd --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/class-use/InetUtilsProperties.html @@ -0,0 +1,190 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.InetUtilsProperties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.InetUtilsProperties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/class-use/SpringFactoryImportSelector.html b/target/apidocs/org/springframework/cloud/commons/util/class-use/SpringFactoryImportSelector.html new file mode 100644 index 00000000..22f00688 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/class-use/SpringFactoryImportSelector.html @@ -0,0 +1,190 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.SpringFactoryImportSelector (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.SpringFactoryImportSelector

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/class-use/UtilAutoConfiguration.html b/target/apidocs/org/springframework/cloud/commons/util/class-use/UtilAutoConfiguration.html new file mode 100644 index 00000000..5f416663 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/class-use/UtilAutoConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.commons.util.UtilAutoConfiguration (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.commons.util.UtilAutoConfiguration

+
+
No usage of org.springframework.cloud.commons.util.UtilAutoConfiguration
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/package-frame.html b/target/apidocs/org/springframework/cloud/commons/util/package-frame.html new file mode 100644 index 00000000..69335a51 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.commons.util (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.commons.util

+ + + diff --git a/target/apidocs/org/springframework/cloud/commons/util/package-summary.html b/target/apidocs/org/springframework/cloud/commons/util/package-summary.html new file mode 100644 index 00000000..0f21cd41 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/package-summary.html @@ -0,0 +1,166 @@ + + + + + + +org.springframework.cloud.commons.util (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.commons.util

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/package-tree.html b/target/apidocs/org/springframework/cloud/commons/util/package-tree.html new file mode 100644 index 00000000..f6b54685 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.commons.util Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.commons.util

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.commons.util.IdUtils
    • +
    • org.springframework.cloud.commons.util.InetUtils (implements java.io.Closeable)
    • +
    • org.springframework.cloud.commons.util.InetUtils.HostInfo
    • +
    • org.springframework.cloud.commons.util.InetUtilsProperties
    • +
    • org.springframework.cloud.commons.util.SpringFactoryImportSelector<T> (implements org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.context.annotation.DeferredImportSelector, org.springframework.context.EnvironmentAware)
    • +
    • org.springframework.cloud.commons.util.UtilAutoConfiguration
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/commons/util/package-use.html b/target/apidocs/org/springframework/cloud/commons/util/package-use.html new file mode 100644 index 00000000..9eb7dd63 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/commons/util/package-use.html @@ -0,0 +1,207 @@ + + + + + + +Uses of Package org.springframework.cloud.commons.util (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.commons.util

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.Context.html b/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.Context.html new file mode 100644 index 00000000..66b02a93 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.Context.html @@ -0,0 +1,294 @@ + + + + + + +BeanLifecycleDecorator.Context (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.config
+

Class BeanLifecycleDecorator.Context<T>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.config.BeanLifecycleDecorator.Context<T>
    • +
    +
  • +
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + + + +
        +
      • +

        Context

        +
        public Context(Runnable callback,
        +               T auxiliary)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getCallback

        +
        public Runnable getCallback()
        +
      • +
      + + + +
        +
      • +

        getAuxiliary

        +
        public T getAuxiliary()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.html b/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.html new file mode 100644 index 00000000..eef053d0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/BeanLifecycleDecorator.html @@ -0,0 +1,301 @@ + + + + + + +BeanLifecycleDecorator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.config
+

Interface BeanLifecycleDecorator<T>

+
+
+
+
    +
  • +
    +
    Type Parameters:
    +
    T - the type of auxiliary context object that can be passed between + methods. Implementations can choose what type of data to supply as + it is passed around unchanged by the caller.
    +
    +
    +
    All Known Implementing Classes:
    +
    StandardBeanLifecycleDecorator
    +
    +
    +
    +
    public interface BeanLifecycleDecorator<T>
    +
    A helper interface providing optional decoration of bean instances and their + destruction callbacks. Users can supply custom implementations of this + strategy if they want tighter control over method invocation on the bean or + its destruction callback.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        decorateBean

        +
        Object decorateBean(Object bean,
        +                    BeanLifecycleDecorator.Context<T> context)
        +
        Optionally decorate and provide a new instance of a compatible bean for + the caller to use instead of the input.
        +
        +
        Parameters:
        +
        bean - the bean to optionally decorate
        +
        context - the context as created by + decorateDestructionCallback(Runnable)
        +
        Returns:
        +
        the replacement bean for the caller to use
        +
        +
      • +
      + + + +
        +
      • +

        decorateDestructionCallback

        +
        BeanLifecycleDecorator.Context<T> decorateDestructionCallback(Runnable callback)
        +
        Optionally decorate the destruction callback provided, and also return + some context that can be used later by the + decorateBean(Object, Context) method.
        +
        +
        Parameters:
        +
        callback - the destruction callback that will be used by the container
        +
        Returns:
        +
        a context wrapper
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.html b/target/apidocs/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.html new file mode 100644 index 00000000..7f95d327 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/StandardBeanLifecycleDecorator.html @@ -0,0 +1,349 @@ + + + + + + +StandardBeanLifecycleDecorator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.config
+

Class StandardBeanLifecycleDecorator

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    BeanLifecycleDecorator<ReadWriteLock>
    +
    +
    +
    +
    public class StandardBeanLifecycleDecorator
    +extends Object
    +implements BeanLifecycleDecorator<ReadWriteLock>
    +
    A BeanLifecycleDecorator that tries to protect against concurrent access to a bean during its own destruction. + A read-write lock is used, and method access is protected using the read lock, while the destruction callback is + protected more strictly with the write lock. In this way concurrent access is possible to the bean as long as it is + not being destroyed, in which case only one thread has access. If the bean has no destruction callback the lock and + associated proxies are never created.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/annotation/RefreshScope.html b/target/apidocs/org/springframework/cloud/context/config/annotation/RefreshScope.html new file mode 100644 index 00000000..b9115de1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/annotation/RefreshScope.html @@ -0,0 +1,234 @@ + + + + + + +RefreshScope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.config.annotation
+

Annotation Type RefreshScope

+
+
+
+
    +
  • +
    +
    +
    @Target(value={TYPE,METHOD})
    + @Retention(value=RUNTIME)
    + @Scope(value="refresh")
    + @Documented
    +public @interface RefreshScope
    +
    Convenience annotation to put a @Bean definition in + refresh scope. + Beans annotated this way can be refreshed at runtime and any components that are using + them will get a new instance on the next method call, fully initialized and injected + with all dependencies.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Optional Element Summary

      + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional Element and Description
      org.springframework.context.annotation.ScopedProxyModeproxyMode 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        proxyMode

        +
        public abstract org.springframework.context.annotation.ScopedProxyMode proxyMode
        +
        +
        See Also:
        +
        Scope.proxyMode()
        +
        +
        +
        Default:
        +
        org.springframework.context.annotation.ScopedProxyMode.TARGET_CLASS
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/annotation/class-use/RefreshScope.html b/target/apidocs/org/springframework/cloud/context/config/annotation/class-use/RefreshScope.html new file mode 100644 index 00000000..bd4abcc6 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/annotation/class-use/RefreshScope.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.config.annotation.RefreshScope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.config.annotation.RefreshScope

+
+
No usage of org.springframework.cloud.context.config.annotation.RefreshScope
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/annotation/package-frame.html b/target/apidocs/org/springframework/cloud/context/config/annotation/package-frame.html new file mode 100644 index 00000000..bfdd6dc3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/annotation/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.context.config.annotation (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.config.annotation

+
+

Annotation Types

+ +
+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/annotation/package-summary.html b/target/apidocs/org/springframework/cloud/context/config/annotation/package-summary.html new file mode 100644 index 00000000..3766b658 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/annotation/package-summary.html @@ -0,0 +1,147 @@ + + + + + + +org.springframework.cloud.context.config.annotation (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.config.annotation

+
+
+
    +
  • + + + + + + + + + + + + +
    Annotation Types Summary 
    Annotation TypeDescription
    RefreshScope +
    Convenience annotation to put a @Bean definition in + refresh scope.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/annotation/package-tree.html b/target/apidocs/org/springframework/cloud/context/config/annotation/package-tree.html new file mode 100644 index 00000000..744ea9d7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/annotation/package-tree.html @@ -0,0 +1,135 @@ + + + + + + +org.springframework.cloud.context.config.annotation Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.config.annotation

+Package Hierarchies: + +
+
+

Annotation Type Hierarchy

+
    +
  • org.springframework.cloud.context.config.annotation.RefreshScope (implements java.lang.annotation.Annotation)
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/annotation/package-use.html b/target/apidocs/org/springframework/cloud/context/config/annotation/package-use.html new file mode 100644 index 00000000..8854568b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/annotation/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.context.config.annotation (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.config.annotation

+
+
No usage of org.springframework.cloud.context.config.annotation
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.Context.html b/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.Context.html new file mode 100644 index 00000000..320663d3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.Context.html @@ -0,0 +1,196 @@ + + + + + + +Uses of Class org.springframework.cloud.context.config.BeanLifecycleDecorator.Context (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.config.BeanLifecycleDecorator.Context

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.html b/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.html new file mode 100644 index 00000000..fdccb536 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/class-use/BeanLifecycleDecorator.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Interface org.springframework.cloud.context.config.BeanLifecycleDecorator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.context.config.BeanLifecycleDecorator

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/class-use/StandardBeanLifecycleDecorator.html b/target/apidocs/org/springframework/cloud/context/config/class-use/StandardBeanLifecycleDecorator.html new file mode 100644 index 00000000..effdd5df --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/class-use/StandardBeanLifecycleDecorator.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.config.StandardBeanLifecycleDecorator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.config.StandardBeanLifecycleDecorator

+
+
No usage of org.springframework.cloud.context.config.StandardBeanLifecycleDecorator
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/package-frame.html b/target/apidocs/org/springframework/cloud/context/config/package-frame.html new file mode 100644 index 00000000..c0db032c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.context.config (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.config

+ + + diff --git a/target/apidocs/org/springframework/cloud/context/config/package-summary.html b/target/apidocs/org/springframework/cloud/context/config/package-summary.html new file mode 100644 index 00000000..516a58f3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/package-summary.html @@ -0,0 +1,168 @@ + + + + + + +org.springframework.cloud.context.config (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.config

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/package-tree.html b/target/apidocs/org/springframework/cloud/context/config/package-tree.html new file mode 100644 index 00000000..0b3c37fe --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.context.config Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.config

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/config/package-use.html b/target/apidocs/org/springframework/cloud/context/config/package-use.html new file mode 100644 index 00000000..e5df3387 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/config/package-use.html @@ -0,0 +1,187 @@ + + + + + + +Uses of Package org.springframework.cloud.context.config (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.config

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/encrypt/EncryptorFactory.html b/target/apidocs/org/springframework/cloud/context/encrypt/EncryptorFactory.html new file mode 100644 index 00000000..09d04e0f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/encrypt/EncryptorFactory.html @@ -0,0 +1,277 @@ + + + + + + +EncryptorFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.encrypt
+

Class EncryptorFactory

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.encrypt.EncryptorFactory
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class EncryptorFactory
    +extends Object
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EncryptorFactory

        +
        public EncryptorFactory()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        create

        +
        public org.springframework.security.crypto.encrypt.TextEncryptor create(String data)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/encrypt/KeyFormatException.html b/target/apidocs/org/springframework/cloud/context/encrypt/KeyFormatException.html new file mode 100644 index 00000000..bc0124c8 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/encrypt/KeyFormatException.html @@ -0,0 +1,269 @@ + + + + + + +KeyFormatException (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.encrypt
+

Class KeyFormatException

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        KeyFormatException

        +
        public KeyFormatException()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/encrypt/class-use/EncryptorFactory.html b/target/apidocs/org/springframework/cloud/context/encrypt/class-use/EncryptorFactory.html new file mode 100644 index 00000000..0878cbb2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/encrypt/class-use/EncryptorFactory.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.encrypt.EncryptorFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.encrypt.EncryptorFactory

+
+
No usage of org.springframework.cloud.context.encrypt.EncryptorFactory
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/encrypt/class-use/KeyFormatException.html b/target/apidocs/org/springframework/cloud/context/encrypt/class-use/KeyFormatException.html new file mode 100644 index 00000000..f4570118 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/encrypt/class-use/KeyFormatException.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.encrypt.KeyFormatException (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.encrypt.KeyFormatException

+
+
No usage of org.springframework.cloud.context.encrypt.KeyFormatException
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/encrypt/package-frame.html b/target/apidocs/org/springframework/cloud/context/encrypt/package-frame.html new file mode 100644 index 00000000..f8eda3f4 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/encrypt/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +org.springframework.cloud.context.encrypt (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.encrypt

+
+

Classes

+ +

Exceptions

+ +
+ + diff --git a/target/apidocs/org/springframework/cloud/context/encrypt/package-summary.html b/target/apidocs/org/springframework/cloud/context/encrypt/package-summary.html new file mode 100644 index 00000000..19ac2fd2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/encrypt/package-summary.html @@ -0,0 +1,159 @@ + + + + + + +org.springframework.cloud.context.encrypt (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.encrypt

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    EncryptorFactory 
    +
  • +
  • + + + + + + + + + + + + +
    Exception Summary 
    ExceptionDescription
    KeyFormatException 
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/encrypt/package-tree.html b/target/apidocs/org/springframework/cloud/context/encrypt/package-tree.html new file mode 100644 index 00000000..919d8bfd --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/encrypt/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.context.encrypt Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.encrypt

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/encrypt/package-use.html b/target/apidocs/org/springframework/cloud/context/encrypt/package-use.html new file mode 100644 index 00000000..b3e248e1 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/encrypt/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.context.encrypt (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.encrypt

+
+
No usage of org.springframework.cloud.context.encrypt
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/EnvironmentChangeEvent.html b/target/apidocs/org/springframework/cloud/context/environment/EnvironmentChangeEvent.html new file mode 100644 index 00000000..dbaf7570 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/EnvironmentChangeEvent.html @@ -0,0 +1,327 @@ + + + + + + +EnvironmentChangeEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.environment
+

Class EnvironmentChangeEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class EnvironmentChangeEvent
    +extends org.springframework.context.ApplicationEvent
    +
    Event published to signal a change in the Environment.
    +
    +
    Author:
    +
    Dave Syer
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnvironmentChangeEvent

        +
        public EnvironmentChangeEvent(Set<String> keys)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getKeys

        +
        public Set<String> getKeys()
        +
        +
        Returns:
        +
        the keys
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManager.html b/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManager.html new file mode 100644 index 00000000..22ce2a79 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManager.html @@ -0,0 +1,335 @@ + + + + + + +EnvironmentManager (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.environment
+

Class EnvironmentManager

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.environment.EnvironmentManager
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.context.ApplicationEventPublisherAware
    +
    +
    +
    +
    @Component
    + @ManagedResource
    +public class EnvironmentManager
    +extends Object
    +implements org.springframework.context.ApplicationEventPublisherAware
    +
    Entry point for making local (but volatile) changes to the Environment of a + running application. Allows properties to be added and values changed, simply by adding + them to a high priority property source in the existing Environment.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnvironmentManager

        +
        public EnvironmentManager(org.springframework.core.env.ConfigurableEnvironment environment)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationEventPublisher

        +
        public void setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher publisher)
        +
        +
        Specified by:
        +
        setApplicationEventPublisher in interface org.springframework.context.ApplicationEventPublisherAware
        +
        +
      • +
      + + + + + + + +
        +
      • +

        setProperty

        +
        @ManagedOperation
        +public void setProperty(String name,
        +                                          String value)
        +
      • +
      + + + +
        +
      • +

        getProperty

        +
        @ManagedOperation
        +public Object getProperty(String name)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.html b/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.html new file mode 100644 index 00000000..041d93fe --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/EnvironmentManagerMvcEndpoint.html @@ -0,0 +1,385 @@ + + + + + + +EnvironmentManagerMvcEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.environment
+

Class EnvironmentManagerMvcEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
    +
    +
    +
    +
    public class EnvironmentManagerMvcEndpoint
    +extends Object
    +implements org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
    +
    MVC endpoint for the EnvironmentManager providing a POST to /env as a simple + way to change the Environment.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnvironmentManagerMvcEndpoint

        +
        public EnvironmentManagerMvcEndpoint(org.springframework.boot.actuate.endpoint.EnvironmentEndpoint delegate,
        +                                     EnvironmentManager enviroment)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        value

        +
        @RequestMapping(value="",
        +                method=POST)
        + @ResponseBody
        +public Object value(@RequestParam
        +                                                                                          Map<String,String> params)
        +
      • +
      + + + +
        +
      • +

        reset

        +
        @RequestMapping(value="reset",
        +                method=POST)
        + @ResponseBody
        +public Map<String,Object> reset()
        +
      • +
      + + + +
        +
      • +

        setEnvironmentManager

        +
        public void setEnvironmentManager(EnvironmentManager environment)
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public String getPath()
        +
        +
        Specified by:
        +
        getPath in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      + + + +
        +
      • +

        isSensitive

        +
        public boolean isSensitive()
        +
        +
        Specified by:
        +
        isSensitive in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      + + + +
        +
      • +

        getEndpointType

        +
        public Class<? extends org.springframework.boot.actuate.endpoint.Endpoint> getEndpointType()
        +
        +
        Specified by:
        +
        getEndpointType in interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentChangeEvent.html b/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentChangeEvent.html new file mode 100644 index 00000000..b7c71bc2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentChangeEvent.html @@ -0,0 +1,188 @@ + + + + + + +Uses of Class org.springframework.cloud.context.environment.EnvironmentChangeEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.environment.EnvironmentChangeEvent

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManager.html b/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManager.html new file mode 100644 index 00000000..8cc865d3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManager.html @@ -0,0 +1,214 @@ + + + + + + +Uses of Class org.springframework.cloud.context.environment.EnvironmentManager (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.environment.EnvironmentManager

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManagerMvcEndpoint.html b/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManagerMvcEndpoint.html new file mode 100644 index 00000000..4c4252ab --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/class-use/EnvironmentManagerMvcEndpoint.html @@ -0,0 +1,167 @@ + + + + + + +Uses of Class org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/package-frame.html b/target/apidocs/org/springframework/cloud/context/environment/package-frame.html new file mode 100644 index 00000000..6f463a1d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +org.springframework.cloud.context.environment (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.environment

+ + + diff --git a/target/apidocs/org/springframework/cloud/context/environment/package-summary.html b/target/apidocs/org/springframework/cloud/context/environment/package-summary.html new file mode 100644 index 00000000..f6141be4 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/package-summary.html @@ -0,0 +1,160 @@ + + + + + + +org.springframework.cloud.context.environment (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.environment

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/package-tree.html b/target/apidocs/org/springframework/cloud/context/environment/package-tree.html new file mode 100644 index 00000000..ed393135 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/package-tree.html @@ -0,0 +1,149 @@ + + + + + + +org.springframework.cloud.context.environment Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.environment

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.environment.EnvironmentManager (implements org.springframework.context.ApplicationEventPublisherAware)
    • +
    • org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint (implements org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint)
    • +
    • java.util.EventObject (implements java.io.Serializable) +
        +
      • org.springframework.context.ApplicationEvent + +
      • +
      +
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/environment/package-use.html b/target/apidocs/org/springframework/cloud/context/environment/package-use.html new file mode 100644 index 00000000..b4a3591a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/environment/package-use.html @@ -0,0 +1,232 @@ + + + + + + +Uses of Package org.springframework.cloud.context.environment (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.environment

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.Specification.html b/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.Specification.html new file mode 100644 index 00000000..fd5bd6aa --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.Specification.html @@ -0,0 +1,240 @@ + + + + + + +NamedContextFactory.Specification (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.named
+

Interface NamedContextFactory.Specification

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        String getName()
        +
      • +
      + + + +
        +
      • +

        getConfiguration

        +
        Class<?>[] getConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.html b/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.html new file mode 100644 index 00000000..479207cf --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/named/NamedContextFactory.html @@ -0,0 +1,415 @@ + + + + + + +NamedContextFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.named
+

Class NamedContextFactory<C extends NamedContextFactory.Specification>

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.named.NamedContextFactory<C>
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.DisposableBean, org.springframework.context.ApplicationContextAware
    +
    +
    +
    +
    public abstract class NamedContextFactory<C extends NamedContextFactory.Specification>
    +extends Object
    +implements org.springframework.beans.factory.DisposableBean, org.springframework.context.ApplicationContextAware
    +
    Creates a set of child contexts that allows a set of Specifications to define the beans + in each child context. + + Ported from spring-cloud-netflix FeignClientFactory and SpringClientFactory
    +
    +
    Author:
    +
    Spencer Gibb, Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        NamedContextFactory

        +
        public NamedContextFactory(Class<?> defaultConfigType,
        +                           String propertySourceName,
        +                           String propertyName)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext parent)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        setConfigurations

        +
        public void setConfigurations(List<C> configurations)
        +
      • +
      + + + +
        +
      • +

        getContextNames

        +
        public Set<String> getContextNames()
        +
      • +
      + + + +
        +
      • +

        destroy

        +
        public void destroy()
        +
        +
        Specified by:
        +
        destroy in interface org.springframework.beans.factory.DisposableBean
        +
        +
      • +
      + + + +
        +
      • +

        getContext

        +
        protected org.springframework.context.annotation.AnnotationConfigApplicationContext getContext(String name)
        +
      • +
      + + + +
        +
      • +

        createContext

        +
        protected org.springframework.context.annotation.AnnotationConfigApplicationContext createContext(String name)
        +
      • +
      + + + +
        +
      • +

        getInstance

        +
        public <T> T getInstance(String name,
        +                         Class<T> type)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.Specification.html b/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.Specification.html new file mode 100644 index 00000000..1857c01d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.Specification.html @@ -0,0 +1,169 @@ + + + + + + +Uses of Interface org.springframework.cloud.context.named.NamedContextFactory.Specification (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.context.named.NamedContextFactory.Specification

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.html b/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.html new file mode 100644 index 00000000..bdd3cbb2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/named/class-use/NamedContextFactory.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.named.NamedContextFactory (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.named.NamedContextFactory

+
+
No usage of org.springframework.cloud.context.named.NamedContextFactory
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/named/package-frame.html b/target/apidocs/org/springframework/cloud/context/named/package-frame.html new file mode 100644 index 00000000..dde8f261 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/named/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +org.springframework.cloud.context.named (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.named

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/target/apidocs/org/springframework/cloud/context/named/package-summary.html b/target/apidocs/org/springframework/cloud/context/named/package-summary.html new file mode 100644 index 00000000..b13d4963 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/named/package-summary.html @@ -0,0 +1,162 @@ + + + + + + +org.springframework.cloud.context.named (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.named

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/named/package-tree.html b/target/apidocs/org/springframework/cloud/context/named/package-tree.html new file mode 100644 index 00000000..d71f3d69 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/named/package-tree.html @@ -0,0 +1,143 @@ + + + + + + +org.springframework.cloud.context.named Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.named

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.named.NamedContextFactory<C> (implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.DisposableBean)
    • +
    +
  • +
+

Interface Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/named/package-use.html b/target/apidocs/org/springframework/cloud/context/named/package-use.html new file mode 100644 index 00000000..ac71249b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/named/package-use.html @@ -0,0 +1,159 @@ + + + + + + +Uses of Package org.springframework.cloud.context.named (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.named

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.html b/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.html new file mode 100644 index 00000000..cbaf0a90 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesBeans.html @@ -0,0 +1,366 @@ + + + + + + +ConfigurationPropertiesBeans (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.properties
+

Class ConfigurationPropertiesBeans

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.properties.ConfigurationPropertiesBeans
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.config.BeanPostProcessor, org.springframework.context.ApplicationContextAware
    +
    +
    +
    +
    @Component
    +public class ConfigurationPropertiesBeans
    +extends Object
    +implements org.springframework.beans.factory.config.BeanPostProcessor, org.springframework.context.ApplicationContextAware
    +
    Collects references to @ConfigurationProperties beans in the context and + its parent.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ConfigurationPropertiesBeans

        +
        public ConfigurationPropertiesBeans()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        setBeanMetaDataStore

        +
        public void setBeanMetaDataStore(org.springframework.boot.context.properties.ConfigurationBeanFactoryMetaData beans)
        +
        +
        Parameters:
        +
        beans - the bean meta data to set
        +
        +
      • +
      + + + +
        +
      • +

        postProcessBeforeInitialization

        +
        public Object postProcessBeforeInitialization(Object bean,
        +                                              String beanName)
        +                                       throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeforeInitialization in interface org.springframework.beans.factory.config.BeanPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        postProcessAfterInitialization

        +
        public Object postProcessAfterInitialization(Object bean,
        +                                             String beanName)
        +                                      throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessAfterInitialization in interface org.springframework.beans.factory.config.BeanPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        getBeanNames

        +
        public Set<String> getBeanNames()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.html b/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.html new file mode 100644 index 00000000..d64ea5df --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/properties/ConfigurationPropertiesRebinder.html @@ -0,0 +1,378 @@ + + + + + + +ConfigurationPropertiesRebinder (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.properties
+

Class ConfigurationPropertiesRebinder

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<EnvironmentChangeEvent>
    +
    +
    +
    +
    @Component
    + @ManagedResource
    +public class ConfigurationPropertiesRebinder
    +extends Object
    +implements org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<EnvironmentChangeEvent>
    +
    Listens for EnvironmentChangeEvent and rebinds beans that were bound to the + Environment using @ConfigurationProperties. When these beans are re-bound and + re-initialized the changes are available immediately to any component that is using the + @ConfigurationProperties bean.
    +
    +
    Author:
    +
    Dave Syer
    +
    See Also:
    +
    for a deeper and optionally more focused refresh of bean components
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ConfigurationPropertiesRebinder

        +
        public ConfigurationPropertiesRebinder(org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor binder,
        +                                       ConfigurationPropertiesBeans beans)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        getErrors

        +
        public Map<String,Exception> getErrors()
        +
        A map of bean name to errors when instantiating the bean.
        +
        +
        Returns:
        +
        the errors accumulated since the latest destroy
        +
        +
      • +
      + + + +
        +
      • +

        rebind

        +
        @ManagedOperation
        +public void rebind()
        +
      • +
      + + + +
        +
      • +

        rebind

        +
        @ManagedOperation
        +public boolean rebind(String name)
        +
      • +
      + + + +
        +
      • +

        getBeanNames

        +
        @ManagedAttribute
        +public Set<String> getBeanNames()
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesBeans.html b/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesBeans.html new file mode 100644 index 00000000..469ede0c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesBeans.html @@ -0,0 +1,201 @@ + + + + + + +Uses of Class org.springframework.cloud.context.properties.ConfigurationPropertiesBeans (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.properties.ConfigurationPropertiesBeans

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesRebinder.html b/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesRebinder.html new file mode 100644 index 00000000..e620c4c7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/properties/class-use/ConfigurationPropertiesRebinder.html @@ -0,0 +1,188 @@ + + + + + + +Uses of Class org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/properties/package-frame.html b/target/apidocs/org/springframework/cloud/context/properties/package-frame.html new file mode 100644 index 00000000..11fe48ee --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/properties/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.context.properties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.properties

+ + + diff --git a/target/apidocs/org/springframework/cloud/context/properties/package-summary.html b/target/apidocs/org/springframework/cloud/context/properties/package-summary.html new file mode 100644 index 00000000..aa60dae9 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/properties/package-summary.html @@ -0,0 +1,154 @@ + + + + + + +org.springframework.cloud.context.properties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.properties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/properties/package-tree.html b/target/apidocs/org/springframework/cloud/context/properties/package-tree.html new file mode 100644 index 00000000..6daf5f5c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/properties/package-tree.html @@ -0,0 +1,140 @@ + + + + + + +org.springframework.cloud.context.properties Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.properties

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.properties.ConfigurationPropertiesBeans (implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.config.BeanPostProcessor)
    • +
    • org.springframework.cloud.context.properties.ConfigurationPropertiesRebinder (implements org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<E>)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/properties/package-use.html b/target/apidocs/org/springframework/cloud/context/properties/package-use.html new file mode 100644 index 00000000..6413442b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/properties/package-use.html @@ -0,0 +1,212 @@ + + + + + + +Uses of Package org.springframework.cloud.context.properties (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.properties

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.Empty.html b/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.Empty.html new file mode 100644 index 00000000..72981ca8 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.Empty.html @@ -0,0 +1,246 @@ + + + + + + +ContextRefresher.Empty (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.refresh
+

Class ContextRefresher.Empty

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.refresh.ContextRefresher.Empty
    • +
    +
  • +
+
+
    +
  • +
    +
    Enclosing class:
    +
    ContextRefresher
    +
    +
    +
    +
    @Configuration
    +protected static class ContextRefresher.Empty
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Empty

        +
        protected Empty()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.html b/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.html new file mode 100644 index 00000000..5630d374 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/refresh/ContextRefresher.html @@ -0,0 +1,298 @@ + + + + + + +ContextRefresher (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.refresh
+

Class ContextRefresher

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.refresh.ContextRefresher
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class ContextRefresher
    +extends Object
    +
    +
    Author:
    +
    Dave Syer, Venil Noronha
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ContextRefresher

        +
        public ContextRefresher(org.springframework.context.ConfigurableApplicationContext context,
        +                        RefreshScope scope)
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.Empty.html b/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.Empty.html new file mode 100644 index 00000000..682875ae --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.Empty.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.refresh.ContextRefresher.Empty (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.refresh.ContextRefresher.Empty

+
+
No usage of org.springframework.cloud.context.refresh.ContextRefresher.Empty
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.html b/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.html new file mode 100644 index 00000000..3876bf85 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/refresh/class-use/ContextRefresher.html @@ -0,0 +1,224 @@ + + + + + + +Uses of Class org.springframework.cloud.context.refresh.ContextRefresher (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.refresh.ContextRefresher

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/refresh/package-frame.html b/target/apidocs/org/springframework/cloud/context/refresh/package-frame.html new file mode 100644 index 00000000..825466c4 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/refresh/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.context.refresh (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.refresh

+ + + diff --git a/target/apidocs/org/springframework/cloud/context/refresh/package-summary.html b/target/apidocs/org/springframework/cloud/context/refresh/package-summary.html new file mode 100644 index 00000000..d9db7147 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/refresh/package-summary.html @@ -0,0 +1,148 @@ + + + + + + +org.springframework.cloud.context.refresh (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.refresh

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/refresh/package-tree.html b/target/apidocs/org/springframework/cloud/context/refresh/package-tree.html new file mode 100644 index 00000000..f477116b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/refresh/package-tree.html @@ -0,0 +1,140 @@ + + + + + + +org.springframework.cloud.context.refresh Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.refresh

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/refresh/package-use.html b/target/apidocs/org/springframework/cloud/context/refresh/package-use.html new file mode 100644 index 00000000..407b8b65 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/refresh/package-use.html @@ -0,0 +1,197 @@ + + + + + + +Uses of Package org.springframework.cloud.context.refresh (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.refresh

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.PauseEndpoint.html b/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.PauseEndpoint.html new file mode 100644 index 00000000..0e4cc4c7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.PauseEndpoint.html @@ -0,0 +1,294 @@ + + + + + + +RestartEndpoint.PauseEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartEndpoint.PauseEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    • +
    • +
        +
      • org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<Boolean>, org.springframework.context.EnvironmentAware
    +
    +
    +
    Enclosing class:
    +
    RestartEndpoint
    +
    +
    +
    +
    @ConfigurationProperties(value="endpoints")
    +public class RestartEndpoint.PauseEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PauseEndpoint

        +
        public PauseEndpoint()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.ResumeEndpoint.html b/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.ResumeEndpoint.html new file mode 100644 index 00000000..b122e28d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.ResumeEndpoint.html @@ -0,0 +1,294 @@ + + + + + + +RestartEndpoint.ResumeEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartEndpoint.ResumeEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    • +
    • +
        +
      • org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<Boolean>, org.springframework.context.EnvironmentAware
    +
    +
    +
    Enclosing class:
    +
    RestartEndpoint
    +
    +
    +
    +
    @ConfigurationProperties(value="endpoints")
    +public class RestartEndpoint.ResumeEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ResumeEndpoint

        +
        public ResumeEndpoint()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.html b/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.html new file mode 100644 index 00000000..6a90df87 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/RestartEndpoint.html @@ -0,0 +1,466 @@ + + + + + + +RestartEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    • +
    • +
        +
      • org.springframework.cloud.context.restart.RestartEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<Boolean>, org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationPreparedEvent>, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @ConfigurationProperties(value="endpoints.restart")
    + @ManagedResource
    +public class RestartEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<Boolean>
    +implements org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationPreparedEvent>
    +
    An endpoint that restarts the application context. Install as a bean and also register + a RestartListener with the SpringApplication that starts the context. + Those two components communicate via an ApplicationEvent and set up the state + needed to restart the context.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartEndpoint

        +
        public RestartEndpoint()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getTimeout

        +
        @ManagedAttribute
        +public long getTimeout()
        +
      • +
      + + + +
        +
      • +

        setTimeout

        +
        public void setTimeout(long timeout)
        +
      • +
      + + + +
        +
      • +

        setIntegrationMBeanExporter

        +
        public void setIntegrationMBeanExporter(Object exporter)
        +
      • +
      + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.boot.context.event.ApplicationPreparedEvent input)
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.boot.context.event.ApplicationPreparedEvent>
        +
        +
      • +
      + + + +
        +
      • +

        invoke

        +
        public Boolean invoke()
        +
        +
        Specified by:
        +
        invoke in interface org.springframework.boot.actuate.endpoint.Endpoint<Boolean>
        +
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        restart

        +
        @ManagedOperation
        +public org.springframework.context.ConfigurableApplicationContext restart()
        +
      • +
      + + + +
        +
      • +

        isRunning

        +
        @ManagedAttribute
        +public boolean isRunning()
        +
      • +
      + + + +
        +
      • +

        pause

        +
        @ManagedOperation
        +public void pause()
        +
      • +
      + + + +
        +
      • +

        resume

        +
        @ManagedOperation
        +public void resume()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/RestartListener.html b/target/apidocs/org/springframework/cloud/context/restart/RestartListener.html new file mode 100644 index 00000000..84324c0e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/RestartListener.html @@ -0,0 +1,354 @@ + + + + + + +RestartListener (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartListener

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.restart.RestartListener
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.context.ApplicationListener<org.springframework.context.ApplicationEvent>, org.springframework.context.event.SmartApplicationListener, org.springframework.core.Ordered
    +
    +
    +
    +
    public class RestartListener
    +extends Object
    +implements org.springframework.context.event.SmartApplicationListener
    +
    A listener that stores enough information about an application as it starts, to be able + to restart it later if needed.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartListener

        +
        public RestartListener()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        supportsEventType

        +
        public boolean supportsEventType(Class<? extends org.springframework.context.ApplicationEvent> eventType)
        +
        +
        Specified by:
        +
        supportsEventType in interface org.springframework.context.event.SmartApplicationListener
        +
        +
      • +
      + + + +
        +
      • +

        supportsSourceType

        +
        public boolean supportsSourceType(Class<?> sourceType)
        +
        +
        Specified by:
        +
        supportsSourceType in interface org.springframework.context.event.SmartApplicationListener
        +
        +
      • +
      + + + +
        +
      • +

        onApplicationEvent

        +
        public void onApplicationEvent(org.springframework.context.ApplicationEvent input)
        +
        +
        Specified by:
        +
        onApplicationEvent in interface org.springframework.context.ApplicationListener<org.springframework.context.ApplicationEvent>
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/RestartMvcEndpoint.html b/target/apidocs/org/springframework/cloud/context/restart/RestartMvcEndpoint.html new file mode 100644 index 00000000..293135d6 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/RestartMvcEndpoint.html @@ -0,0 +1,321 @@ + + + + + + +RestartMvcEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.restart
+

Class RestartMvcEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.mvc.AbstractEndpointMvcAdapter<org.springframework.boot.actuate.endpoint.Endpoint<?>>
    • +
    • +
        +
      • org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
      • +
      • +
          +
        • org.springframework.cloud.context.restart.RestartMvcEndpoint
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint, org.springframework.boot.actuate.endpoint.mvc.NamedMvcEndpoint
    +
    +
    +
    +
    public class RestartMvcEndpoint
    +extends org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
    +
    MVC endpoint to allow an application to be restarted on a POST (to /restart by + default).
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RestartMvcEndpoint

        +
        public RestartMvcEndpoint(RestartEndpoint delegate)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        invoke

        +
        @RequestMapping(method=POST)
        + @ResponseBody
        +public Object invoke()
        +
        +
        Overrides:
        +
        invoke in class org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.PauseEndpoint.html b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.PauseEndpoint.html new file mode 100644 index 00000000..c4a56700 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.PauseEndpoint.html @@ -0,0 +1,201 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartEndpoint.PauseEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.ResumeEndpoint.html b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.ResumeEndpoint.html new file mode 100644 index 00000000..61fe25e3 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.ResumeEndpoint.html @@ -0,0 +1,201 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartEndpoint.ResumeEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.html b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.html new file mode 100644 index 00000000..3ecd179c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartEndpoint.html @@ -0,0 +1,207 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartListener.html b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartListener.html new file mode 100644 index 00000000..a82009a5 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartListener.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartListener (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartListener

+
+
No usage of org.springframework.cloud.context.restart.RestartListener
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartMvcEndpoint.html b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartMvcEndpoint.html new file mode 100644 index 00000000..95cc4150 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/class-use/RestartMvcEndpoint.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.context.restart.RestartMvcEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.restart.RestartMvcEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/package-frame.html b/target/apidocs/org/springframework/cloud/context/restart/package-frame.html new file mode 100644 index 00000000..e84a2744 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/package-frame.html @@ -0,0 +1,23 @@ + + + + + + +org.springframework.cloud.context.restart (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.restart

+ + + diff --git a/target/apidocs/org/springframework/cloud/context/restart/package-summary.html b/target/apidocs/org/springframework/cloud/context/restart/package-summary.html new file mode 100644 index 00000000..b92c912c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/package-summary.html @@ -0,0 +1,160 @@ + + + + + + +org.springframework.cloud.context.restart (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.restart

+
+
+
    +
  • + + + + + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    RestartEndpoint +
    An endpoint that restarts the application context.
    +
    RestartListener +
    A listener that stores enough information about an application as it starts, to be able + to restart it later if needed.
    +
    RestartMvcEndpoint +
    MVC endpoint to allow an application to be restarted on a POST (to /restart by + default).
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/package-tree.html b/target/apidocs/org/springframework/cloud/context/restart/package-tree.html new file mode 100644 index 00000000..84c30ffe --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/package-tree.html @@ -0,0 +1,155 @@ + + + + + + +org.springframework.cloud.context.restart Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.restart

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<T> (implements org.springframework.boot.actuate.endpoint.Endpoint<T>, org.springframework.context.EnvironmentAware) + +
    • +
    • org.springframework.boot.actuate.endpoint.mvc.AbstractEndpointMvcAdapter<E> (implements org.springframework.boot.actuate.endpoint.mvc.NamedMvcEndpoint) +
        +
      • org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter + +
      • +
      +
    • +
    • org.springframework.cloud.context.restart.RestartListener (implements org.springframework.context.event.SmartApplicationListener)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/restart/package-use.html b/target/apidocs/org/springframework/cloud/context/restart/package-use.html new file mode 100644 index 00000000..dca5ddad --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/restart/package-use.html @@ -0,0 +1,200 @@ + + + + + + +Uses of Package org.springframework.cloud.context.restart (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.restart

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/GenericScope.html b/target/apidocs/org/springframework/cloud/context/scope/GenericScope.html new file mode 100644 index 00000000..24766e60 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/GenericScope.html @@ -0,0 +1,603 @@ + + + + + + +GenericScope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope
+

Class GenericScope

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.scope.GenericScope
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.DisposableBean
    +
    +
    +
    Direct Known Subclasses:
    +
    RefreshScope, ThreadScope
    +
    +
    +
    +
    public class GenericScope
    +extends Object
    +implements org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean
    +

    + A generic Scope implementation. +

    +
    +
    Since:
    +
    3.1
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GenericScope

        +
        public GenericScope()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setId

        +
        public void setId(String id)
        +
        Manual override for the serialization id that will be used to identify the bean + factory. The default is a unique key based on the bean names in the bean factory.
        +
        +
        Parameters:
        +
        id - the id to set
        +
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public void setName(String name)
        +
        The name of this scope. Default "generic".
        +
        +
        Parameters:
        +
        name - the name value to set
        +
        +
      • +
      + + + +
        +
      • +

        setProxyTargetClass

        +
        public void setProxyTargetClass(boolean proxyTargetClass)
        +
        Flag to indicate that proxies should be created for the concrete type, not just the + interfaces, of the scoped beans.
        +
        +
        Parameters:
        +
        proxyTargetClass - the flag value to set
        +
        +
      • +
      + + + +
        +
      • +

        setScopeCache

        +
        public void setScopeCache(ScopeCache cache)
        +
        The cache implementation to use for bean instances in this scope.
        +
        +
        Parameters:
        +
        cache - the cache to use
        +
        +
      • +
      + + + +
        +
      • +

        setBeanLifecycleManager

        +
        public void setBeanLifecycleManager(BeanLifecycleDecorator<?> lifecycle)
        +
        Helper to manage the creation and destruction of beans.
        +
        +
        Parameters:
        +
        lifecycle - the bean lifecycle to set
        +
        +
      • +
      + + + +
        +
      • +

        getErrors

        +
        public Map<String,Exception> getErrors()
        +
        A map of bean name to errors when instantiating the bean.
        +
        +
        Returns:
        +
        the errors accumulated since the latest destroy
        +
        +
      • +
      + + + +
        +
      • +

        destroy

        +
        public void destroy()
        +
        +
        Specified by:
        +
        destroy in interface org.springframework.beans.factory.DisposableBean
        +
        +
      • +
      + + + +
        +
      • +

        destroy

        +
        protected boolean destroy(String name)
        +
        Destroy the named bean (i.e. flush it from the cache by default).
        +
        +
        Parameters:
        +
        name - the bean name to flush
        +
        Returns:
        +
        true if the bean was already cached, false otherwise
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public Object get(String name,
        +                  org.springframework.beans.factory.ObjectFactory<?> objectFactory)
        +
        +
        Specified by:
        +
        get in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        getConversationId

        +
        public String getConversationId()
        +
        +
        Specified by:
        +
        getConversationId in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        registerDestructionCallback

        +
        public void registerDestructionCallback(String name,
        +                                        Runnable callback)
        +
        +
        Specified by:
        +
        registerDestructionCallback in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        remove

        +
        public Object remove(String name)
        +
        +
        Specified by:
        +
        remove in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        resolveContextualObject

        +
        public Object resolveContextualObject(String key)
        +
        +
        Specified by:
        +
        resolveContextualObject in interface org.springframework.beans.factory.config.Scope
        +
        +
      • +
      + + + +
        +
      • +

        postProcessBeanFactory

        +
        public void postProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory)
        +                            throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeanFactory in interface org.springframework.beans.factory.config.BeanFactoryPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        getName

        +
        protected String getName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/ScopeCache.html b/target/apidocs/org/springframework/cloud/context/scope/ScopeCache.html new file mode 100644 index 00000000..6fb291ab --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/ScopeCache.html @@ -0,0 +1,312 @@ + + + + + + +ScopeCache (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope
+

Interface ScopeCache

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    StandardScopeCache, ThreadLocalScopeCache
    +
    +
    +
    +
    public interface ScopeCache
    +
    A special purpose cache interface specifically for the GenericScope to use to manage cached bean instances. + Implementations generally fall into two categories: those that store values "globally" (i.e. one instance per key), + and those that store potentially multiple instances per key based on context (e.g. via a thread local). All + implementations should be thread safe.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        remove

        +
        Object remove(String name)
        +
        Remove the object with this name from the cache.
        +
        +
        Parameters:
        +
        name - the object name
        +
        Returns:
        +
        the object removed or null if there was none
        +
        +
      • +
      + + + +
        +
      • +

        clear

        +
        Collection<Object> clear()
        +
        Clear the cache and return all objects in an unmodifiable collection.
        +
        +
        Returns:
        +
        all objects stored in the cache
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        Object get(String name)
        +
        Get the named object from the cache.
        +
        +
        Parameters:
        +
        name - the name of the object
        +
        Returns:
        +
        the object with that name or null if there is none
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        Object put(String name,
        +           Object value)
        +
        Put a value in the cache if the key is not already used. If one is already present with the name provided, it is + not replaced, but is returned to the caller.
        +
        +
        Parameters:
        +
        name - the key
        +
        value - the new candidate value
        +
        Returns:
        +
        the value that is in the cache at the end of the operation
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/StandardScopeCache.html b/target/apidocs/org/springframework/cloud/context/scope/StandardScopeCache.html new file mode 100644 index 00000000..0f280931 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/StandardScopeCache.html @@ -0,0 +1,372 @@ + + + + + + +StandardScopeCache (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope
+

Class StandardScopeCache

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.scope.StandardScopeCache
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    ScopeCache
    +
    +
    +
    +
    public class StandardScopeCache
    +extends Object
    +implements ScopeCache
    +
    A simple cache implementation backed by a concurrent map.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        StandardScopeCache

        +
        public StandardScopeCache()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        remove

        +
        public Object remove(String name)
        +
        Description copied from interface: ScopeCache
        +
        Remove the object with this name from the cache.
        +
        +
        Specified by:
        +
        remove in interface ScopeCache
        +
        Parameters:
        +
        name - the object name
        +
        Returns:
        +
        the object removed or null if there was none
        +
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public Collection<Object> clear()
        +
        Description copied from interface: ScopeCache
        +
        Clear the cache and return all objects in an unmodifiable collection.
        +
        +
        Specified by:
        +
        clear in interface ScopeCache
        +
        Returns:
        +
        all objects stored in the cache
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public Object get(String name)
        +
        Description copied from interface: ScopeCache
        +
        Get the named object from the cache.
        +
        +
        Specified by:
        +
        get in interface ScopeCache
        +
        Parameters:
        +
        name - the name of the object
        +
        Returns:
        +
        the object with that name or null if there is none
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public Object put(String name,
        +                  Object value)
        +
        Description copied from interface: ScopeCache
        +
        Put a value in the cache if the key is not already used. If one is already present with the name provided, it is + not replaced, but is returned to the caller.
        +
        +
        Specified by:
        +
        put in interface ScopeCache
        +
        Parameters:
        +
        name - the key
        +
        value - the new candidate value
        +
        Returns:
        +
        the value that is in the cache at the end of the operation
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/class-use/GenericScope.html b/target/apidocs/org/springframework/cloud/context/scope/class-use/GenericScope.html new file mode 100644 index 00000000..3558424f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/class-use/GenericScope.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.GenericScope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.GenericScope

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/class-use/ScopeCache.html b/target/apidocs/org/springframework/cloud/context/scope/class-use/ScopeCache.html new file mode 100644 index 00000000..4122b8be --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/class-use/ScopeCache.html @@ -0,0 +1,205 @@ + + + + + + +Uses of Interface org.springframework.cloud.context.scope.ScopeCache (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Interface
org.springframework.cloud.context.scope.ScopeCache

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/class-use/StandardScopeCache.html b/target/apidocs/org/springframework/cloud/context/scope/class-use/StandardScopeCache.html new file mode 100644 index 00000000..40e2db99 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/class-use/StandardScopeCache.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.StandardScopeCache (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.StandardScopeCache

+
+
No usage of org.springframework.cloud.context.scope.StandardScopeCache
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/package-frame.html b/target/apidocs/org/springframework/cloud/context/scope/package-frame.html new file mode 100644 index 00000000..1074a34b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +org.springframework.cloud.context.scope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.scope

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/package-summary.html b/target/apidocs/org/springframework/cloud/context/scope/package-summary.html new file mode 100644 index 00000000..c79a4a46 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/package-summary.html @@ -0,0 +1,170 @@ + + + + + + +org.springframework.cloud.context.scope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.scope

+
+
+
    +
  • + + + + + + + + + + + + +
    Interface Summary 
    InterfaceDescription
    ScopeCache +
    A special purpose cache interface specifically for the GenericScope to use to manage cached bean instances.
    +
    +
  • +
  • + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    GenericScope +
    + A generic Scope implementation.
    +
    StandardScopeCache +
    A simple cache implementation backed by a concurrent map.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/package-tree.html b/target/apidocs/org/springframework/cloud/context/scope/package-tree.html new file mode 100644 index 00000000..63b6c33a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.context.scope Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.scope

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.scope.GenericScope (implements org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.config.Scope)
    • +
    • org.springframework.cloud.context.scope.StandardScopeCache (implements org.springframework.cloud.context.scope.ScopeCache)
    • +
    +
  • +
+

Interface Hierarchy

+
    +
  • org.springframework.cloud.context.scope.ScopeCache
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/package-use.html b/target/apidocs/org/springframework/cloud/context/scope/package-use.html new file mode 100644 index 00000000..1b019012 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/package-use.html @@ -0,0 +1,210 @@ + + + + + + +Uses of Package org.springframework.cloud.context.scope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.scope

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScope.html b/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScope.html new file mode 100644 index 00000000..84074c91 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScope.html @@ -0,0 +1,484 @@ + + + + + + +RefreshScope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope.refresh
+

Class RefreshScope

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor, org.springframework.context.ApplicationContextAware, org.springframework.core.Ordered
    +
    +
    +
    +
    @ManagedResource
    +public class RefreshScope
    +extends GenericScope
    +implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor, org.springframework.core.Ordered
    +

    + A Scope implementation that allows for beans to be refreshed dynamically at runtime + (see refresh(String) and refreshAll()). If a bean is refreshed then + the next time the bean is accessed (i.e. a method is executed) a new instance is + created. All lifecycle methods are applied to the bean instances, so any destruction + callbacks that were registered in the bean factory are called when it is refreshed, and + then the initialization callbacks are invoked as normal when the new instance is + created. A new bean instance is created from the original bean definition, so any + externalized content (property placeholders or expressions in string literals) is + re-evaluated when it is created. +

    + +

    + Note that all beans in this scope are only initialized when first accessed, so + the scope forces lazy initialization semantics. The implementation involves creating a + proxy for every bean in the scope, so there is a flag + proxyTargetClass which controls the proxy + creation, defaulting to JDK dynamic proxies and therefore only exposing the interfaces + implemented by a bean. If callers need access to other methods then the flag needs to + be set (and CGLib present on the classpath). Because this scope automatically proxies + all its beans, there is no need to add <aop:auto-proxy/> to any bean + definitions. +

    + +

    + The scoped proxy approach adopted here has a side benefit that bean instances are + automatically Serializable, and can be sent across the wire as long as the + receiver has an identical application context on the other side. To ensure that the two + contexts agree that they are identical they have to have the same serialization id. One + will be generated automatically by default from the bean names, so two contexts with + the same bean names are by default able to exchange beans by name. If you need to + override the default id then provide an explicit id when the + Scope is declared. +

    +
    +
    Since:
    +
    3.1
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshScope

        +
        public RefreshScope()
        +
        Create a scope instance and give it the default name: "refresh".
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOrder

        +
        public int getOrder()
        +
        +
        Specified by:
        +
        getOrder in interface org.springframework.core.Ordered
        +
        +
      • +
      + + + +
        +
      • +

        setOrder

        +
        public void setOrder(int order)
        +
      • +
      + + + +
        +
      • +

        setEager

        +
        public void setEager(boolean eager)
        +
        Flag to determine whether all beans in refresh scope should be instantiated eagerly + on startup. Default true.
        +
        +
        Parameters:
        +
        eager - the flag to set
        +
        +
      • +
      + + + +
        +
      • +

        postProcessBeanDefinitionRegistry

        +
        public void postProcessBeanDefinitionRegistry(org.springframework.beans.factory.support.BeanDefinitionRegistry registry)
        +                                       throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        postProcessBeanDefinitionRegistry in interface org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      + + + +
        +
      • +

        start

        +
        @EventListener
        +public void start(org.springframework.context.event.ContextRefreshedEvent event)
        +
      • +
      + + + +
        +
      • +

        refresh

        +
        @ManagedOperation(description="Dispose of the current instance of bean name provided and force a refresh on next method execution.")
        +public boolean refresh(String name)
        +
      • +
      + + + +
        +
      • +

        refreshAll

        +
        @ManagedOperation(description="Dispose of the current instance of all beans in this scope and force a refresh on next method execution.")
        +public void refreshAll()
        +
      • +
      + + + +
        +
      • +

        setApplicationContext

        +
        public void setApplicationContext(org.springframework.context.ApplicationContext context)
        +                           throws org.springframework.beans.BeansException
        +
        +
        Specified by:
        +
        setApplicationContext in interface org.springframework.context.ApplicationContextAware
        +
        Throws:
        +
        org.springframework.beans.BeansException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.html b/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.html new file mode 100644 index 00000000..025e9dd2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/refresh/RefreshScopeRefreshedEvent.html @@ -0,0 +1,366 @@ + + + + + + +RefreshScopeRefreshedEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope.refresh
+

Class RefreshScopeRefreshedEvent

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.util.EventObject
    • +
    • +
        +
      • org.springframework.context.ApplicationEvent
      • +
      • +
          +
        • org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class RefreshScopeRefreshedEvent
    +extends org.springframework.context.ApplicationEvent
    +
    +
    Author:
    +
    Spencer Gibb
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshScopeRefreshedEvent

        +
        public RefreshScopeRefreshedEvent()
        +
      • +
      + + + +
        +
      • +

        RefreshScopeRefreshedEvent

        +
        public RefreshScopeRefreshedEvent(String name)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public String getName()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScope.html b/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScope.html new file mode 100644 index 00000000..7431df10 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScope.html @@ -0,0 +1,209 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.refresh.RefreshScope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.refresh.RefreshScope

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScopeRefreshedEvent.html b/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScopeRefreshedEvent.html new file mode 100644 index 00000000..8624f608 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/refresh/class-use/RefreshScopeRefreshedEvent.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent

+
+
No usage of org.springframework.cloud.context.scope.refresh.RefreshScopeRefreshedEvent
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/refresh/package-frame.html b/target/apidocs/org/springframework/cloud/context/scope/refresh/package-frame.html new file mode 100644 index 00000000..1394178c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/refresh/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.context.scope.refresh (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.scope.refresh

+ + + diff --git a/target/apidocs/org/springframework/cloud/context/scope/refresh/package-summary.html b/target/apidocs/org/springframework/cloud/context/scope/refresh/package-summary.html new file mode 100644 index 00000000..2149700c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/refresh/package-summary.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.context.scope.refresh (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.scope.refresh

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/refresh/package-tree.html b/target/apidocs/org/springframework/cloud/context/scope/refresh/package-tree.html new file mode 100644 index 00000000..48141204 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/refresh/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.context.scope.refresh Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.scope.refresh

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • java.util.EventObject (implements java.io.Serializable) +
        +
      • org.springframework.context.ApplicationEvent + +
      • +
      +
    • +
    • org.springframework.cloud.context.scope.GenericScope (implements org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.config.Scope) +
        +
      • org.springframework.cloud.context.scope.refresh.RefreshScope (implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor, org.springframework.core.Ordered)
      • +
      +
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/refresh/package-use.html b/target/apidocs/org/springframework/cloud/context/scope/refresh/package-use.html new file mode 100644 index 00000000..5bc46b81 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/refresh/package-use.html @@ -0,0 +1,209 @@ + + + + + + +Uses of Package org.springframework.cloud.context.scope.refresh (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.scope.refresh

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.html b/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.html new file mode 100644 index 00000000..83196ac4 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadLocalScopeCache.html @@ -0,0 +1,371 @@ + + + + + + +ThreadLocalScopeCache (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope.thread
+

Class ThreadLocalScopeCache

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    ScopeCache
    +
    +
    +
    +
    public class ThreadLocalScopeCache
    +extends Object
    +implements ScopeCache
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ThreadLocalScopeCache

        +
        public ThreadLocalScopeCache()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        remove

        +
        public Object remove(String name)
        +
        Description copied from interface: ScopeCache
        +
        Remove the object with this name from the cache.
        +
        +
        Specified by:
        +
        remove in interface ScopeCache
        +
        Parameters:
        +
        name - the object name
        +
        Returns:
        +
        the object removed or null if there was none
        +
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public Collection<Object> clear()
        +
        Description copied from interface: ScopeCache
        +
        Clear the cache and return all objects in an unmodifiable collection.
        +
        +
        Specified by:
        +
        clear in interface ScopeCache
        +
        Returns:
        +
        all objects stored in the cache
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public Object get(String name)
        +
        Description copied from interface: ScopeCache
        +
        Get the named object from the cache.
        +
        +
        Specified by:
        +
        get in interface ScopeCache
        +
        Parameters:
        +
        name - the name of the object
        +
        Returns:
        +
        the object with that name or null if there is none
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public Object put(String name,
        +                  Object value)
        +
        Description copied from interface: ScopeCache
        +
        Put a value in the cache if the key is not already used. If one is already present with the name provided, it is + not replaced, but is returned to the caller.
        +
        +
        Specified by:
        +
        put in interface ScopeCache
        +
        Parameters:
        +
        name - the key
        +
        value - the new candidate value
        +
        Returns:
        +
        the value that is in the cache at the end of the operation
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadScope.html b/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadScope.html new file mode 100644 index 00000000..88a3097e --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/thread/ThreadScope.html @@ -0,0 +1,279 @@ + + + + + + +ThreadScope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.context.scope.thread
+

Class ThreadScope

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.DisposableBean
    +
    +
    +
    +
    public class ThreadScope
    +extends GenericScope
    +
    +
    Since:
    +
    3.1
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ThreadScope

        +
        public ThreadScope()
        +
        Create a scope instance and give it the default name: "thread".
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadLocalScopeCache.html b/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadLocalScopeCache.html new file mode 100644 index 00000000..060e6b16 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadLocalScopeCache.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache

+
+
No usage of org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadScope.html b/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadScope.html new file mode 100644 index 00000000..8c6745d7 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/thread/class-use/ThreadScope.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.context.scope.thread.ThreadScope (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.context.scope.thread.ThreadScope

+
+
No usage of org.springframework.cloud.context.scope.thread.ThreadScope
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/thread/package-frame.html b/target/apidocs/org/springframework/cloud/context/scope/thread/package-frame.html new file mode 100644 index 00000000..dcb81e54 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/thread/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.context.scope.thread (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.context.scope.thread

+ + + diff --git a/target/apidocs/org/springframework/cloud/context/scope/thread/package-summary.html b/target/apidocs/org/springframework/cloud/context/scope/thread/package-summary.html new file mode 100644 index 00000000..ef4844c2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/thread/package-summary.html @@ -0,0 +1,148 @@ + + + + + + +org.springframework.cloud.context.scope.thread (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.context.scope.thread

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/thread/package-tree.html b/target/apidocs/org/springframework/cloud/context/scope/thread/package-tree.html new file mode 100644 index 00000000..75bba984 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/thread/package-tree.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.context.scope.thread Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.context.scope.thread

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.context.scope.GenericScope (implements org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.config.Scope) +
        +
      • org.springframework.cloud.context.scope.thread.ThreadScope
      • +
      +
    • +
    • org.springframework.cloud.context.scope.thread.ThreadLocalScopeCache (implements org.springframework.cloud.context.scope.ScopeCache)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/context/scope/thread/package-use.html b/target/apidocs/org/springframework/cloud/context/scope/thread/package-use.html new file mode 100644 index 00000000..5e17e52f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/context/scope/thread/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.context.scope.thread (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.context.scope.thread

+
+
No usage of org.springframework.cloud.context.scope.thread
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.html b/target/apidocs/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.html new file mode 100644 index 00000000..1031ea2a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/GenericPostableMvcEndpoint.html @@ -0,0 +1,321 @@ + + + + + + +GenericPostableMvcEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.endpoint
+

Class GenericPostableMvcEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.mvc.AbstractEndpointMvcAdapter<org.springframework.boot.actuate.endpoint.Endpoint<?>>
    • +
    • +
        +
      • org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
      • +
      • +
          +
        • org.springframework.cloud.endpoint.GenericPostableMvcEndpoint
        • +
        +
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint, org.springframework.boot.actuate.endpoint.mvc.NamedMvcEndpoint
    +
    +
    +
    +
    public class GenericPostableMvcEndpoint
    +extends org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
    +
    A convenient base class for MVC endpoints that accept a POST (instead of the default + GET).
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from interface org.springframework.boot.actuate.endpoint.mvc.MvcEndpoint

        +DISABLED_RESPONSE
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      GenericPostableMvcEndpoint(org.springframework.boot.actuate.endpoint.Endpoint<?> delegate) 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GenericPostableMvcEndpoint

        +
        public GenericPostableMvcEndpoint(org.springframework.boot.actuate.endpoint.Endpoint<?> delegate)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        invoke

        +
        @RequestMapping(method=POST)
        + @ResponseBody
        +public Object invoke()
        +
        +
        Overrides:
        +
        invoke in class org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/RefreshEndpoint.html b/target/apidocs/org/springframework/cloud/endpoint/RefreshEndpoint.html new file mode 100644 index 00000000..fca5432f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/RefreshEndpoint.html @@ -0,0 +1,310 @@ + + + + + + +RefreshEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.endpoint
+

Class RefreshEndpoint

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<Collection<String>>
    • +
    • +
        +
      • org.springframework.cloud.endpoint.RefreshEndpoint
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.boot.actuate.endpoint.Endpoint<Collection<String>>, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    @ConfigurationProperties(prefix="endpoints.refresh",
    +                         ignoreUnknownFields=false)
    + @ManagedResource
    +public class RefreshEndpoint
    +extends org.springframework.boot.actuate.endpoint.AbstractEndpoint<Collection<String>>
    +
    +
    Author:
    +
    Dave Syer, Venil Noronha
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshEndpoint

        +
        public RefreshEndpoint(ContextRefresher contextRefresher)
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/class-use/GenericPostableMvcEndpoint.html b/target/apidocs/org/springframework/cloud/endpoint/class-use/GenericPostableMvcEndpoint.html new file mode 100644 index 00000000..7e01c89d --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/class-use/GenericPostableMvcEndpoint.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.endpoint.GenericPostableMvcEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.endpoint.GenericPostableMvcEndpoint

+
+
No usage of org.springframework.cloud.endpoint.GenericPostableMvcEndpoint
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/class-use/RefreshEndpoint.html b/target/apidocs/org/springframework/cloud/endpoint/class-use/RefreshEndpoint.html new file mode 100644 index 00000000..fd198659 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/class-use/RefreshEndpoint.html @@ -0,0 +1,179 @@ + + + + + + +Uses of Class org.springframework.cloud.endpoint.RefreshEndpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.endpoint.RefreshEndpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEvent.html b/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEvent.html new file mode 100644 index 00000000..49897a98 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEvent.html @@ -0,0 +1,340 @@ + + + + + + +RefreshEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.endpoint.event
+

Class RefreshEvent

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshEvent

        +
        public RefreshEvent(Object source,
        +                    Object event,
        +                    String eventDesc)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getEvent

        +
        public Object getEvent()
        +
      • +
      + + + +
        +
      • +

        getEventDesc

        +
        public String getEventDesc()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEventListener.html b/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEventListener.html new file mode 100644 index 00000000..84beef5f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/event/RefreshEventListener.html @@ -0,0 +1,294 @@ + + + + + + +RefreshEventListener (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.endpoint.event
+

Class RefreshEventListener

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.endpoint.event.RefreshEventListener
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class RefreshEventListener
    +extends Object
    +
    Calls refresh when a RefreshEvent is received. + Only responds to RefreshEvent after receiving an ApplicationReadyEvent as the RefreshEvent's might come to early in the application lifecycle.
    +
    +
    Author:
    +
    Spencer Gibb
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefreshEventListener

        +
        public RefreshEventListener(ContextRefresher refresh)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        handle

        +
        @EventListener
        +public void handle(org.springframework.boot.context.event.ApplicationReadyEvent event)
        +
      • +
      + + + +
        +
      • +

        handle

        +
        @EventListener
        +public void handle(RefreshEvent event)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEvent.html b/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEvent.html new file mode 100644 index 00000000..f703102a --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEvent.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.endpoint.event.RefreshEvent (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.endpoint.event.RefreshEvent

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEventListener.html b/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEventListener.html new file mode 100644 index 00000000..0a4b8833 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/event/class-use/RefreshEventListener.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.endpoint.event.RefreshEventListener (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.endpoint.event.RefreshEventListener

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/event/package-frame.html b/target/apidocs/org/springframework/cloud/endpoint/event/package-frame.html new file mode 100644 index 00000000..0fe484d2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/event/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.endpoint.event (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.endpoint.event

+ + + diff --git a/target/apidocs/org/springframework/cloud/endpoint/event/package-summary.html b/target/apidocs/org/springframework/cloud/endpoint/event/package-summary.html new file mode 100644 index 00000000..6f663300 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/event/package-summary.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.endpoint.event (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.endpoint.event

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/event/package-tree.html b/target/apidocs/org/springframework/cloud/endpoint/event/package-tree.html new file mode 100644 index 00000000..a44c175f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/event/package-tree.html @@ -0,0 +1,148 @@ + + + + + + +org.springframework.cloud.endpoint.event Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.endpoint.event

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/event/package-use.html b/target/apidocs/org/springframework/cloud/endpoint/event/package-use.html new file mode 100644 index 00000000..72b9ae4c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/event/package-use.html @@ -0,0 +1,182 @@ + + + + + + +Uses of Package org.springframework.cloud.endpoint.event (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.endpoint.event

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/package-frame.html b/target/apidocs/org/springframework/cloud/endpoint/package-frame.html new file mode 100644 index 00000000..28c41d31 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.springframework.cloud.endpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.endpoint

+ + + diff --git a/target/apidocs/org/springframework/cloud/endpoint/package-summary.html b/target/apidocs/org/springframework/cloud/endpoint/package-summary.html new file mode 100644 index 00000000..33cd6655 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/package-summary.html @@ -0,0 +1,151 @@ + + + + + + +org.springframework.cloud.endpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.endpoint

+
+
+
    +
  • + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    GenericPostableMvcEndpoint +
    A convenient base class for MVC endpoints that accept a POST (instead of the default + GET).
    +
    RefreshEndpoint 
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/package-tree.html b/target/apidocs/org/springframework/cloud/endpoint/package-tree.html new file mode 100644 index 00000000..a86ebefc --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/package-tree.html @@ -0,0 +1,152 @@ + + + + + + +org.springframework.cloud.endpoint Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.endpoint

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.endpoint.AbstractEndpoint<T> (implements org.springframework.boot.actuate.endpoint.Endpoint<T>, org.springframework.context.EnvironmentAware) + +
    • +
    • org.springframework.boot.actuate.endpoint.mvc.AbstractEndpointMvcAdapter<E> (implements org.springframework.boot.actuate.endpoint.mvc.NamedMvcEndpoint) +
        +
      • org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter + +
      • +
      +
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/endpoint/package-use.html b/target/apidocs/org/springframework/cloud/endpoint/package-use.html new file mode 100644 index 00000000..0ddac7c2 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/endpoint/package-use.html @@ -0,0 +1,159 @@ + + + + + + +Uses of Package org.springframework.cloud.endpoint (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.endpoint

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/health/RefreshScopeHealthIndicator.html b/target/apidocs/org/springframework/cloud/health/RefreshScopeHealthIndicator.html new file mode 100644 index 00000000..bc7a9582 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/health/RefreshScopeHealthIndicator.html @@ -0,0 +1,305 @@ + + + + + + +RefreshScopeHealthIndicator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.health
+

Class RefreshScopeHealthIndicator

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.boot.actuate.health.AbstractHealthIndicator
    • +
    • +
        +
      • org.springframework.cloud.health.RefreshScopeHealthIndicator
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.actuate.health.HealthIndicator
    +
    +
    +
    +
    public class RefreshScopeHealthIndicator
    +extends org.springframework.boot.actuate.health.AbstractHealthIndicator
    +
    Health indicator for the refresh scope and configuration properties rebinding. If an + environment change causes a bean to fail in instantiate or bind this indicator will + generally say what the problem was and switch to DOWN.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        doHealthCheck

        +
        protected void doHealthCheck(org.springframework.boot.actuate.health.Health.Builder builder)
        +                      throws Exception
        +
        +
        Specified by:
        +
        doHealthCheck in class org.springframework.boot.actuate.health.AbstractHealthIndicator
        +
        Throws:
        +
        Exception
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/health/class-use/RefreshScopeHealthIndicator.html b/target/apidocs/org/springframework/cloud/health/class-use/RefreshScopeHealthIndicator.html new file mode 100644 index 00000000..8bb5cddf --- /dev/null +++ b/target/apidocs/org/springframework/cloud/health/class-use/RefreshScopeHealthIndicator.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.health.RefreshScopeHealthIndicator (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.health.RefreshScopeHealthIndicator

+
+
No usage of org.springframework.cloud.health.RefreshScopeHealthIndicator
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/health/package-frame.html b/target/apidocs/org/springframework/cloud/health/package-frame.html new file mode 100644 index 00000000..6bb6794f --- /dev/null +++ b/target/apidocs/org/springframework/cloud/health/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.health (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.health

+ + + diff --git a/target/apidocs/org/springframework/cloud/health/package-summary.html b/target/apidocs/org/springframework/cloud/health/package-summary.html new file mode 100644 index 00000000..3cc8077b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/health/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +org.springframework.cloud.health (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.health

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    RefreshScopeHealthIndicator +
    Health indicator for the refresh scope and configuration properties rebinding.
    +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/health/package-tree.html b/target/apidocs/org/springframework/cloud/health/package-tree.html new file mode 100644 index 00000000..99d19b26 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/health/package-tree.html @@ -0,0 +1,143 @@ + + + + + + +org.springframework.cloud.health Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.health

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.boot.actuate.health.AbstractHealthIndicator (implements org.springframework.boot.actuate.health.HealthIndicator) + +
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/health/package-use.html b/target/apidocs/org/springframework/cloud/health/package-use.html new file mode 100644 index 00000000..aa290e63 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/health/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.health (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.health

+
+
No usage of org.springframework.cloud.health
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/logging/LoggingRebinder.html b/target/apidocs/org/springframework/cloud/logging/LoggingRebinder.html new file mode 100644 index 00000000..2c33bcc0 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/logging/LoggingRebinder.html @@ -0,0 +1,320 @@ + + + + + + +LoggingRebinder (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.logging
+

Class LoggingRebinder

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    EventListener, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationListener<EnvironmentChangeEvent>, org.springframework.context.EnvironmentAware
    +
    +
    +
    +
    public class LoggingRebinder
    +extends Object
    +implements org.springframework.context.ApplicationListener<EnvironmentChangeEvent>, org.springframework.context.EnvironmentAware
    +
    Listener that looks for EnvironmentChangeEvent and rebinds logger levels if any + changed.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LoggingRebinder

        +
        public LoggingRebinder()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setEnvironment

        +
        public void setEnvironment(org.springframework.core.env.Environment environment)
        +
        +
        Specified by:
        +
        setEnvironment in interface org.springframework.context.EnvironmentAware
        +
        +
      • +
      + + + + + + + +
        +
      • +

        setLogLevels

        +
        protected void setLogLevels(org.springframework.boot.logging.LoggingSystem system,
        +                            org.springframework.core.env.Environment environment)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/logging/class-use/LoggingRebinder.html b/target/apidocs/org/springframework/cloud/logging/class-use/LoggingRebinder.html new file mode 100644 index 00000000..a739e022 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/logging/class-use/LoggingRebinder.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class org.springframework.cloud.logging.LoggingRebinder (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.logging.LoggingRebinder

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/logging/package-frame.html b/target/apidocs/org/springframework/cloud/logging/package-frame.html new file mode 100644 index 00000000..271c8278 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/logging/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.logging (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.logging

+
+

Classes

+ +
+ + diff --git a/target/apidocs/org/springframework/cloud/logging/package-summary.html b/target/apidocs/org/springframework/cloud/logging/package-summary.html new file mode 100644 index 00000000..8335d09b --- /dev/null +++ b/target/apidocs/org/springframework/cloud/logging/package-summary.html @@ -0,0 +1,147 @@ + + + + + + +org.springframework.cloud.logging (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.logging

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/logging/package-tree.html b/target/apidocs/org/springframework/cloud/logging/package-tree.html new file mode 100644 index 00000000..5f3c36d8 --- /dev/null +++ b/target/apidocs/org/springframework/cloud/logging/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +org.springframework.cloud.logging Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.logging

+Package Hierarchies: + +
+
+

Class Hierarchy

+
    +
  • java.lang.Object +
      +
    • org.springframework.cloud.logging.LoggingRebinder (implements org.springframework.context.ApplicationListener<E>, org.springframework.context.EnvironmentAware)
    • +
    +
  • +
+
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/org/springframework/cloud/logging/package-use.html b/target/apidocs/org/springframework/cloud/logging/package-use.html new file mode 100644 index 00000000..30eeca1c --- /dev/null +++ b/target/apidocs/org/springframework/cloud/logging/package-use.html @@ -0,0 +1,162 @@ + + + + + + +Uses of Package org.springframework.cloud.logging (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.logging

+
+
+ +
+ + + + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/overview-frame.html b/target/apidocs/overview-frame.html new file mode 100644 index 00000000..62e889b4 --- /dev/null +++ b/target/apidocs/overview-frame.html @@ -0,0 +1,53 @@ + + + + + + +Overview List (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + +

 

+ + diff --git a/target/apidocs/overview-summary.html b/target/apidocs/overview-summary.html new file mode 100644 index 00000000..dc1efae6 --- /dev/null +++ b/target/apidocs/overview-summary.html @@ -0,0 +1,264 @@ + + + + + + +Overview (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Packages 
PackageDescription
org.springframework.cloud.autoconfigure 
org.springframework.cloud.bootstrap 
org.springframework.cloud.bootstrap.config 
org.springframework.cloud.bootstrap.encrypt 
org.springframework.cloud.client 
org.springframework.cloud.client.actuator 
org.springframework.cloud.client.circuitbreaker 
org.springframework.cloud.client.discovery 
org.springframework.cloud.client.discovery.event 
org.springframework.cloud.client.discovery.health 
org.springframework.cloud.client.discovery.noop 
org.springframework.cloud.client.discovery.simple 
org.springframework.cloud.client.hypermedia 
org.springframework.cloud.client.loadbalancer 
org.springframework.cloud.client.serviceregistry 
org.springframework.cloud.client.serviceregistry.endpoint 
org.springframework.cloud.commons.util 
org.springframework.cloud.context.config 
org.springframework.cloud.context.config.annotation 
org.springframework.cloud.context.encrypt 
org.springframework.cloud.context.environment 
org.springframework.cloud.context.named 
org.springframework.cloud.context.properties 
org.springframework.cloud.context.refresh 
org.springframework.cloud.context.restart 
org.springframework.cloud.context.scope 
org.springframework.cloud.context.scope.refresh 
org.springframework.cloud.context.scope.thread 
org.springframework.cloud.endpoint 
org.springframework.cloud.endpoint.event 
org.springframework.cloud.health 
org.springframework.cloud.logging 
+
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/overview-tree.html b/target/apidocs/overview-tree.html new file mode 100644 index 00000000..e0364700 --- /dev/null +++ b/target/apidocs/overview-tree.html @@ -0,0 +1,422 @@ + + + + + + +Class Hierarchy (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/package-list b/target/apidocs/package-list new file mode 100644 index 00000000..ab95032e --- /dev/null +++ b/target/apidocs/package-list @@ -0,0 +1,32 @@ +org.springframework.cloud.autoconfigure +org.springframework.cloud.bootstrap +org.springframework.cloud.bootstrap.config +org.springframework.cloud.bootstrap.encrypt +org.springframework.cloud.client +org.springframework.cloud.client.actuator +org.springframework.cloud.client.circuitbreaker +org.springframework.cloud.client.discovery +org.springframework.cloud.client.discovery.event +org.springframework.cloud.client.discovery.health +org.springframework.cloud.client.discovery.noop +org.springframework.cloud.client.discovery.simple +org.springframework.cloud.client.hypermedia +org.springframework.cloud.client.loadbalancer +org.springframework.cloud.client.serviceregistry +org.springframework.cloud.client.serviceregistry.endpoint +org.springframework.cloud.commons.util +org.springframework.cloud.context.config +org.springframework.cloud.context.config.annotation +org.springframework.cloud.context.encrypt +org.springframework.cloud.context.environment +org.springframework.cloud.context.named +org.springframework.cloud.context.properties +org.springframework.cloud.context.refresh +org.springframework.cloud.context.restart +org.springframework.cloud.context.scope +org.springframework.cloud.context.scope.refresh +org.springframework.cloud.context.scope.thread +org.springframework.cloud.endpoint +org.springframework.cloud.endpoint.event +org.springframework.cloud.health +org.springframework.cloud.logging diff --git a/target/apidocs/script.js b/target/apidocs/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/target/apidocs/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/target/apidocs/serialized-form.html b/target/apidocs/serialized-form.html new file mode 100644 index 00000000..0ce0bbc2 --- /dev/null +++ b/target/apidocs/serialized-form.html @@ -0,0 +1,312 @@ + + + + + + +Serialized Form (Spring Cloud Commons Parent 1.2.0.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Serialized Form

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2017 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/target/apidocs/stylesheet.css b/target/apidocs/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/target/apidocs/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/target/ghpages.sh b/target/ghpages.sh new file mode 100755 index 00000000..3c41f8c2 --- /dev/null +++ b/target/ghpages.sh @@ -0,0 +1,360 @@ +#!/bin/bash -x + +# Usage: (cd ; ghpages.sh -v -b -c) + +set -e + +# Set default props like MAVEN_PATH, ROOT_FOLDER etc. +function set_default_props() { + # The script should be executed from the root folder + ROOT_FOLDER=`pwd` + echo "Current folder is ${ROOT_FOLDER}" + + if [[ ! -e "${ROOT_FOLDER}/.git" ]]; then + echo "You're not in the root folder of the project!" + exit 1 + fi + + # Prop that will let commit the changes + COMMIT_CHANGES="no" + MAVEN_PATH=${MAVEN_PATH:-} + if [ -e "${ROOT_FOLDER}/mvnw" ]; then + MAVEN_EXEC="$ROOT_FOLDER/mvnw" + else + MAVEN_EXEC="${MAVEN_PATH}mvn" + fi + echo "Path to Maven is [${MAVEN_EXEC}]" + if [ -z $REPO_NAME ]; then + REPO_NAME=$(git remote -v | grep origin | head -1 | sed -e 's!.*/!!' -e 's/ .*//' -e 's/\.git.*//') + fi + echo "Repo name is [${REPO_NAME}]" + SPRING_CLOUD_STATIC_REPO=${SPRING_CLOUD_STATIC_REPO:-git@github.com:spring-cloud/spring-cloud-static.git} + echo "Spring Cloud Static repo is [${SPRING_CLOUD_STATIC_REPO}" +} + +# Check if gh-pages exists and docs have been built +function check_if_anything_to_sync() { + git remote set-url --push origin `git config remote.origin.url | sed -e 's/^git:/https:/'` + + if ! (git remote set-branches --add origin gh-pages && git fetch -q) && [[ "${RELEASE_TRAIN}" != "yes" ]] ; then + echo "No gh-pages, so not syncing" + exit 0 + fi + + if ! [ -d docs/target/generated-docs ] && ! [ "${BUILD}" == "yes" ]; then + echo "No gh-pages sources in docs/target/generated-docs, so not syncing" + exit 0 + fi +} + +function retrieve_current_branch() { + # Code getting the name of the current branch. For master we want to publish as we did until now + # http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch + # If there is a branch already passed will reuse it - otherwise will try to find it + CURRENT_BRANCH=${BRANCH} + if [[ -z "${CURRENT_BRANCH}" ]] ; then + CURRENT_BRANCH=$(git symbolic-ref -q HEAD) + CURRENT_BRANCH=${CURRENT_BRANCH##refs/heads/} + CURRENT_BRANCH=${CURRENT_BRANCH:-HEAD} + fi + echo "Current branch is [${CURRENT_BRANCH}]" + git checkout ${CURRENT_BRANCH} || echo "Failed to check the branch... continuing with the script" + PREVIOUS_BRANCH=${CURRENT_BRANCH} +} + +# Switches to the provided value of the release version. We always prefix it with `v` +function switch_to_tag() { + if [[ "${RELEASE_TRAIN}" != "yes" ]] ; then + git checkout v${VERSION} + fi +} + +# Build the docs if switch is on +function build_docs_if_applicable() { + if [[ "${BUILD}" == "yes" ]] ; then + ./mvnw clean install -P docs -pl docs -DskipTests + fi +} + +# Get the name of the `docs.main` property +# Get whitelisted branches - assumes that a `docs` module is available under `docs` profile +function retrieve_doc_properties() { + MAIN_ADOC_VALUE=$("${MAVEN_EXEC}" -q \ + -Dexec.executable="echo" \ + -Dexec.args='${docs.main}' \ + org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \ + -P docs \ + -pl docs | tail -1 ) + echo "Extracted 'main.adoc' from Maven build [${MAIN_ADOC_VALUE}]" + + + WHITELIST_PROPERTY=${WHITELIST_PROPERTY:-"docs.whitelisted.branches"} + WHITELISTED_BRANCHES_VALUE=$("${MAVEN_EXEC}" -q \ + -Dexec.executable="echo" \ + -Dexec.args="\${${WHITELIST_PROPERTY}}" \ + org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \ + -P docs \ + -pl docs | tail -1 ) + echo "Extracted '${WHITELIST_PROPERTY}' from Maven build [${WHITELISTED_BRANCHES_VALUE}]" +} + +# Stash any outstanding changes +function stash_changes() { + git diff-index --quiet HEAD && dirty=$? || (echo "Failed to check if the current repo is dirty. Assuming that it is." && dirty="1") + if [ "$dirty" != "0" ]; then git stash; fi +} + +# Switch to gh-pages branch to sync it with current branch +function add_docs_from_target() { + local DESTINATION_REPO_FOLDER + if [[ -z "${DESTINATION}" && -z "${CLONE}" ]] ; then + DESTINATION_REPO_FOLDER=${ROOT_FOLDER} + elif [[ "${CLONE}" == "yes" ]]; then + mkdir -p ${ROOT_FOLDER}/target + local clonedStatic=${ROOT_FOLDER}/target/spring-cloud-static + if [[ ! -e "${clonedStatic}/.git" ]]; then + echo "Cloning Spring Cloud Static to target" + git clone ${SPRING_CLOUD_STATIC_REPO} ${clonedStatic} && cd ${clonedStatic} && git checkout gh-pages + else + echo "Spring Cloud Static already cloned - will pull changes" + cd ${clonedStatic} && git checkout gh-pages && git pull origin gh-pages + fi + if [[ -z "${RELEASE_TRAIN}" ]] ; then + DESTINATION_REPO_FOLDER=${clonedStatic}/${REPO_NAME} + else + DESTINATION_REPO_FOLDER=${clonedStatic} + fi + mkdir -p ${DESTINATION_REPO_FOLDER} + else + if [[ ! -e "${DESTINATION}/.git" ]]; then + echo "[${DESTINATION}] is not a git repository" + exit 1 + fi + if [[ -z "${RELEASE_TRAIN}" ]] ; then + DESTINATION_REPO_FOLDER=${DESTINATION}/${REPO_NAME} + else + DESTINATION_REPO_FOLDER=${DESTINATION} + fi + mkdir -p ${DESTINATION_REPO_FOLDER} + echo "Destination was provided [${DESTINATION}]" + fi + cd ${DESTINATION_REPO_FOLDER} + git checkout gh-pages + git pull origin gh-pages + + # Add git branches + ################################################################### + if [[ -z "${VERSION}" && -z "${RELEASE_TRAIN}" ]] ; then + copy_docs_for_current_version + else + copy_docs_for_provided_version + fi + commit_changes_if_applicable +} + + +# Copies the docs by using the retrieved properties from Maven build +function copy_docs_for_current_version() { + if [[ "${CURRENT_BRANCH}" == "master" ]] ; then + echo -e "Current branch is master - will copy the current docs only to the root folder" + for f in docs/target/generated-docs/*; do + file=${f#docs/target/generated-docs/*} + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then + # Not ignored... + cp -rf $f ${ROOT_FOLDER}/ + fi + done + git add -A ${ROOT_FOLDER} + COMMIT_CHANGES="yes" + else + echo -e "Current branch is [${CURRENT_BRANCH}]" + # http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin + if [[ ",${WHITELISTED_BRANCHES_VALUE}," = *",${CURRENT_BRANCH},"* ]] ; then + mkdir -p ${ROOT_FOLDER}/${CURRENT_BRANCH} + echo -e "Branch [${CURRENT_BRANCH}] is whitelisted! Will copy the current docs to the [${CURRENT_BRANCH}] folder" + for f in docs/target/generated-docs/*; do + file=${f#docs/target/generated-docs/*} + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then + # Not ignored... + # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html + if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then + # We don't want to copy the spring-cloud-sleuth.html + # we want it to be converted to index.html + cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html + git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html + else + cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH} + git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/$file + fi + fi + done + COMMIT_CHANGES="yes" + else + echo -e "Branch [${CURRENT_BRANCH}] is not on the white list! Check out the Maven [${WHITELIST_PROPERTY}] property in + [docs] module available under [docs] profile. Won't commit any changes to gh-pages for this branch." + fi + fi +} + +# Copies the docs by using the explicitly provided version +function copy_docs_for_provided_version() { + local FOLDER=${DESTINATION_REPO_FOLDER}/${VERSION} + mkdir -p ${FOLDER} + echo -e "Current tag is [v${VERSION}] Will copy the current docs to the [${FOLDER}] folder" + for f in ${ROOT_FOLDER}/docs/target/generated-docs/*; do + file=${f#${ROOT_FOLDER}/docs/target/generated-docs/*} + copy_docs_for_branch ${file} ${FOLDER} + done + COMMIT_CHANGES="yes" + CURRENT_BRANCH="v${VERSION}" +} + +# Copies the docs from target to the provided destination +# Params: +# $1 - file from target +# $2 - destination to which copy the files +function copy_docs_for_branch() { + local file=$1 + local destination=$2 + if ! git ls-files -i -o --exclude-standard --directory | grep -q ^${file}$; then + # Not ignored... + # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html + if [[ ("${file}" == "${MAIN_ADOC_VALUE}.html") || ("${file}" == "${REPO_NAME}.html") ]] ; then + # We don't want to copy the spring-cloud-sleuth.html + # we want it to be converted to index.html + cp -rf $f ${destination}/index.html + else + cp -rf $f ${destination} + fi + git add -A ${destination} + fi +} + +function commit_changes_if_applicable() { + if [[ "${COMMIT_CHANGES}" == "yes" ]] ; then + COMMIT_SUCCESSFUL="no" + git commit -a -m "Sync docs from ${CURRENT_BRANCH} to gh-pages" && COMMIT_SUCCESSFUL="yes" || echo "Failed to commit changes" + + # Uncomment the following push if you want to auto push to + # the gh-pages branch whenever you commit to master locally. + # This is a little extreme. Use with care! + ################################################################### + if [[ "${COMMIT_SUCCESSFUL}" == "yes" ]] ; then + git push origin gh-pages + fi + fi +} + +# Switch back to the previous branch and exit block +function checkout_previous_branch() { + # If -version was provided we need to come back to root project + cd ${ROOT_FOLDER} + git checkout ${PREVIOUS_BRANCH} || echo "Failed to check the branch... continuing with the script" + if [ "$dirty" != "0" ]; then git stash pop; fi + exit 0 +} + +# Assert if properties have been properly passed +function assert_properties() { +echo "VERSION [${VERSION}], RELEASE_TRAIN [${RELEASE_TRAIN}], DESTINATION [${DESTINATION}], CLONE [${CLONE}]" +if [[ "${VERSION}" != "" && (-z "${DESTINATION}" && -z "${CLONE}") ]] ; then echo "Version was set but destination / clone was not!"; exit 1;fi +if [[ ("${DESTINATION}" != "" && "${CLONE}" != "") && -z "${VERSION}" ]] ; then echo "Destination / clone was set but version was not!"; exit 1;fi +if [[ "${DESTINATION}" != "" && "${CLONE}" == "yes" ]] ; then echo "Destination and clone was set. Pick one!"; exit 1;fi +if [[ "${RELEASE_TRAIN}" != "" && -z "${VERSION}" ]] ; then echo "Release train was set but no version was passed!"; exit 1;fi +} + +# Prints the usage +function print_usage() { +cat </` +- if the destination switch is passed (-d) then the script will check if the provided dir is a git repo and then will + switch to gh-pages of that repo and copy the generated docs to `docs//` +- if the release train switch is passed (-r) then the script will check if the provided dir is a git repo and then will + switch to gh-pages of that repo and copy the generated docs to `docs/` + +USAGE: + +You can use the following options: + +-v|--version - the script will apply the whole procedure for a particular library version +-r|--releasetrain - instead of nesting the docs under the project_name/version folder the docs will end up in version +-d|--destination - the root of destination folder where the docs should be copied. You have to use the full path. + E.g. point to spring-cloud-static folder. Can't be used with (-c) +-b|--build - will run the standard build process after checking out the branch +-c|--clone - will automatically clone the spring-cloud-static repo instead of providing the destination. + Obviously can't be used with (-d) + +EOF +} + + +# ========================================== +# ____ ____ _____ _____ _____ _______ +# / ____|/ ____| __ \|_ _| __ \__ __| +# | (___ | | | |__) | | | | |__) | | | +# \___ \| | | _ / | | | ___/ | | +# ____) | |____| | \ \ _| |_| | | | +# |_____/ \_____|_| \_\_____|_| |_| +# +# ========================================== + +while [[ $# > 0 ]] +do +key="$1" +case ${key} in + -v|--version) + VERSION="$2" + shift # past argument + ;; + -r|--releasetrain) + RELEASE_TRAIN="yes" + ;; + -d|--destination) + DESTINATION="$2" + shift # past argument + ;; + -b|--build) + BUILD="yes" + ;; + -c|--clone) + CLONE="yes" + ;; + -h|--help) + print_usage + exit 0 + ;; + *) + echo "Invalid option: [$1]" + print_usage + exit 1 + ;; +esac +shift # past argument or value +done + +assert_properties +set_default_props +check_if_anything_to_sync +retrieve_current_branch +if echo $VERSION | egrep -q 'SNAPSHOT' || [[ -z "${VERSION}" ]]; then + CLONE="" + VERSION="" + echo "You've provided a version variable but it's a snapshot one. Due to this will not clone spring-cloud-static and publish docs over there" +else + switch_to_tag +fi +build_docs_if_applicable +retrieve_doc_properties +stash_changes +add_docs_from_target +checkout_previous_branch diff --git a/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 00000000..8b89c977 --- /dev/null +++ b/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/target/javadoc-bundle-options/package-list b/target/javadoc-bundle-options/package-list new file mode 100644 index 00000000..b52fe94b --- /dev/null +++ b/target/javadoc-bundle-options/package-list @@ -0,0 +1,209 @@ +java.applet +java.awt +java.awt.color +java.awt.datatransfer +java.awt.dnd +java.awt.event +java.awt.font +java.awt.geom +java.awt.im +java.awt.im.spi +java.awt.image +java.awt.image.renderable +java.awt.print +java.beans +java.beans.beancontext +java.io +java.lang +java.lang.annotation +java.lang.instrument +java.lang.invoke +java.lang.management +java.lang.ref +java.lang.reflect +java.math +java.net +java.nio +java.nio.channels +java.nio.channels.spi +java.nio.charset +java.nio.charset.spi +java.nio.file +java.nio.file.attribute +java.nio.file.spi +java.rmi +java.rmi.activation +java.rmi.dgc +java.rmi.registry +java.rmi.server +java.security +java.security.acl +java.security.cert +java.security.interfaces +java.security.spec +java.sql +java.text +java.text.spi +java.util +java.util.concurrent +java.util.concurrent.atomic +java.util.concurrent.locks +java.util.jar +java.util.logging +java.util.prefs +java.util.regex +java.util.spi +java.util.zip +javax.accessibility +javax.activation +javax.activity +javax.annotation +javax.annotation.processing +javax.crypto +javax.crypto.interfaces +javax.crypto.spec +javax.imageio +javax.imageio.event +javax.imageio.metadata +javax.imageio.plugins.bmp +javax.imageio.plugins.jpeg +javax.imageio.spi +javax.imageio.stream +javax.jws +javax.jws.soap +javax.lang.model +javax.lang.model.element +javax.lang.model.type +javax.lang.model.util +javax.management +javax.management.loading +javax.management.modelmbean +javax.management.monitor +javax.management.openmbean +javax.management.relation +javax.management.remote +javax.management.remote.rmi +javax.management.timer +javax.naming +javax.naming.directory +javax.naming.event +javax.naming.ldap +javax.naming.spi +javax.net +javax.net.ssl +javax.print +javax.print.attribute +javax.print.attribute.standard +javax.print.event +javax.rmi +javax.rmi.CORBA +javax.rmi.ssl +javax.script +javax.security.auth +javax.security.auth.callback +javax.security.auth.kerberos +javax.security.auth.login +javax.security.auth.spi +javax.security.auth.x500 +javax.security.cert +javax.security.sasl +javax.sound.midi +javax.sound.midi.spi +javax.sound.sampled +javax.sound.sampled.spi +javax.sql +javax.sql.rowset +javax.sql.rowset.serial +javax.sql.rowset.spi +javax.swing +javax.swing.border +javax.swing.colorchooser +javax.swing.event +javax.swing.filechooser +javax.swing.plaf +javax.swing.plaf.basic +javax.swing.plaf.metal +javax.swing.plaf.multi +javax.swing.plaf.nimbus +javax.swing.plaf.synth +javax.swing.table +javax.swing.text +javax.swing.text.html +javax.swing.text.html.parser +javax.swing.text.rtf +javax.swing.tree +javax.swing.undo +javax.tools +javax.transaction +javax.transaction.xa +javax.xml +javax.xml.bind +javax.xml.bind.annotation +javax.xml.bind.annotation.adapters +javax.xml.bind.attachment +javax.xml.bind.helpers +javax.xml.bind.util +javax.xml.crypto +javax.xml.crypto.dom +javax.xml.crypto.dsig +javax.xml.crypto.dsig.dom +javax.xml.crypto.dsig.keyinfo +javax.xml.crypto.dsig.spec +javax.xml.datatype +javax.xml.namespace +javax.xml.parsers +javax.xml.soap +javax.xml.stream +javax.xml.stream.events +javax.xml.stream.util +javax.xml.transform +javax.xml.transform.dom +javax.xml.transform.sax +javax.xml.transform.stax +javax.xml.transform.stream +javax.xml.validation +javax.xml.ws +javax.xml.ws.handler +javax.xml.ws.handler.soap +javax.xml.ws.http +javax.xml.ws.soap +javax.xml.ws.spi +javax.xml.ws.spi.http +javax.xml.ws.wsaddressing +javax.xml.xpath +org.ietf.jgss +org.omg.CORBA +org.omg.CORBA.DynAnyPackage +org.omg.CORBA.ORBPackage +org.omg.CORBA.TypeCodePackage +org.omg.CORBA.portable +org.omg.CORBA_2_3 +org.omg.CORBA_2_3.portable +org.omg.CosNaming +org.omg.CosNaming.NamingContextExtPackage +org.omg.CosNaming.NamingContextPackage +org.omg.Dynamic +org.omg.DynamicAny +org.omg.DynamicAny.DynAnyFactoryPackage +org.omg.DynamicAny.DynAnyPackage +org.omg.IOP +org.omg.IOP.CodecFactoryPackage +org.omg.IOP.CodecPackage +org.omg.Messaging +org.omg.PortableInterceptor +org.omg.PortableInterceptor.ORBInitInfoPackage +org.omg.PortableServer +org.omg.PortableServer.CurrentPackage +org.omg.PortableServer.POAManagerPackage +org.omg.PortableServer.POAPackage +org.omg.PortableServer.ServantLocatorPackage +org.omg.PortableServer.portable +org.omg.SendingContext +org.omg.stub.java.rmi +org.w3c.dom +org.w3c.dom.bootstrap +org.w3c.dom.events +org.w3c.dom.ls +org.xml.sax +org.xml.sax.ext +org.xml.sax.helpers diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 00000000..003797ef --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Created by Apache Maven 3.3.9 +#Tue Apr 04 02:50:16 UTC 2017 +version=1.2.0.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-commons-parent diff --git a/target/spring-cloud-commons-parent-1.2.0.BUILD-SNAPSHOT-javadoc.jar b/target/spring-cloud-commons-parent-1.2.0.BUILD-SNAPSHOT-javadoc.jar new file mode 100644 index 00000000..8d24c730 Binary files /dev/null and b/target/spring-cloud-commons-parent-1.2.0.BUILD-SNAPSHOT-javadoc.jar differ diff --git a/target/spring-cloud-commons-parent-1.2.0.BUILD-SNAPSHOT-tests.jar b/target/spring-cloud-commons-parent-1.2.0.BUILD-SNAPSHOT-tests.jar new file mode 100644 index 00000000..54584544 Binary files /dev/null and b/target/spring-cloud-commons-parent-1.2.0.BUILD-SNAPSHOT-tests.jar differ