diff --git a/docs/target/generated-docs/ghpages.sh b/docs/target/generated-docs/ghpages.sh new file mode 100644 index 0000000..57c5da3 --- /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-cloudfoundry.html b/docs/target/generated-docs/spring-cloud-cloudfoundry.html new file mode 100644 index 0000000..d5e6c82 --- /dev/null +++ b/docs/target/generated-docs/spring-cloud-cloudfoundry.html @@ -0,0 +1,532 @@ + + + + + + + +Spring Cloud for Cloud Foundry + + + + + +
+
+
+
+

Spring Cloud for Cloudfoundry makes it easy to run +Spring Cloud apps in +Cloud Foundry (the Platform as a +Service). Cloud Foundry has the notion of a "service", which is +middlware that you "bind" to an app, essentially providing it with an +environment variable containing credentials (e.g. the location and +username to use for the service).

+
+
+

The spring-cloud-cloudfoundry-web project provides basic support for +some enhanced features of webapps in Cloud Foundry: binding +automatically to single-sign-on services and optionally enabling +sticky routing for discovery.

+
+
+

The spring-cloud-cloudfoundry-discovery project provides an +implementation of Spring Cloud Commons DiscoveryClient so you can +@EnableDiscoveryClient and provide your credentials as +spring.cloud.cloudfoundry.discovery.[email,password] and then you +can use the DiscoveryClient directly or via a LoadBalancerClient +(also *.url if you are not connecting to +Pivotal Web Services).

+
+
+

The first time you use it the discovery client might be slow owing to +the fact that it has to get an access token from Cloud Foundry.

+
+
+
+
+

Discovery

+
+
+

Here’s a Spring Cloud app with Cloud Foundry discovery:

+
+
+
app.groovy
+
+
@Grab('org.springframework.cloud:spring-cloud-cloudfoundry')
+@RestController
+@EnableDiscoveryClient
+class Application {
+
+  @Autowired
+  DiscoveryClient client
+
+  @RequestMapping('/')
+  String home() {
+    'Hello from ' + client.getLocalServiceInstance()
+  }
+
+}
+
+
+
+

If you run it without any service bindings:

+
+
+
+
$ spring jar app.jar app.groovy
+$ cf push -p app.jar
+
+
+
+

It will show its app name in the home page.

+
+
+

The DiscoveryClient can lists all the apps in a space, according to +the credentials it is authenticated with, where the space defaults to +the one the client is running in (if any). If neither org nor space +are configured, they default per the user’s profile in Cloud Foundry.

+
+
+
+
+

Single Sign On

+
+
+ + + + + +
+
Note
+
+All of the OAuth2 SSO and resource server features moved to Spring Boot +in version 1.3. You can find documentation in the +Spring Boot user guide. +
+
+
+

This project provides automatic binding from CloudFoundry service +credentials to the Spring Boot features. If you have a CloudFoundry +service called "sso", for instance, with credentials containing +"client_id", "client_secret" and "auth_domain", it will bind +automatically to the Spring OAuth2 client that you enable with +@EnableOAuth2Sso (from Spring Boot). The name of the service can be +parameterized using spring.oauth2.sso.serviceId.

+
+
+
+
+ + \ No newline at end of file diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/allclasses-frame.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/allclasses-frame.html new file mode 100644 index 0000000..4c3d460 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/allclasses-frame.html @@ -0,0 +1,29 @@ + + + + + + +All Classes (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + +

All Classes

+ + + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/allclasses-noframe.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/allclasses-noframe.html new file mode 100644 index 0000000..19e16cb --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/allclasses-noframe.html @@ -0,0 +1,29 @@ + + + + + + +All Classes (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + +

All Classes

+ + + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/constant-values.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/constant-values.html new file mode 100644 index 0000000..d2ad138 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/constant-values.html @@ -0,0 +1,160 @@ + + + + + + +Constant Field Values (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

org.springframework.*

+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/deprecated-list.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/deprecated-list.html new file mode 100644 index 0000000..be1ba9a --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/deprecated-list.html @@ -0,0 +1,124 @@ + + + + + + +Deprecated List (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

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

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/help-doc.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/help-doc.html new file mode 100644 index 0000000..171cf6f --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/help-doc.html @@ -0,0 +1,225 @@ + + + + + + +API Help (spring-cloud-cloudfoundry-discovery 1.0.2.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.
+
+
+
    +
  • +

    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 © 2016 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/index-all.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/index-all.html new file mode 100644 index 0000000..3bbd833 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/index-all.html @@ -0,0 +1,309 @@ + + + + + + +Index (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
C D E G I O P R S V  + + +

C

+
+
cloudCredentials() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration
+
 
+
cloudFoundryClient(CloudCredentials) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration
+
 
+
CloudFoundryDiscoveryClient - Class in org.springframework.cloud.cloudfoundry.discovery
+
+
A Cloud Foundry v2 API-aware implementation of the discovery + client SPI.
+
+
CloudFoundryDiscoveryClient(CloudFoundryClient, Environment) - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient
+
 
+
cloudFoundryDiscoveryClient(CloudFoundryClient, Environment) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration
+
 
+
CloudFoundryDiscoveryClient.CloudFoundryServiceInstance - Class in org.springframework.cloud.cloudfoundry.discovery
+
 
+
CloudFoundryDiscoveryClientConfiguration - Class in org.springframework.cloud.cloudfoundry.discovery
+
 
+
CloudFoundryDiscoveryClientConfiguration() - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration
+
 
+
CloudFoundryDiscoveryProperties - Class in org.springframework.cloud.cloudfoundry.discovery
+
 
+
CloudFoundryDiscoveryProperties() - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
cloudFoundryHeartbeatSender(CloudFoundryDiscoveryClient) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration
+
 
+
CloudFoundryHeartbeatSender - Class in org.springframework.cloud.cloudfoundry.discovery
+
+
Publishes a HeartbeatEvent listing the available services as its state + indicator.
+
+
CloudFoundryHeartbeatSender(CloudFoundryDiscoveryClient) - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryHeartbeatSender
+
 
+
CloudFoundryRibbonClientConfiguration - Class in org.springframework.cloud.cloudfoundry.discovery
+
 
+
CloudFoundryRibbonClientConfiguration() - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
CloudFoundryRibbonClientConfiguration(String) - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
CloudFoundryServer - Class in org.springframework.cloud.cloudfoundry.discovery
+
 
+
CloudFoundryServer(CloudApplication) - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServer
+
 
+
CloudFoundryServerList - Class in org.springframework.cloud.cloudfoundry.discovery
+
 
+
CloudFoundryServerList(CloudFoundryClient) - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList
+
 
+
cloudFoundryServers() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList
+
 
+
CloudFoundryServiceInstance(CloudApplication) - Constructor for class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient.CloudFoundryServiceInstance
+
 
+
createServiceInstancesFromCloudApplications(Collection<CloudApplication>) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient
+
 
+
+ + + +

D

+
+
DEFAULT_NAMESPACE - Static variable in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
description() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient
+
 
+
+ + + +

E

+
+
EnableCloudFoundryClient - Annotation Type in org.springframework.cloud.cloudfoundry.discovery
+
+
Convenience annotation for clients to enable Cloud Foundry discovery configuration (specifically).
+
+
+ + + +

G

+
+
getCloudApplication() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient.CloudFoundryServiceInstance
+
 
+
getHeartbeatFrequency() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
getInitialListOfServers() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList
+
 
+
getInstances(String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient
+
 
+
getKey(String, String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
getLocalServiceInstance() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient
+
 
+
getMetaInfo() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServer
+
 
+
getOrg() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
getPassword() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
getProperty(String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
getServices() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient
+
 
+
getSpace() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
getUpdatedListOfServers() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList
+
 
+
getUrl() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
getUsername() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
+ + + +

I

+
+
initWithNiwsConfig(IClientConfig) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList
+
 
+
isEnabled() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
+ + + +

O

+
+
org.springframework.cloud.cloudfoundry.discovery - package org.springframework.cloud.cloudfoundry.discovery
+
 
+
+ + + +

P

+
+
poll() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryHeartbeatSender
+
 
+
postConstruct() - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
+ + + +

R

+
+
RibbonCloudFoundryAutoConfiguration - Class in org.springframework.cloud.cloudfoundry.discovery
+
 
+
RibbonCloudFoundryAutoConfiguration() - Constructor for class org.springframework.cloud.cloudfoundry.discovery.RibbonCloudFoundryAutoConfiguration
+
 
+
ribbonServerList(CloudFoundryClient, IClientConfig) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
+ + + +

S

+
+
serviceId - Variable in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList
+
 
+
setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryHeartbeatSender
+
 
+
setEnabled(boolean) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
setHeartbeatFrequency(long) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
setOrg(String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
setPassword(String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
setProp(String, String, String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
setSpace(String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
setUrl(String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
setUsername(String) - Method in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+
 
+
+ + + +

V

+
+
VALUE_NOT_SET - Static variable in class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+
 
+
+C D E G I O P R S V 
+ +
+ + + + + + + +
+ + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/index.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/index.html new file mode 100644 index 0000000..125f973 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/index.html @@ -0,0 +1,72 @@ + + + + + + +spring-cloud-cloudfoundry-discovery 1.0.2.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="org/springframework/cloud/cloudfoundry/discovery/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.CloudFoundryServiceInstance.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.CloudFoundryServiceInstance.html new file mode 100644 index 0000000..112d8f9 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.CloudFoundryServiceInstance.html @@ -0,0 +1,291 @@ + + + + + + +CloudFoundryDiscoveryClient.CloudFoundryServiceInstance (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class CloudFoundryDiscoveryClient.CloudFoundryServiceInstance

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.client.DefaultServiceInstance
    • +
    • +
        +
      • org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient.CloudFoundryServiceInstance
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.cloud.client.ServiceInstance
    +
    +
    +
    Enclosing class:
    +
    CloudFoundryDiscoveryClient
    +
    +
    +
    +
    public static class CloudFoundryDiscoveryClient.CloudFoundryServiceInstance
    +extends org.springframework.cloud.client.DefaultServiceInstance
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudFoundryServiceInstance

        +
        public CloudFoundryServiceInstance(org.cloudfoundry.client.lib.domain.CloudApplication ca)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getCloudApplication

        +
        public org.cloudfoundry.client.lib.domain.CloudApplication getCloudApplication()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.html new file mode 100644 index 0000000..128ed53 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.html @@ -0,0 +1,398 @@ + + + + + + +CloudFoundryDiscoveryClient (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class CloudFoundryDiscoveryClient

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.cloud.client.discovery.DiscoveryClient
    +
    +
    +
    +
    public class CloudFoundryDiscoveryClient
    +extends Object
    +implements org.springframework.cloud.client.discovery.DiscoveryClient
    +
    A Cloud Foundry v2 API-aware implementation of the discovery + client SPI. Cloud Foundry already retains a registry of running applications which we + expose here as services. Newer versions of Cloud Foundry support instance-specific + networking, but as the Cloud Foundry client API doesn't yet support that, this + implementation doesn't either. +

    + You need to provide an instance of the CloudFoundryClient. A workable + configuration looks like this: +

    + +

    + @Bean
    + CloudFoundryClient cloudFoundryClient(
    +                @Value("${MY_CUSTOM_CF_API:https://api.run.pivotal.io}") String api,
    +                CloudCredentials cc) throws MalformedURLException {
    +        CloudFoundryClient cloudFoundryClient = new CloudFoundryClient(cc,
    +                        URI.create(api).toURL());
    +        cloudFoundryClient.login();
    +        return cloudFoundryClient;
    + }
    + 
    +

    + You can configure all sorts of other things including which Cloud Foundry cloud + controller URI to use, how and whether to use an HTTP proxy, and more using alternative + constructors. As configured above, the client will talk to all services and + applications deployed in all spaces and organizations. Use one of the + CloudFoundryClient.CloudFoundryClient(CloudCredentials, URL, String, String) + variants to specify which space and organization to use. +

    +
    +
    Author:
    +
    Josh Long, Spencer Gibb, Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudFoundryDiscoveryClient

        +
        public CloudFoundryDiscoveryClient(org.cloudfoundry.client.lib.CloudFoundryClient cloudFoundryClient,
        +                                   org.springframework.core.env.Environment environment)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        description

        +
        public String description()
        +
        +
        Specified by:
        +
        description in interface org.springframework.cloud.client.discovery.DiscoveryClient
        +
        +
      • +
      + + + +
        +
      • +

        getLocalServiceInstance

        +
        public org.springframework.cloud.client.ServiceInstance getLocalServiceInstance()
        +
        +
        Specified by:
        +
        getLocalServiceInstance in interface org.springframework.cloud.client.discovery.DiscoveryClient
        +
        +
      • +
      + + + +
        +
      • +

        getInstances

        +
        public List<org.springframework.cloud.client.ServiceInstance> getInstances(String s)
        +
        +
        Specified by:
        +
        getInstances in interface org.springframework.cloud.client.discovery.DiscoveryClient
        +
        +
      • +
      + + + +
        +
      • +

        getServices

        +
        public List<String> getServices()
        +
        +
        Specified by:
        +
        getServices in interface org.springframework.cloud.client.discovery.DiscoveryClient
        +
        +
      • +
      + + + +
        +
      • +

        createServiceInstancesFromCloudApplications

        +
        protected List<org.springframework.cloud.client.ServiceInstance> createServiceInstancesFromCloudApplications(Collection<org.cloudfoundry.client.lib.domain.CloudApplication> cloudApplications)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientConfiguration.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientConfiguration.html new file mode 100644 index 0000000..01a275e --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientConfiguration.html @@ -0,0 +1,333 @@ + + + + + + +CloudFoundryDiscoveryClientConfiguration (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class CloudFoundryDiscoveryClientConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @ConditionalOnClass(value=org.cloudfoundry.client.lib.CloudFoundryClient.class)
    + @ConditionalOnProperty(value="spring.cloud.cloudfoundry.discovery.enabled",
    +                       matchIfMissing=true)
    + @EnableConfigurationProperties(value=CloudFoundryDiscoveryProperties.class)
    +public class CloudFoundryDiscoveryClientConfiguration
    +extends Object
    +
    +
    Author:
    +
    Josh Long
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudFoundryDiscoveryClientConfiguration

        +
        public CloudFoundryDiscoveryClientConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        cloudCredentials

        +
        @Bean
        + @ConditionalOnMissingBean(value=org.cloudfoundry.client.lib.CloudCredentials.class)
        +public org.cloudfoundry.client.lib.CloudCredentials cloudCredentials()
        +
      • +
      + + + +
        +
      • +

        cloudFoundryClient

        +
        @Bean
        + @ConditionalOnMissingBean(value=org.cloudfoundry.client.lib.CloudFoundryClient.class)
        +public org.cloudfoundry.client.lib.CloudFoundryClient cloudFoundryClient(org.cloudfoundry.client.lib.CloudCredentials cc)
        +                                                                                                                                                               throws MalformedURLException
        +
        +
        Throws:
        +
        MalformedURLException
        +
        +
      • +
      + + + +
        +
      • +

        cloudFoundryDiscoveryClient

        +
        @Bean
        + @ConditionalOnMissingBean(value=CloudFoundryDiscoveryClient.class)
        +public CloudFoundryDiscoveryClient cloudFoundryDiscoveryClient(org.cloudfoundry.client.lib.CloudFoundryClient cloudFoundryClient,
        +                                                                                                                                         org.springframework.core.env.Environment environment)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryProperties.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryProperties.html new file mode 100644 index 0000000..a871788 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryProperties.html @@ -0,0 +1,445 @@ + + + + + + +CloudFoundryDiscoveryProperties (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class CloudFoundryDiscoveryProperties

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @ConfigurationProperties(prefix="spring.cloud.cloudfoundry.discovery")
    +public class CloudFoundryDiscoveryProperties
    +extends Object
    +
    +
    Author:
    +
    Josh Long
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudFoundryDiscoveryProperties

        +
        public CloudFoundryDiscoveryProperties()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isEnabled

        +
        public boolean isEnabled()
        +
      • +
      + + + +
        +
      • +

        setEnabled

        +
        public void setEnabled(boolean enabled)
        +
      • +
      + + + +
        +
      • +

        getUrl

        +
        public String getUrl()
        +
      • +
      + + + +
        +
      • +

        setUrl

        +
        public void setUrl(String cloudControllerUrl)
        +
      • +
      + + + +
        +
      • +

        getUsername

        +
        public String getUsername()
        +
      • +
      + + + +
        +
      • +

        setUsername

        +
        public void setUsername(String email)
        +
      • +
      + + + +
        +
      • +

        getPassword

        +
        public String getPassword()
        +
      • +
      + + + +
        +
      • +

        setPassword

        +
        public void setPassword(String password)
        +
      • +
      + + + +
        +
      • +

        getOrg

        +
        public String getOrg()
        +
      • +
      + + + +
        +
      • +

        setOrg

        +
        public void setOrg(String org)
        +
      • +
      + + + +
        +
      • +

        getSpace

        +
        public String getSpace()
        +
      • +
      + + + +
        +
      • +

        setSpace

        +
        public void setSpace(String space)
        +
      • +
      + + + +
        +
      • +

        getHeartbeatFrequency

        +
        public long getHeartbeatFrequency()
        +
      • +
      + + + +
        +
      • +

        setHeartbeatFrequency

        +
        public void setHeartbeatFrequency(long heartbeatFrequency)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryHeartbeatSender.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryHeartbeatSender.html new file mode 100644 index 0000000..81c36fe --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryHeartbeatSender.html @@ -0,0 +1,301 @@ + + + + + + +CloudFoundryHeartbeatSender (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class CloudFoundryHeartbeatSender

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.discovery.CloudFoundryHeartbeatSender
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.beans.factory.Aware, org.springframework.context.ApplicationEventPublisherAware
    +
    +
    +
    +
    @Component
    +public class CloudFoundryHeartbeatSender
    +extends Object
    +implements org.springframework.context.ApplicationEventPublisherAware
    +
    Publishes a HeartbeatEvent listing the available services as its state + indicator. If consumers detect a change it means there is a change in the catalog.
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        poll

        +
        @Scheduled(fixedDelayString="${spring.cloud.cloudfoundry.discovery.heartbeatFrequency:5000}")
        +public void poll()
        +
      • +
      + + + +
        +
      • +

        setApplicationEventPublisher

        +
        public void setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher publisher)
        +
        +
        Specified by:
        +
        setApplicationEventPublisher in interface org.springframework.context.ApplicationEventPublisherAware
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryRibbonClientConfiguration.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryRibbonClientConfiguration.html new file mode 100644 index 0000000..e5d223f --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryRibbonClientConfiguration.html @@ -0,0 +1,408 @@ + + + + + + +CloudFoundryRibbonClientConfiguration (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class CloudFoundryRibbonClientConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    +public class CloudFoundryRibbonClientConfiguration
    +extends Object
    +
    +
    Author:
    +
    Josh Long
    +
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudFoundryRibbonClientConfiguration

        +
        public CloudFoundryRibbonClientConfiguration()
        +
      • +
      + + + +
        +
      • +

        CloudFoundryRibbonClientConfiguration

        +
        public CloudFoundryRibbonClientConfiguration(String svcId)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        ribbonServerList

        +
        @Bean
        + @ConditionalOnMissingBean
        +public com.netflix.loadbalancer.ServerList<?> ribbonServerList(org.cloudfoundry.client.lib.CloudFoundryClient cloudFoundryClient,
        +                                                                                                com.netflix.client.config.IClientConfig config)
        +
      • +
      + + + + + + + +
        +
      • +

        setProp

        +
        protected void setProp(String serviceId,
        +                       String suffix,
        +                       String value)
        +
      • +
      + + + +
        +
      • +

        getProperty

        +
        protected com.netflix.config.DynamicStringProperty getProperty(String key)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer.html new file mode 100644 index 0000000..cb38678 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer.html @@ -0,0 +1,321 @@ + + + + + + +CloudFoundryServer (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class CloudFoundryServer

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • com.netflix.loadbalancer.Server
    • +
    • +
        +
      • org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServer
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class CloudFoundryServer
    +extends com.netflix.loadbalancer.Server
    +
    +
    Author:
    +
    Josh Long
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      +
        +
      • + + +

        Nested classes/interfaces inherited from class com.netflix.loadbalancer.Server

        +com.netflix.loadbalancer.Server.MetaInfo
      • +
      +
    • +
    + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from class com.netflix.loadbalancer.Server

        +UNKNOWN_ZONE
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      CloudFoundryServer(org.cloudfoundry.client.lib.domain.CloudApplication cloudApplication) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      com.netflix.loadbalancer.Server.MetaInfogetMetaInfo() 
      +
        +
      • + + +

        Methods inherited from class com.netflix.loadbalancer.Server

        +equals, getHost, getHostPort, getId, getPort, getZone, hashCode, isAlive, isReadyToServe, normalizeId, setAlive, setHost, setHostPort, setId, setPort, setReadyToServe, setZone, toString
      • +
      + +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudFoundryServer

        +
        public CloudFoundryServer(org.cloudfoundry.client.lib.domain.CloudApplication cloudApplication)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getMetaInfo

        +
        public com.netflix.loadbalancer.Server.MetaInfo getMetaInfo()
        +
        +
        Overrides:
        +
        getMetaInfo in class com.netflix.loadbalancer.Server
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerList.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerList.html new file mode 100644 index 0000000..92a0ac7 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerList.html @@ -0,0 +1,366 @@ + + + + + + +CloudFoundryServerList (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class CloudFoundryServerList

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • com.netflix.loadbalancer.AbstractServerList<CloudFoundryServer>
    • +
    • +
        +
      • org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    com.netflix.client.IClientConfigAware, com.netflix.loadbalancer.ServerList<CloudFoundryServer>
    +
    +
    +
    +
    public class CloudFoundryServerList
    +extends com.netflix.loadbalancer.AbstractServerList<CloudFoundryServer>
    +
    +
    Author:
    +
    Josh Long
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        serviceId

        +
        protected String serviceId
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudFoundryServerList

        +
        public CloudFoundryServerList(org.cloudfoundry.client.lib.CloudFoundryClient cloudFoundryClient)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        initWithNiwsConfig

        +
        public void initWithNiwsConfig(com.netflix.client.config.IClientConfig iClientConfig)
        +
      • +
      + + + + + + + + + + + + +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/EnableCloudFoundryClient.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/EnableCloudFoundryClient.html new file mode 100644 index 0000000..a5f5c4a --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/EnableCloudFoundryClient.html @@ -0,0 +1,175 @@ + + + + + + +EnableCloudFoundryClient (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Annotation Type EnableCloudFoundryClient

+
+
+
+
    +
  • +
    +
    +
    @Target(value=TYPE)
    + @Retention(value=RUNTIME)
    + @Documented
    + @Inherited
    + @EnableDiscoveryClient
    +public @interface EnableCloudFoundryClient
    +
    Convenience annotation for clients to enable Cloud Foundry discovery configuration (specifically). + Use this (optionally) in case you want discovery and know for sure that it is Cloud Foundry you want. + All it does is turn on discovery and let the auto-configuration find the Cloud Foundry classes.
    +
    +
    Author:
    +
    Josh Long
    +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/RibbonCloudFoundryAutoConfiguration.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/RibbonCloudFoundryAutoConfiguration.html new file mode 100644 index 0000000..8e08847 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/RibbonCloudFoundryAutoConfiguration.html @@ -0,0 +1,244 @@ + + + + + + +RibbonCloudFoundryAutoConfiguration (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.discovery
+

Class RibbonCloudFoundryAutoConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.discovery.RibbonCloudFoundryAutoConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @EnableConfigurationProperties
    + @ConditionalOnClass(value=com.netflix.client.IClient.class)
    + @ConditionalOnBean(value=org.springframework.cloud.netflix.ribbon.SpringClientFactory.class)
    + @ConditionalOnProperty(value="ribbon.cloudfoundry.enabled",
    +                       matchIfMissing=true)
    + @RibbonClients(defaultConfiguration=CloudFoundryRibbonClientConfiguration.class)
    +public class RibbonCloudFoundryAutoConfiguration
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RibbonCloudFoundryAutoConfiguration

        +
        public RibbonCloudFoundryAutoConfiguration()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClient.CloudFoundryServiceInstance.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClient.CloudFoundryServiceInstance.html new file mode 100644 index 0000000..dcff2e9 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClient.CloudFoundryServiceInstance.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient.CloudFoundryServiceInstance (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient.CloudFoundryServiceInstance

+
+
No usage of org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient.CloudFoundryServiceInstance
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClient.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClient.html new file mode 100644 index 0000000..4d4a33c --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClient.html @@ -0,0 +1,174 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClient

+
+
+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClientConfiguration.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClientConfiguration.html new file mode 100644 index 0000000..d70689b --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryClientConfiguration.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration

+
+
No usage of org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryProperties.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryProperties.html new file mode 100644 index 0000000..d6b0e14 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryDiscoveryProperties.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties

+
+
No usage of org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryHeartbeatSender.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryHeartbeatSender.html new file mode 100644 index 0000000..d36754f --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryHeartbeatSender.html @@ -0,0 +1,149 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryHeartbeatSender (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.CloudFoundryHeartbeatSender

+
+
+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryRibbonClientConfiguration.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryRibbonClientConfiguration.html new file mode 100644 index 0000000..59a4b45 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryRibbonClientConfiguration.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration

+
+
No usage of org.springframework.cloud.cloudfoundry.discovery.CloudFoundryRibbonClientConfiguration
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryServer.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryServer.html new file mode 100644 index 0000000..149f609 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryServer.html @@ -0,0 +1,157 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServer (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServer

+
+
+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryServerList.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryServerList.html new file mode 100644 index 0000000..4480bc3 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/CloudFoundryServerList.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList

+
+
No usage of org.springframework.cloud.cloudfoundry.discovery.CloudFoundryServerList
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/EnableCloudFoundryClient.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/EnableCloudFoundryClient.html new file mode 100644 index 0000000..39464c0 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/EnableCloudFoundryClient.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.EnableCloudFoundryClient (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.EnableCloudFoundryClient

+
+
No usage of org.springframework.cloud.cloudfoundry.discovery.EnableCloudFoundryClient
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/RibbonCloudFoundryAutoConfiguration.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/RibbonCloudFoundryAutoConfiguration.html new file mode 100644 index 0000000..382d775 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/class-use/RibbonCloudFoundryAutoConfiguration.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.discovery.RibbonCloudFoundryAutoConfiguration (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.discovery.RibbonCloudFoundryAutoConfiguration

+
+
No usage of org.springframework.cloud.cloudfoundry.discovery.RibbonCloudFoundryAutoConfiguration
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-frame.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-frame.html new file mode 100644 index 0000000..ef7f6a7 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-frame.html @@ -0,0 +1,33 @@ + + + + + + +org.springframework.cloud.cloudfoundry.discovery (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.cloudfoundry.discovery

+ + + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-summary.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-summary.html new file mode 100644 index 0000000..743f45a --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-summary.html @@ -0,0 +1,197 @@ + + + + + + +org.springframework.cloud.cloudfoundry.discovery (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.cloudfoundry.discovery

+
+
+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-tree.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-tree.html new file mode 100644 index 0000000..9bd1484 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-tree.html @@ -0,0 +1,157 @@ + + + + + + +org.springframework.cloud.cloudfoundry.discovery Class Hierarchy (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

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

+
+
+

Class Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-use.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-use.html new file mode 100644 index 0000000..2583f6e --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/org/springframework/cloud/cloudfoundry/discovery/package-use.html @@ -0,0 +1,154 @@ + + + + + + +Uses of Package org.springframework.cloud.cloudfoundry.discovery (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

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

+
+
+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/overview-tree.html b/spring-cloud-cloudfoundry-discovery/target/apidocs/overview-tree.html new file mode 100644 index 0000000..3b551d2 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/overview-tree.html @@ -0,0 +1,161 @@ + + + + + + +Class Hierarchy (spring-cloud-cloudfoundry-discovery 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/package-list b/spring-cloud-cloudfoundry-discovery/target/apidocs/package-list new file mode 100644 index 0000000..fbd2b78 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/apidocs/package-list @@ -0,0 +1 @@ +org.springframework.cloud.cloudfoundry.discovery diff --git a/spring-cloud-cloudfoundry-discovery/target/apidocs/script.js b/spring-cloud-cloudfoundry-discovery/target/apidocs/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/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-cloudfoundry-discovery/target/apidocs/stylesheet.css b/spring-cloud-cloudfoundry-discovery/target/apidocs/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/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-cloudfoundry-discovery/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-cloudfoundry-discovery/target/classes/META-INF/spring-configuration-metadata.json new file mode 100644 index 0000000..452d586 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/classes/META-INF/spring-configuration-metadata.json @@ -0,0 +1,55 @@ +{ + "groups": [{ + "name": "spring.cloud.cloudfoundry.discovery", + "type": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties", + "sourceType": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties" + }], + "properties": [ + { + "name": "spring.cloud.cloudfoundry.discovery.enabled", + "type": "java.lang.Boolean", + "description": "Flag to indicate that discovery is enabled.", + "sourceType": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties", + "defaultValue": true + }, + { + "name": "spring.cloud.cloudfoundry.discovery.heartbeat-frequency", + "type": "java.lang.Long", + "description": "Frequency in milliseconds of poll for heart beat. The client will poll on this\n frequency and broadcast a list of service ids.", + "sourceType": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties", + "defaultValue": 5000 + }, + { + "name": "spring.cloud.cloudfoundry.discovery.org", + "type": "java.lang.String", + "description": "Organization name to authenticate with (default to user's default).", + "sourceType": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties" + }, + { + "name": "spring.cloud.cloudfoundry.discovery.password", + "type": "java.lang.String", + "description": "Password for user to authenticate and obtain token.", + "sourceType": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties" + }, + { + "name": "spring.cloud.cloudfoundry.discovery.space", + "type": "java.lang.String", + "description": "Space name to authenticate with (default to user's default).", + "sourceType": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties" + }, + { + "name": "spring.cloud.cloudfoundry.discovery.url", + "type": "java.lang.String", + "description": "URL of Cloud Foundry API (Cloud Controller).", + "sourceType": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties", + "defaultValue": "https://api.run.pivotal.io" + }, + { + "name": "spring.cloud.cloudfoundry.discovery.username", + "type": "java.lang.String", + "description": "Username to authenticate (usually an email address).", + "sourceType": "org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryProperties" + } + ], + "hints": [] +} \ No newline at end of file diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/META-INF/spring.factories b/spring-cloud-cloudfoundry-discovery/target/classes/META-INF/spring.factories new file mode 100644 index 0000000..5b452c3 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/classes/META-INF/spring.factories @@ -0,0 +1,6 @@ +org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ +org.springframework.cloud.cloudfoundry.discovery.RibbonCloudFoundryAutoConfiguration + +# Discovery Client Configuration +org.springframework.cloud.client.discovery.EnableDiscoveryClient=\ +org.springframework.cloud.cloudfoundry.discovery.CloudFoundryDiscoveryClientConfiguration diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient$CloudFoundryServiceInstance.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient$CloudFoundryServiceInstance.class new file mode 100644 index 0000000..d2c3295 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient$CloudFoundryServiceInstance.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.class new file mode 100644 index 0000000..d347194 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientConfiguration.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientConfiguration.class new file mode 100644 index 0000000..3df1232 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientConfiguration.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryProperties.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryProperties.class new file mode 100644 index 0000000..95417fe Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryProperties.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryHeartbeatSender.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryHeartbeatSender.class new file mode 100644 index 0000000..cabd468 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryHeartbeatSender.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryRibbonClientConfiguration.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryRibbonClientConfiguration.class new file mode 100644 index 0000000..ee83645 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryRibbonClientConfiguration.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer$1.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer$1.class new file mode 100644 index 0000000..c56e74b Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer$1.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer.class new file mode 100644 index 0000000..79457a2 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerList.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerList.class new file mode 100644 index 0000000..660f403 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerList.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/EnableCloudFoundryClient.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/EnableCloudFoundryClient.class new file mode 100644 index 0000000..d4207eb Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/EnableCloudFoundryClient.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/RibbonCloudFoundryAutoConfiguration.class b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/RibbonCloudFoundryAutoConfiguration.class new file mode 100644 index 0000000..e87c01e Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/classes/org/springframework/cloud/cloudfoundry/discovery/RibbonCloudFoundryAutoConfiguration.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-cloudfoundry-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 0000000..8b89c97 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/spring-cloud-cloudfoundry-discovery/target/javadoc-bundle-options/package-list b/spring-cloud-cloudfoundry-discovery/target/javadoc-bundle-options/package-list new file mode 100644 index 0000000..b52fe94 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/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-cloudfoundry-discovery/target/maven-archiver/pom.properties b/spring-cloud-cloudfoundry-discovery/target/maven-archiver/pom.properties new file mode 100644 index 0000000..14410ad --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Thu Sep 22 12:53:19 UTC 2016 +version=1.0.2.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-cloudfoundry-discovery diff --git a/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..08dd5b4 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,12 @@ +org/springframework/cloud/cloudfoundry/discovery/EnableCloudFoundryClient.class +META-INF/spring-configuration-metadata.json +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.class +org/springframework/cloud/cloudfoundry/discovery/RibbonCloudFoundryAutoConfiguration.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientConfiguration.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerList.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryHeartbeatSender.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient$CloudFoundryServiceInstance.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer$1.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryRibbonClientConfiguration.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryProperties.class diff --git a/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..8e4bdab --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,9 @@ +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryProperties.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClient.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServer.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryHeartbeatSender.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryRibbonClientConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/RibbonCloudFoundryAutoConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/EnableCloudFoundryClient.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/main/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerList.java diff --git a/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..48cee34 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1,7 @@ +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest$SimpleConfiguration.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientTest.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerTest.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest$1.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest.class +org/springframework/cloud/cloudfoundry/discovery/AdhocTestSuite.class +org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest.class diff --git a/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..7a8c381 --- /dev/null +++ b/spring-cloud-cloudfoundry-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,5 @@ +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/test/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerTest.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/test/java/org/springframework/cloud/cloudfoundry/discovery/AdhocTestSuite.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/test/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientTest.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/test/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-discovery/src/test/java/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest.java diff --git a/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT-javadoc.jar new file mode 100644 index 0000000..c99211e Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT-javadoc.jar differ diff --git a/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT-sources.jar b/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT-sources.jar new file mode 100644 index 0000000..b2f00ba Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT-sources.jar differ diff --git a/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT.jar b/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT.jar new file mode 100644 index 0000000..d1615b1 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/spring-cloud-cloudfoundry-discovery-1.0.2.BUILD-SNAPSHOT.jar differ diff --git a/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/AdhocTestSuite.class b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/AdhocTestSuite.class new file mode 100644 index 0000000..479fdc4 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/AdhocTestSuite.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest$SimpleConfiguration.class b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest$SimpleConfiguration.class new file mode 100644 index 0000000..b44471c Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest$SimpleConfiguration.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest.class b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest.class new file mode 100644 index 0000000..31bb482 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryAutoConfigurationTest.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientTest.class b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientTest.class new file mode 100644 index 0000000..249862b Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryDiscoveryClientTest.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest$1.class b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest$1.class new file mode 100644 index 0000000..825bce7 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest$1.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest.class b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest.class new file mode 100644 index 0000000..6d0c03e Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerListTest.class differ diff --git a/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerTest.class b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerTest.class new file mode 100644 index 0000000..e00cce9 Binary files /dev/null and b/spring-cloud-cloudfoundry-discovery/target/test-classes/org/springframework/cloud/cloudfoundry/discovery/CloudFoundryServerTest.class differ diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/allclasses-frame.html b/spring-cloud-cloudfoundry-sample/target/apidocs/allclasses-frame.html new file mode 100644 index 0000000..8676f97 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/allclasses-frame.html @@ -0,0 +1,20 @@ + + + + + + +All Classes (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + +

All Classes

+ + + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/allclasses-noframe.html b/spring-cloud-cloudfoundry-sample/target/apidocs/allclasses-noframe.html new file mode 100644 index 0000000..1be9806 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/allclasses-noframe.html @@ -0,0 +1,20 @@ + + + + + + +All Classes (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + +

All Classes

+ + + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/constant-values.html b/spring-cloud-cloudfoundry-sample/target/apidocs/constant-values.html new file mode 100644 index 0000000..1bf8821 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/constant-values.html @@ -0,0 +1,124 @@ + + + + + + +Constant Field Values (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Constant Field Values

+

Contents

+
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/deprecated-list.html b/spring-cloud-cloudfoundry-sample/target/apidocs/deprecated-list.html new file mode 100644 index 0000000..a4a3c5c --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/deprecated-list.html @@ -0,0 +1,124 @@ + + + + + + +Deprecated List (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

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

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/help-doc.html b/spring-cloud-cloudfoundry-sample/target/apidocs/help-doc.html new file mode 100644 index 0000000..2c2ffbb --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/help-doc.html @@ -0,0 +1,225 @@ + + + + + + +API Help (spring-cloud-cloudfoundry-sample 1.0.2.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.
+
+
+
    +
  • +

    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 © 2016 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/index-all.html b/spring-cloud-cloudfoundry-sample/target/apidocs/index-all.html new file mode 100644 index 0000000..d4b1432 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/index-all.html @@ -0,0 +1,151 @@ + + + + + + +Index (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
C M O  + + +

C

+
+
CloudFoundryApplication - Class in org.springframework.cloud.cloudfoundry.sample
+
+
This example assumes you've registered an application on + Cloud Foundry named hi-service that + responds with a String at /hi/ name .
+
+
CloudFoundryApplication() - Constructor for class org.springframework.cloud.cloudfoundry.sample.CloudFoundryApplication
+
 
+
+ + + +

M

+
+
main(String[]) - Static method in class org.springframework.cloud.cloudfoundry.sample.CloudFoundryApplication
+
 
+
+ + + +

O

+
+
org.springframework.cloud.cloudfoundry.sample - package org.springframework.cloud.cloudfoundry.sample
+
 
+
+C M O 
+ +
+ + + + + + + +
+ + +

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/index.html b/spring-cloud-cloudfoundry-sample/target/apidocs/index.html new file mode 100644 index 0000000..5b6e39f --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/index.html @@ -0,0 +1,72 @@ + + + + + + +spring-cloud-cloudfoundry-sample 1.0.2.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="org/springframework/cloud/cloudfoundry/sample/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication.html b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication.html new file mode 100644 index 0000000..03ae0ff --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication.html @@ -0,0 +1,282 @@ + + + + + + +CloudFoundryApplication (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.sample
+

Class CloudFoundryApplication

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.sample.CloudFoundryApplication
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @SpringBootApplication
    + @EnableCloudFoundryClient
    +public class CloudFoundryApplication
    +extends Object
    +
    This example assumes you've registered an application on + Cloud Foundry named hi-service that + responds with a String at /hi/ name . There is a sample file in the project + root called hi-service.groovy which you can deploy using the spring CLI + and the cf CLI that works appropriately for this demonstration.
    +
    +
    Author:
    +
    Josh Long, Spencer Gibb, Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CloudFoundryApplication

        +
        public CloudFoundryApplication()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        main

        +
        public static void main(String[] args)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/class-use/CloudFoundryApplication.html b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/class-use/CloudFoundryApplication.html new file mode 100644 index 0000000..0e28c5f --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/class-use/CloudFoundryApplication.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.sample.CloudFoundryApplication (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.sample.CloudFoundryApplication

+
+
No usage of org.springframework.cloud.cloudfoundry.sample.CloudFoundryApplication
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-frame.html b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-frame.html new file mode 100644 index 0000000..800c1f5 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.cloudfoundry.sample (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.cloudfoundry.sample

+
+

Classes

+ +
+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-summary.html b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-summary.html new file mode 100644 index 0000000..b6b9c75 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-summary.html @@ -0,0 +1,146 @@ + + + + + + +org.springframework.cloud.cloudfoundry.sample (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.cloudfoundry.sample

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    CloudFoundryApplication +
    This example assumes you've registered an application on + Cloud Foundry named hi-service that + responds with a String at /hi/ name .
    +
    +
  • +
+
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-tree.html b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-tree.html new file mode 100644 index 0000000..ae21d1f --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-tree.html @@ -0,0 +1,133 @@ + + + + + + +org.springframework.cloud.cloudfoundry.sample Class Hierarchy (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.cloudfoundry.sample

+
+
+

Class Hierarchy

+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-use.html b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-use.html new file mode 100644 index 0000000..18ecd86 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/org/springframework/cloud/cloudfoundry/sample/package-use.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Package org.springframework.cloud.cloudfoundry.sample (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.cloudfoundry.sample

+
+
No usage of org.springframework.cloud.cloudfoundry.sample
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/overview-tree.html b/spring-cloud-cloudfoundry-sample/target/apidocs/overview-tree.html new file mode 100644 index 0000000..0edd5c1 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/overview-tree.html @@ -0,0 +1,137 @@ + + + + + + +Class Hierarchy (spring-cloud-cloudfoundry-sample 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/package-list b/spring-cloud-cloudfoundry-sample/target/apidocs/package-list new file mode 100644 index 0000000..d8838ca --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/apidocs/package-list @@ -0,0 +1 @@ +org.springframework.cloud.cloudfoundry.sample diff --git a/spring-cloud-cloudfoundry-sample/target/apidocs/script.js b/spring-cloud-cloudfoundry-sample/target/apidocs/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/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-cloudfoundry-sample/target/apidocs/stylesheet.css b/spring-cloud-cloudfoundry-sample/target/apidocs/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/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-cloudfoundry-sample/target/classes/application.properties b/spring-cloud-cloudfoundry-sample/target/classes/application.properties new file mode 100644 index 0000000..a197c9a --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/classes/application.properties @@ -0,0 +1,4 @@ +spring.application.name=test-app +spring.cloud.cloudfoundry.discovery.email=${email:starbuxman@gmail.com} +spring.cloud.cloudfoundry.discovery.password=${password:xxxx} +VCAP_APPLICATION={"limits":{"mem":1024,"disk":1024,"fds":16384},"application_version":"36eff082-96d6-498f-8214-508fda72ba65","application_name":"hi-service","application_uris":["hi-service.cfapps.io"],"version":"36eff082-96d6-498f-8214-508fda72ba65","name":"hi-service","space_name":"joshlong","space_id":"e0cd969c-3461-41ae-abde-4e11bb5acbd1","uris":["hi-service.cfapps.io"],"users":null,"application_id":"af350f7c-88c4-4e35-a04e-698a1dbc7354","instance_id":"e4843ca23bd947b28e6d4cb3f9b92cbb","instance_index":0,"host":"0.0.0.0","port":61590,"started_at":"2015-05-07 20:00:10 +0000","started_at_timestamp":1431028810,"start":"2015-05-07 20:00:10 +0000","state_timestamp":1431028810} \ No newline at end of file diff --git a/spring-cloud-cloudfoundry-sample/target/classes/bootstrap.properties b/spring-cloud-cloudfoundry-sample/target/classes/bootstrap.properties new file mode 100644 index 0000000..723e99d --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/classes/bootstrap.properties @@ -0,0 +1 @@ +spring.application.name=test-app diff --git a/spring-cloud-cloudfoundry-sample/target/classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication$1.class b/spring-cloud-cloudfoundry-sample/target/classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication$1.class new file mode 100644 index 0000000..30d7021 Binary files /dev/null and b/spring-cloud-cloudfoundry-sample/target/classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication$1.class differ diff --git a/spring-cloud-cloudfoundry-sample/target/classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication.class b/spring-cloud-cloudfoundry-sample/target/classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication.class new file mode 100644 index 0000000..0eae0de Binary files /dev/null and b/spring-cloud-cloudfoundry-sample/target/classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication.class differ diff --git a/spring-cloud-cloudfoundry-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-cloudfoundry-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 0000000..8b89c97 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/spring-cloud-cloudfoundry-sample/target/javadoc-bundle-options/package-list b/spring-cloud-cloudfoundry-sample/target/javadoc-bundle-options/package-list new file mode 100644 index 0000000..b52fe94 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/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-cloudfoundry-sample/target/maven-archiver/pom.properties b/spring-cloud-cloudfoundry-sample/target/maven-archiver/pom.properties new file mode 100644 index 0000000..aee1de2 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Thu Sep 22 12:53:24 UTC 2016 +version=1.0.2.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-cloudfoundry-sample diff --git a/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..0000689 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,2 @@ +org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication$1.class +org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication.class diff --git a/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..83ab38b --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1 @@ +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-sample/src/main/java/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplication.java diff --git a/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..9e6f5b7 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1 @@ +org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplicationTests.class diff --git a/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..62ae091 --- /dev/null +++ b/spring-cloud-cloudfoundry-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1 @@ +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-sample/src/test/java/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplicationTests.java diff --git a/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT-javadoc.jar new file mode 100644 index 0000000..7c65948 Binary files /dev/null and b/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT-javadoc.jar differ diff --git a/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT-sources.jar b/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT-sources.jar new file mode 100644 index 0000000..883504b Binary files /dev/null and b/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT-sources.jar differ diff --git a/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT.jar b/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT.jar new file mode 100644 index 0000000..9686e5a Binary files /dev/null and b/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT.jar differ diff --git a/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT.jar.original b/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT.jar.original new file mode 100644 index 0000000..99820da Binary files /dev/null and b/spring-cloud-cloudfoundry-sample/target/spring-cloud-cloudfoundry-sample-1.0.2.BUILD-SNAPSHOT.jar.original differ diff --git a/spring-cloud-cloudfoundry-sample/target/test-classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplicationTests.class b/spring-cloud-cloudfoundry-sample/target/test-classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplicationTests.class new file mode 100644 index 0000000..8b58647 Binary files /dev/null and b/spring-cloud-cloudfoundry-sample/target/test-classes/org/springframework/cloud/cloudfoundry/sample/CloudFoundryApplicationTests.class differ diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/allclasses-frame.html b/spring-cloud-cloudfoundry-web/target/apidocs/allclasses-frame.html new file mode 100644 index 0000000..e178f7a --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/allclasses-frame.html @@ -0,0 +1,22 @@ + + + + + + +All Classes (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + +

All Classes

+ + + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/allclasses-noframe.html b/spring-cloud-cloudfoundry-web/target/apidocs/allclasses-noframe.html new file mode 100644 index 0000000..0d3266e --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/allclasses-noframe.html @@ -0,0 +1,22 @@ + + + + + + +All Classes (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + +

All Classes

+ + + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/constant-values.html b/spring-cloud-cloudfoundry-web/target/apidocs/constant-values.html new file mode 100644 index 0000000..3306282 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/constant-values.html @@ -0,0 +1,126 @@ + + + + + + +Constant Field Values (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Constant Field Values

+

Contents

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

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/deprecated-list.html b/spring-cloud-cloudfoundry-web/target/apidocs/deprecated-list.html new file mode 100644 index 0000000..f202638 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

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

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/help-doc.html b/spring-cloud-cloudfoundry-web/target/apidocs/help-doc.html new file mode 100644 index 0000000..f784464 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (spring-cloud-cloudfoundry-web 1.0.2.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 © 2016 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/index-all.html b/spring-cloud-cloudfoundry-web/target/apidocs/index-all.html new file mode 100644 index 0000000..98b8b9a --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/index-all.html @@ -0,0 +1,179 @@ + + + + + + +Index (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
E G O P S V  + + +

E

+
+
EnableStickyFilter - Annotation Type in org.springframework.cloud.cloudfoundry.session
+
 
+
+ + + +

G

+
+
getOrder() - Method in class org.springframework.cloud.cloudfoundry.environment.VcapServiceCredentialsEnvironmentPostProcessor
+
 
+
+ + + +

O

+
+
org.springframework.cloud.cloudfoundry.environment - package org.springframework.cloud.cloudfoundry.environment
+
 
+
org.springframework.cloud.cloudfoundry.session - package org.springframework.cloud.cloudfoundry.session
+
 
+
+ + + +

P

+
+
postProcessEnvironment(ConfigurableEnvironment, SpringApplication) - Method in class org.springframework.cloud.cloudfoundry.environment.VcapServiceCredentialsEnvironmentPostProcessor
+
 
+
+ + + +

S

+
+
stickyCloudFoundryFilter() - Method in class org.springframework.cloud.cloudfoundry.session.StickyFilterConfiguration
+
 
+
StickyFilterConfiguration - Class in org.springframework.cloud.cloudfoundry.session
+
 
+
StickyFilterConfiguration() - Constructor for class org.springframework.cloud.cloudfoundry.session.StickyFilterConfiguration
+
 
+
+ + + +

V

+
+
VcapServiceCredentialsEnvironmentPostProcessor - Class in org.springframework.cloud.cloudfoundry.environment
+
 
+
VcapServiceCredentialsEnvironmentPostProcessor() - Constructor for class org.springframework.cloud.cloudfoundry.environment.VcapServiceCredentialsEnvironmentPostProcessor
+
 
+
+E G O P S V 
+ +
+ + + + + + + +
+ + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/index.html b/spring-cloud-cloudfoundry-web/target/apidocs/index.html new file mode 100644 index 0000000..83b9533 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/index.html @@ -0,0 +1,75 @@ + + + + + + +spring-cloud-cloudfoundry-web 1.0.2.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-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessor.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessor.html new file mode 100644 index 0000000..c9b5c4a --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessor.html @@ -0,0 +1,320 @@ + + + + + + +VcapServiceCredentialsEnvironmentPostProcessor (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.environment
+

Class VcapServiceCredentialsEnvironmentPostProcessor

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.environment.VcapServiceCredentialsEnvironmentPostProcessor
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.springframework.boot.env.EnvironmentPostProcessor, org.springframework.core.Ordered
    +
    +
    +
    +
    public class VcapServiceCredentialsEnvironmentPostProcessor
    +extends Object
    +implements org.springframework.boot.env.EnvironmentPostProcessor, org.springframework.core.Ordered
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        VcapServiceCredentialsEnvironmentPostProcessor

        +
        public VcapServiceCredentialsEnvironmentPostProcessor()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      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 © 2016 Pivotal Software, Inc.. All rights reserved.

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/class-use/VcapServiceCredentialsEnvironmentPostProcessor.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/class-use/VcapServiceCredentialsEnvironmentPostProcessor.html new file mode 100644 index 0000000..9a06a24 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/class-use/VcapServiceCredentialsEnvironmentPostProcessor.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.environment.VcapServiceCredentialsEnvironmentPostProcessor (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.environment.VcapServiceCredentialsEnvironmentPostProcessor

+
+
No usage of org.springframework.cloud.cloudfoundry.environment.VcapServiceCredentialsEnvironmentPostProcessor
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-frame.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-frame.html new file mode 100644 index 0000000..3e29139 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +org.springframework.cloud.cloudfoundry.environment (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.cloudfoundry.environment

+ + + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-summary.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-summary.html new file mode 100644 index 0000000..c8f4727 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-summary.html @@ -0,0 +1,144 @@ + + + + + + +org.springframework.cloud.cloudfoundry.environment (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.cloudfoundry.environment

+
+
+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-tree.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-tree.html new file mode 100644 index 0000000..b5332cd --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-tree.html @@ -0,0 +1,139 @@ + + + + + + +org.springframework.cloud.cloudfoundry.environment Class Hierarchy (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.cloudfoundry.environment

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-use.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-use.html new file mode 100644 index 0000000..7864d20 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/environment/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.cloudfoundry.environment (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.cloudfoundry.environment

+
+
No usage of org.springframework.cloud.cloudfoundry.environment
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/EnableStickyFilter.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/EnableStickyFilter.html new file mode 100644 index 0000000..2406539 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/EnableStickyFilter.html @@ -0,0 +1,173 @@ + + + + + + +EnableStickyFilter (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.session
+

Annotation Type EnableStickyFilter

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

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration.html new file mode 100644 index 0000000..6399064 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration.html @@ -0,0 +1,280 @@ + + + + + + +StickyFilterConfiguration (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + + +
+
org.springframework.cloud.cloudfoundry.session
+

Class StickyFilterConfiguration

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.springframework.cloud.cloudfoundry.session.StickyFilterConfiguration
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    @Configuration
    + @PropertySource(value="spring-cloud-cloudfoundry.properties")
    +public class StickyFilterConfiguration
    +extends Object
    +
    +
    Author:
    +
    Dave Syer
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        StickyFilterConfiguration

        +
        public StickyFilterConfiguration()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        stickyCloudFoundryFilter

        +
        @Bean
        +public org.springframework.boot.context.embedded.FilterRegistrationBean stickyCloudFoundryFilter()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/class-use/EnableStickyFilter.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/class-use/EnableStickyFilter.html new file mode 100644 index 0000000..1670a74 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/class-use/EnableStickyFilter.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.session.EnableStickyFilter (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.session.EnableStickyFilter

+
+
No usage of org.springframework.cloud.cloudfoundry.session.EnableStickyFilter
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/class-use/StickyFilterConfiguration.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/class-use/StickyFilterConfiguration.html new file mode 100644 index 0000000..0841221 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/class-use/StickyFilterConfiguration.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.springframework.cloud.cloudfoundry.session.StickyFilterConfiguration (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Class
org.springframework.cloud.cloudfoundry.session.StickyFilterConfiguration

+
+
No usage of org.springframework.cloud.cloudfoundry.session.StickyFilterConfiguration
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-frame.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-frame.html new file mode 100644 index 0000000..c7f4018 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-frame.html @@ -0,0 +1,25 @@ + + + + + + +org.springframework.cloud.cloudfoundry.session (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + +

org.springframework.cloud.cloudfoundry.session

+
+

Classes

+ +

Annotation Types

+ +
+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-summary.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-summary.html new file mode 100644 index 0000000..23fa79b --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-summary.html @@ -0,0 +1,159 @@ + + + + + + +org.springframework.cloud.cloudfoundry.session (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Package org.springframework.cloud.cloudfoundry.session

+
+
+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-tree.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-tree.html new file mode 100644 index 0000000..8bf2bf8 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-tree.html @@ -0,0 +1,143 @@ + + + + + + +org.springframework.cloud.cloudfoundry.session Class Hierarchy (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Hierarchy For Package org.springframework.cloud.cloudfoundry.session

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-use.html b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-use.html new file mode 100644 index 0000000..95a200b --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/org/springframework/cloud/cloudfoundry/session/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package org.springframework.cloud.cloudfoundry.session (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + + + + +
+

Uses of Package
org.springframework.cloud.cloudfoundry.session

+
+
No usage of org.springframework.cloud.cloudfoundry.session
+ + + + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/overview-frame.html b/spring-cloud-cloudfoundry-web/target/apidocs/overview-frame.html new file mode 100644 index 0000000..0284938 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/overview-frame.html @@ -0,0 +1,23 @@ + + + + + + +Overview List (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + +

 

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/overview-summary.html b/spring-cloud-cloudfoundry-web/target/apidocs/overview-summary.html new file mode 100644 index 0000000..67bf421 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/overview-summary.html @@ -0,0 +1,144 @@ + + + + + + +Overview (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API

+
+
+ + + + + + + + + + + + + + + + +
Packages 
PackageDescription
org.springframework.cloud.cloudfoundry.environment 
org.springframework.cloud.cloudfoundry.session 
+
+ +
+ + + + + + + +
+ + +

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/overview-tree.html b/spring-cloud-cloudfoundry-web/target/apidocs/overview-tree.html new file mode 100644 index 0000000..de76d01 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/overview-tree.html @@ -0,0 +1,145 @@ + + + + + + +Class Hierarchy (spring-cloud-cloudfoundry-web 1.0.2.BUILD-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+

Class Hierarchy

+ +

Annotation Type Hierarchy

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

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

+ + diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/package-list b/spring-cloud-cloudfoundry-web/target/apidocs/package-list new file mode 100644 index 0000000..a263d68 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/apidocs/package-list @@ -0,0 +1,2 @@ +org.springframework.cloud.cloudfoundry.environment +org.springframework.cloud.cloudfoundry.session diff --git a/spring-cloud-cloudfoundry-web/target/apidocs/script.js b/spring-cloud-cloudfoundry-web/target/apidocs/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/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-cloudfoundry-web/target/apidocs/stylesheet.css b/spring-cloud-cloudfoundry-web/target/apidocs/stylesheet.css new file mode 100644 index 0000000..98055b2 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/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-cloudfoundry-web/target/classes/META-INF/spring.factories b/spring-cloud-cloudfoundry-web/target/classes/META-INF/spring.factories new file mode 100644 index 0000000..888b9d7 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/classes/META-INF/spring.factories @@ -0,0 +1,3 @@ +# Environment Post Processors +org.springframework.boot.env.EnvironmentPostProcessor=\ +org.springframework.cloud.cloudfoundry.environment.VcapServiceCredentialsEnvironmentPostProcessor diff --git a/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessor.class b/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessor.class new file mode 100644 index 0000000..6d1c742 Binary files /dev/null and b/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessor.class differ diff --git a/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/EnableStickyFilter.class b/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/EnableStickyFilter.class new file mode 100644 index 0000000..d53b678 Binary files /dev/null and b/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/EnableStickyFilter.class differ diff --git a/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration$1.class b/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration$1.class new file mode 100644 index 0000000..0f2dece Binary files /dev/null and b/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration$1.class differ diff --git a/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration.class b/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration.class new file mode 100644 index 0000000..4467ae0 Binary files /dev/null and b/spring-cloud-cloudfoundry-web/target/classes/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration.class differ diff --git a/spring-cloud-cloudfoundry-web/target/classes/spring-cloud-cloudfoundry.properties b/spring-cloud-cloudfoundry-web/target/classes/spring-cloud-cloudfoundry.properties new file mode 100644 index 0000000..3e84a60 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/classes/spring-cloud-cloudfoundry.properties @@ -0,0 +1,2 @@ +spring.cloud.cloudfoundry.web.cookie=${random} +eureka.instance.metadata-map.cookie=${spring.cloud.cloudfoundry.web.cookie} \ No newline at end of file diff --git a/spring-cloud-cloudfoundry-web/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-cloudfoundry-web/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 0000000..8b89c97 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/spring-cloud-cloudfoundry-web/target/javadoc-bundle-options/package-list b/spring-cloud-cloudfoundry-web/target/javadoc-bundle-options/package-list new file mode 100644 index 0000000..b52fe94 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/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-cloudfoundry-web/target/maven-archiver/pom.properties b/spring-cloud-cloudfoundry-web/target/maven-archiver/pom.properties new file mode 100644 index 0000000..c6599e6 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Thu Sep 22 12:53:22 UTC 2016 +version=1.0.2.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-cloudfoundry-web diff --git a/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..634cd7e --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,4 @@ +org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration$1.class +org/springframework/cloud/cloudfoundry/session/EnableStickyFilter.class +org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration.class +org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessor.class diff --git a/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..d0f197f --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,3 @@ +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-web/src/main/java/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessor.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-web/src/main/java/org/springframework/cloud/cloudfoundry/session/StickyFilterConfiguration.java +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-web/src/main/java/org/springframework/cloud/cloudfoundry/session/EnableStickyFilter.java diff --git a/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..3c7d1b4 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1 @@ +org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessorTests.class diff --git a/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..9b5b704 --- /dev/null +++ b/spring-cloud-cloudfoundry-web/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1 @@ +/opt/jenkins/data/workspace/spring-cloud-cloudfoundry-master-ci/spring-cloud-cloudfoundry-web/src/test/java/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessorTests.java diff --git a/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT-javadoc.jar new file mode 100644 index 0000000..7645477 Binary files /dev/null and b/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT-javadoc.jar differ diff --git a/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT-sources.jar b/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT-sources.jar new file mode 100644 index 0000000..b5d49da Binary files /dev/null and b/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT-sources.jar differ diff --git a/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT.jar b/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT.jar new file mode 100644 index 0000000..1d10721 Binary files /dev/null and b/spring-cloud-cloudfoundry-web/target/spring-cloud-cloudfoundry-web-1.0.2.BUILD-SNAPSHOT.jar differ diff --git a/spring-cloud-cloudfoundry-web/target/test-classes/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessorTests.class b/spring-cloud-cloudfoundry-web/target/test-classes/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessorTests.class new file mode 100644 index 0000000..d8a19f1 Binary files /dev/null and b/spring-cloud-cloudfoundry-web/target/test-classes/org/springframework/cloud/cloudfoundry/environment/VcapServiceCredentialsEnvironmentPostProcessorTests.class differ diff --git a/spring-cloud-starter-cloudfoundry/target/classes/META-INF/spring.provides b/spring-cloud-starter-cloudfoundry/target/classes/META-INF/spring.provides new file mode 100644 index 0000000..15c5022 --- /dev/null +++ b/spring-cloud-starter-cloudfoundry/target/classes/META-INF/spring.provides @@ -0,0 +1 @@ +provides: spring-cloud-security \ No newline at end of file diff --git a/spring-cloud-starter-cloudfoundry/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-starter-cloudfoundry/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 0000000..8b89c97 --- /dev/null +++ b/spring-cloud-starter-cloudfoundry/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ + + + + + + + + + src/main/javadoc + diff --git a/spring-cloud-starter-cloudfoundry/target/maven-archiver/pom.properties b/spring-cloud-starter-cloudfoundry/target/maven-archiver/pom.properties new file mode 100644 index 0000000..403fb08 --- /dev/null +++ b/spring-cloud-starter-cloudfoundry/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Thu Sep 22 12:53:27 UTC 2016 +version=1.0.2.BUILD-SNAPSHOT +groupId=org.springframework.cloud +artifactId=spring-cloud-starter-cloudfoundry diff --git a/spring-cloud-starter-cloudfoundry/target/spring-cloud-starter-cloudfoundry-1.0.2.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-cloudfoundry/target/spring-cloud-starter-cloudfoundry-1.0.2.BUILD-SNAPSHOT-sources.jar new file mode 100644 index 0000000..edbd536 Binary files /dev/null and b/spring-cloud-starter-cloudfoundry/target/spring-cloud-starter-cloudfoundry-1.0.2.BUILD-SNAPSHOT-sources.jar differ diff --git a/spring-cloud-starter-cloudfoundry/target/spring-cloud-starter-cloudfoundry-1.0.2.BUILD-SNAPSHOT.jar b/spring-cloud-starter-cloudfoundry/target/spring-cloud-starter-cloudfoundry-1.0.2.BUILD-SNAPSHOT.jar new file mode 100644 index 0000000..d3b8d30 Binary files /dev/null and b/spring-cloud-starter-cloudfoundry/target/spring-cloud-starter-cloudfoundry-1.0.2.BUILD-SNAPSHOT.jar differ diff --git a/target/ghpages.sh b/target/ghpages.sh new file mode 100755 index 0000000..9b83f74 --- /dev/null +++ b/target/ghpages.sh @@ -0,0 +1,356 @@ +#!/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/\.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" +} + +# 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) + 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) + 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 ${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}], 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 +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