diff --git a/docs/target/antrun/build-main.xml b/docs/target/antrun/build-main.xml deleted file mode 100644 index f3df9763..00000000 --- a/docs/target/antrun/build-main.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/docs/target/generated-docs/antrun/build-main.xml b/docs/target/generated-docs/antrun/build-main.xml deleted file mode 100644 index 19393669..00000000 --- a/docs/target/generated-docs/antrun/build-main.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - :nofooter: -:linkcss: -:stylesdir: css -:stylesheet: manual-singlepage.css - -= {docs-main} - -{spring-cloud-version} - -== Pick The Documentation Option - -- link:single/{docs-main}.html[Single HTML] -- link:multi/multi_{docs-main}.html[Multi HTML] - - \ No newline at end of file diff --git a/docs/target/generated-docs/ghpages.sh b/docs/target/generated-docs/ghpages.sh deleted file mode 100644 index 57c5da3a..00000000 --- a/docs/target/generated-docs/ghpages.sh +++ /dev/null @@ -1,330 +0,0 @@ -#!/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/images/.gitkeep b/docs/target/generated-docs/images/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/docs/target/generated-docs/spring-cloud-gateway.html b/docs/target/generated-docs/spring-cloud-gateway.html deleted file mode 100644 index b5655a65..00000000 --- a/docs/target/generated-docs/spring-cloud-gateway.html +++ /dev/null @@ -1,497 +0,0 @@ - - - - - - - -Spring Cloud Gateway - - - - - -
-
-
-
-

1.0.0.BUILD-SNAPSHOT

-
-
-

This project provides a library for building an API Gateway on top of Spring MVC. Spring Cloud Gateway aims to provide a simple, yet effective way to route to APIs and provide cross cutting concerns to them such as: security, monitoring/metrics, and resiliency.

-
-
-
-
-

How to Include Spring Cloud Gateway

-
-
-

To include Spring Cloud Gateway in your project add a dependency with group org.springframework.cloud and artifact id spring-cloud-gateway-mvc. See the Spring Cloud Project page for details on setting up your build system with the current Spring Cloud Release Train.

-
-
-
-
-

Building a Gateway Using Spring MVC

-
-
-

Spring Cloud Gateway provides a utility object called ProxyExchange which you can use inside a regular Spring MVC handler as a method parameter. It supports basic downstream HTTP exchanges via methods that mirror the HTTP verbs, or forwarding to a local handler via the forward() method.

-
-
-

Example (proxying a request to "/test" downstream to a remote server):

-
-
-
-
@RestController
-@SpringBootApplication
-public class GatewaySampleApplication {
-
-	@Value("${remote.home}")
-	private URI home;
-
-	@GetMapping("/test")
-	public ResponseEntity<?> proxy(ProxyExchange<Object> proxy) throws Exception {
-		return proxy.uri(home.toString() + "/image/png").get();
-	}
-
-}
-
-
-
-

There are convenience methods on the ProxyExchange to enable the handler method to discover and enhance the URI path of the incoming request. For example you might want to extract the trailing elements of a path to pass them downstream:

-
-
-
-
@GetMapping("/proxy/path/**")
-public ResponseEntity<?> proxyPath(ProxyExchange<?> proxy) throws Exception {
-  String path = proxy.path("/proxy/path/");
-  return proxy.uri(home.toString() + "/foos/" + path).get();
-}
-
-
-
-

All the features of Spring MVC are available to Gateway handler methods. So you can inject request headers and query parameters, for instance, and you can constrain the incoming requests with declarations in the mapping annotation. See the documentation for @RequestMapping in Spring MVC for more details of those features.

-
-
-

Headers can be added to the downstream response using the header() methods on ProxyExchange.

-
-
-

You can also manipulate response headers (and anything else you like in the response) by adding a mapper to the get() etc. method. The mapper is a Function that takes the incoming ResponseEntity and converts it to an outgoing one.

-
-
-

First class support is provided for "sensitive" headers ("cookie" and "authorization" by default) which are not passed downstream, and for "proxy" headers (x-forwarded-*).

-
-
-
-
- - \ No newline at end of file diff --git a/docs/target/spring-cloud-gateway-docs-1.0.0.BUILD-SNAPSHOT.zip b/docs/target/spring-cloud-gateway-docs-1.0.0.BUILD-SNAPSHOT.zip deleted file mode 100644 index 98f0b5e6..00000000 Binary files a/docs/target/spring-cloud-gateway-docs-1.0.0.BUILD-SNAPSHOT.zip and /dev/null differ diff --git a/docs/target/spring-cloud-gateway.adoc b/docs/target/spring-cloud-gateway.adoc deleted file mode 100644 index e06b1723..00000000 --- a/docs/target/spring-cloud-gateway.adoc +++ /dev/null @@ -1,13 +0,0 @@ -:nofooter: -:linkcss: -:stylesdir: css -:stylesheet: manual-singlepage.css - -= {docs-main} - -{spring-cloud-version} - -== Pick The Documentation Option - -- link:single/{docs-main}.html[Single HTML] -- link:multi/multi_{docs-main}.html[Multi HTML] \ No newline at end of file diff --git a/spring-cloud-gateway-mvc/target/apidocs/allclasses-frame.html b/spring-cloud-gateway-mvc/target/apidocs/allclasses-frame.html deleted file mode 100644 index f3d9b79c..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/allclasses-frame.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - -All Classes (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - -

All Classes

- - - diff --git a/spring-cloud-gateway-mvc/target/apidocs/allclasses-noframe.html b/spring-cloud-gateway-mvc/target/apidocs/allclasses-noframe.html deleted file mode 100644 index 7cc596c9..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/allclasses-noframe.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - -All Classes (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - -

All Classes

- - - diff --git a/spring-cloud-gateway-mvc/target/apidocs/constant-values.html b/spring-cloud-gateway-mvc/target/apidocs/constant-values.html deleted file mode 100644 index 516a0c01..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/constant-values.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -Constant Field Values (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
-

Constant Field Values

-

Contents

-
- -
- - - - - - - -
- - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/deprecated-list.html b/spring-cloud-gateway-mvc/target/apidocs/deprecated-list.html deleted file mode 100644 index 0eca6d34..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/deprecated-list.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -Deprecated List (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
-

Deprecated API

-

Contents

-
- -
- - - - - - - -
- - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/help-doc.html b/spring-cloud-gateway-mvc/target/apidocs/help-doc.html deleted file mode 100644 index d36d6d87..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/help-doc.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - -API Help (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
-

How This API Document Is Organized

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

    Overview

    -

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

    -
  • -
  • -

    Package

    -

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

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

    Class/Interface

    -

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

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

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

    -
  • -
  • -

    Annotation Type

    -

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

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

    Enum

    -

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

    -
      -
    • Enum declaration
    • -
    • Enum description
    • -
    • Enum Constant Summary
    • -
    • Enum Constant Detail
    • -
    -
  • -
  • -

    Use

    -

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

    -
  • -
  • -

    Tree (Class Hierarchy)

    -

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

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

    Deprecated API

    -

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

    -
  • -
  • -

    Index

    -

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

    -
  • -
  • -

    Prev/Next

    -

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

    -
  • -
  • -

    Frames/No Frames

    -

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

    -
  • -
  • -

    All Classes

    -

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

    -
  • -
  • -

    Serialized Form

    -

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

    -
  • -
  • -

    Constant Field Values

    -

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

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

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/index-all.html b/spring-cloud-gateway-mvc/target/apidocs/index-all.html deleted file mode 100644 index f8cef439..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/index-all.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - -Index (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
A B C D F G H O P R S U  - - -

A

-
-
addArgumentResolvers(List<HandlerMethodArgumentResolver>) - Method in class org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration
-
 
-
- - - -

B

-
-
body(Object) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
-
Sets the body for the downstream request (if using ProxyExchange.post(), ProxyExchange.put() - or ProxyExchange.patch()).
-
-
body(Object) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange.BodyGrabber
-
 
-
body() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange.BodySender
-
 
-
BodyGrabber() - Constructor for class org.springframework.cloud.gateway.mvc.ProxyExchange.BodyGrabber
-
 
-
BodySender() - Constructor for class org.springframework.cloud.gateway.mvc.ProxyExchange.BodySender
-
 
-
- - - -

C

-
-
convertHeaders() - Method in class org.springframework.cloud.gateway.mvc.config.ProxyProperties
-
 
-
- - - -

D

-
-
DEFAULT_SENSITIVE - Static variable in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
delete() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
delete(Function<ResponseEntity<T>, ResponseEntity<S>>) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
- - - -

F

-
-
forward(String) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
- - - -

G

-
-
get() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
get(Function<ResponseEntity<T>, ResponseEntity<S>>) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
getHeaders() - Method in class org.springframework.cloud.gateway.mvc.config.ProxyProperties
-
 
-
getSensitive() - Method in class org.springframework.cloud.gateway.mvc.config.ProxyProperties
-
 
-
- - - -

H

-
-
head() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
head(Function<ResponseEntity<T>, ResponseEntity<S>>) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
header(String, String...) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
-
Sets a header for the downstream call.
-
-
headers(HttpHeaders) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
-
Additional headers, or overrides of the incoming ones, to be used in the downstream - call.
-
-
- - - -

O

-
-
options() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
options(Function<ResponseEntity<T>, ResponseEntity<S>>) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
org.springframework.cloud.gateway.mvc - package org.springframework.cloud.gateway.mvc
-
 
-
org.springframework.cloud.gateway.mvc.config - package org.springframework.cloud.gateway.mvc.config
-
 
-
- - - -

P

-
-
patch() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
patch(Function<ResponseEntity<T>, ResponseEntity<S>>) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
path() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
path(String) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
post() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
post(Function<ResponseEntity<T>, ResponseEntity<S>>) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
ProxyExchange<T> - Class in org.springframework.cloud.gateway.mvc
-
-
A @RequestMapping argument type that can proxy the request to a backend.
-
-
ProxyExchange(RestTemplate, NativeWebRequest, ModelAndViewContainer, WebDataBinderFactory, Type) - Constructor for class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
ProxyExchange.BodyGrabber - Class in org.springframework.cloud.gateway.mvc
-
 
-
ProxyExchange.BodySender - Class in org.springframework.cloud.gateway.mvc
-
 
-
ProxyExchangeArgumentResolver - Class in org.springframework.cloud.gateway.mvc.config
-
 
-
ProxyExchangeArgumentResolver(RestTemplate) - Constructor for class org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver
-
 
-
proxyExchangeArgumentResolver(Optional<RestTemplateBuilder>, ProxyProperties) - Method in class org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration
-
 
-
ProxyProperties - Class in org.springframework.cloud.gateway.mvc.config
-
-
Configuration properties for the ProxyExchange argument handler in - @RequestMapping methods.
-
-
ProxyProperties() - Constructor for class org.springframework.cloud.gateway.mvc.config.ProxyProperties
-
 
-
ProxyResponseAutoConfiguration - Class in org.springframework.cloud.gateway.mvc.config
-
-
Autoconfiguration for the ProxyExchange argument handler in Spring MVC - @RequestMapping methods.
-
-
ProxyResponseAutoConfiguration() - Constructor for class org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration
-
 
-
put() - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
put(Function<ResponseEntity<T>, ResponseEntity<S>>) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
 
-
- - - -

R

-
-
resolveArgument(MethodParameter, ModelAndViewContainer, NativeWebRequest, WebDataBinderFactory) - Method in class org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver
-
 
-
- - - -

S

-
-
sensitive(String...) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
-
Sets the names of sensitive headers that are not passed downstream to the backend - service.
-
-
setHeaders(HttpHeaders) - Method in class org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver
-
 
-
setHeaders(Map<String, String>) - Method in class org.springframework.cloud.gateway.mvc.config.ProxyProperties
-
 
-
setSensitive(Set<String>) - Method in class org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver
-
 
-
setSensitive(Set<String>) - Method in class org.springframework.cloud.gateway.mvc.config.ProxyProperties
-
 
-
supportsParameter(MethodParameter) - Method in class org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver
-
 
-
- - - -

U

-
-
uri(String) - Method in class org.springframework.cloud.gateway.mvc.ProxyExchange
-
-
Sets the uri for the backend call when triggered by the HTTP methods.
-
-
-A B C D F G H O P R S U 
- -
- - - - - - - -
- - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/index.html b/spring-cloud-gateway-mvc/target/apidocs/index.html deleted file mode 100644 index ac5f669b..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - -spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API - - - - - - - - - -<noscript> -<div>JavaScript is disabled on your browser.</div> -</noscript> -<h2>Frame Alert</h2> -<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> - - - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.BodyGrabber.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.BodyGrabber.html deleted file mode 100644 index 121b889e..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.BodyGrabber.html +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - -ProxyExchange.BodyGrabber (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - - -
-
org.springframework.cloud.gateway.mvc
-

Class ProxyExchange.BodyGrabber

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.springframework.cloud.gateway.mvc.ProxyExchange.BodyGrabber
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    ProxyExchange<T>
    -
    -
    -
    -
    protected static class ProxyExchange.BodyGrabber
    -extends Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        BodyGrabber

        -
        protected BodyGrabber()
        -
      • -
      -
    • -
    - - -
  • -
-
-
- - - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.BodySender.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.BodySender.html deleted file mode 100644 index 5261c9f4..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.BodySender.html +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - -ProxyExchange.BodySender (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - - -
-
org.springframework.cloud.gateway.mvc
-

Class ProxyExchange.BodySender

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.springframework.cloud.gateway.mvc.ProxyExchange.BodySender
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    ProxyExchange<T>
    -
    -
    -
    -
    protected static class ProxyExchange.BodySender
    -extends Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        BodySender

        -
        protected BodySender()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        body

        -
        @ResponseBody
        -public Object body()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.html deleted file mode 100644 index a557b630..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/ProxyExchange.html +++ /dev/null @@ -1,733 +0,0 @@ - - - - - - -ProxyExchange (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - - -
-
org.springframework.cloud.gateway.mvc
-

Class ProxyExchange<T>

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.springframework.cloud.gateway.mvc.ProxyExchange<T>
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class ProxyExchange<T>
    -extends Object
    -
    A @RequestMapping argument type that can proxy the request to a backend. - Spring will inject one of these into your MVC handler method, and you get return a - ResponseEntity that you get from one of the HTTP methods get(), - post(), put(), patch(), delete() etc. Example: - -
    - @GetMapping("/proxy/{id}")
    - public ResponseEntity<?> proxy(@PathVariable Integer id, ProxyExchange<?> proxy)
    -                throws Exception {
    -        return proxy.uri("http://localhost:9000/foos/" + id).get();
    - }
    - 
    - -

    - By default the incoming request body and headers are sent intact to the downstream - service (with the exception of "sensitive" headers). To manipulate the downstream - request there are "builder" style methods in ProxyExchange, but only the - uri(String) is mandatory. You can change the sensitive headers by calling the - sensitive(String...) method (Authorization and Cookie are sensitive by - default). -

    -

    - The type parameter T in ProxyExchange<T> is the type of - the response body, so it comes out in the ResponseEntity that you return from - your @RequestMapping. If you don't care about the type of the request and - response body (e.g. if it's just a passthru) then use a wildcard, or - byte[] or Object. Use a concrete type if you want to - transform or manipulate the response, or if you want to assert that it is convertible - to the type you declare. -

    -

    - To manipulate the response use the overloaded HTTP methods with a Function - argument and pass in code to transform the response. E.g. - -

    - @PostMapping("/proxy")
    - public ResponseEntity<Foo> proxy(ProxyExchange<Foo> proxy) throws Exception {
    -        return proxy.uri("http://localhost:9000/foos/") //
    -                        .post(response -> ResponseEntity.status(response.getStatusCode()) //
    -                                        .headers(response.getHeaders()) //
    -                                        .header("X-Custom", "MyCustomHeader") //
    -                                        .body(response.getBody()) //
    -        );
    - }
    - 
    - 
    - -

    -

    - The full machinery of Spring message converters is applied - to the incoming request and response and also to the backend request. If you need - additional converters then they need to be added upstream in the MVC configuration and - also to the RestTemplate that is used in the backend calls (see the - constructor for details). -

    -

    - As well as the HTTP methods for a backend call you can also use - forward(String) for a local in-container dispatch. -

    -
    -
    Author:
    -
    Dave Syer
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      ProxyExchange(org.springframework.web.client.RestTemplate rest, - org.springframework.web.context.request.NativeWebRequest webRequest, - org.springframework.web.method.support.ModelAndViewContainer mavContainer, - org.springframework.web.bind.support.WebDataBinderFactory binderFactory, - Type type) 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      ProxyExchange<T>body(Object body) -
      Sets the body for the downstream request (if using post(), put() - or patch()).
      -
      org.springframework.http.ResponseEntity<T>delete() 
      <S> org.springframework.http.ResponseEntity<S>delete(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter) 
      voidforward(String path) 
      org.springframework.http.ResponseEntity<T>get() 
      <S> org.springframework.http.ResponseEntity<S>get(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter) 
      org.springframework.http.ResponseEntity<T>head() 
      <S> org.springframework.http.ResponseEntity<S>head(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter) 
      ProxyExchange<T>header(String name, - String... value) -
      Sets a header for the downstream call.
      -
      ProxyExchange<T>headers(org.springframework.http.HttpHeaders headers) -
      Additional headers, or overrides of the incoming ones, to be used in the downstream - call.
      -
      org.springframework.http.ResponseEntity<T>options() 
      <S> org.springframework.http.ResponseEntity<S>options(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter) 
      org.springframework.http.ResponseEntity<T>patch() 
      <S> org.springframework.http.ResponseEntity<S>patch(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter) 
      Stringpath() 
      Stringpath(String prefix) 
      org.springframework.http.ResponseEntity<T>post() 
      <S> org.springframework.http.ResponseEntity<S>post(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter) 
      org.springframework.http.ResponseEntity<T>put() 
      <S> org.springframework.http.ResponseEntity<S>put(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter) 
      ProxyExchange<T>sensitive(String... names) -
      Sets the names of sensitive headers that are not passed downstream to the backend - service.
      -
      ProxyExchange<T>uri(String uri) -
      Sets the uri for the backend call when triggered by the HTTP methods.
      -
      - -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        DEFAULT_SENSITIVE

        -
        public static Set<String> DEFAULT_SENSITIVE
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ProxyExchange

        -
        public ProxyExchange(org.springframework.web.client.RestTemplate rest,
        -                     org.springframework.web.context.request.NativeWebRequest webRequest,
        -                     org.springframework.web.method.support.ModelAndViewContainer mavContainer,
        -                     org.springframework.web.bind.support.WebDataBinderFactory binderFactory,
        -                     Type type)
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        body

        -
        public ProxyExchange<T> body(Object body)
        -
        Sets the body for the downstream request (if using post(), put() - or patch()). The body can be omitted if you just want to pass the incoming - request downstream without changing it. If you want to transform the incoming - request you can declare it as a @RequestBody in your - @RequestMapping in the usual Spring MVC way.
        -
        -
        Parameters:
        -
        body - the request body to send downstream
        -
        Returns:
        -
        this for convenience
        -
        -
      • -
      - - - -
        -
      • -

        header

        -
        public ProxyExchange<T> header(String name,
        -                               String... value)
        -
        Sets a header for the downstream call.
        -
        -
        Parameters:
        -
        name -
        -
        value -
        -
        Returns:
        -
        this for convenience
        -
        -
      • -
      - - - -
        -
      • -

        headers

        -
        public ProxyExchange<T> headers(org.springframework.http.HttpHeaders headers)
        -
        Additional headers, or overrides of the incoming ones, to be used in the downstream - call.
        -
        -
        Parameters:
        -
        headers - the http headers to use in the downstream call
        -
        Returns:
        -
        this for convenience
        -
        -
      • -
      - - - -
        -
      • -

        sensitive

        -
        public ProxyExchange<T> sensitive(String... names)
        -
        Sets the names of sensitive headers that are not passed downstream to the backend - service.
        -
        -
        Parameters:
        -
        names - the names of sensitive headers
        -
        Returns:
        -
        this for convenience
        -
        -
      • -
      - - - -
        -
      • -

        uri

        -
        public ProxyExchange<T> uri(String uri)
        -
        Sets the uri for the backend call when triggered by the HTTP methods.
        -
        -
        Parameters:
        -
        uri - the backend uri to send the request to
        -
        Returns:
        -
        this for convenience
        -
        -
      • -
      - - - -
        -
      • -

        path

        -
        public String path()
        -
      • -
      - - - - - - - -
        -
      • -

        forward

        -
        public void forward(String path)
        -
      • -
      - - - -
        -
      • -

        get

        -
        public org.springframework.http.ResponseEntity<T> get()
        -
      • -
      - - - -
        -
      • -

        get

        -
        public <S> org.springframework.http.ResponseEntity<S> get(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter)
        -
      • -
      - - - -
        -
      • -

        head

        -
        public org.springframework.http.ResponseEntity<T> head()
        -
      • -
      - - - -
        -
      • -

        head

        -
        public <S> org.springframework.http.ResponseEntity<S> head(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter)
        -
      • -
      - - - -
        -
      • -

        options

        -
        public org.springframework.http.ResponseEntity<T> options()
        -
      • -
      - - - -
        -
      • -

        options

        -
        public <S> org.springframework.http.ResponseEntity<S> options(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter)
        -
      • -
      - - - -
        -
      • -

        post

        -
        public org.springframework.http.ResponseEntity<T> post()
        -
      • -
      - - - -
        -
      • -

        post

        -
        public <S> org.springframework.http.ResponseEntity<S> post(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter)
        -
      • -
      - - - -
        -
      • -

        delete

        -
        public org.springframework.http.ResponseEntity<T> delete()
        -
      • -
      - - - -
        -
      • -

        delete

        -
        public <S> org.springframework.http.ResponseEntity<S> delete(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter)
        -
      • -
      - - - -
        -
      • -

        put

        -
        public org.springframework.http.ResponseEntity<T> put()
        -
      • -
      - - - -
        -
      • -

        put

        -
        public <S> org.springframework.http.ResponseEntity<S> put(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter)
        -
      • -
      - - - -
        -
      • -

        patch

        -
        public org.springframework.http.ResponseEntity<T> patch()
        -
      • -
      - - - -
        -
      • -

        patch

        -
        public <S> org.springframework.http.ResponseEntity<S> patch(Function<org.springframework.http.ResponseEntity<T>,org.springframework.http.ResponseEntity<S>> converter)
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.BodyGrabber.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.BodyGrabber.html deleted file mode 100644 index a90c0bc0..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.BodyGrabber.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -Uses of Class org.springframework.cloud.gateway.mvc.ProxyExchange.BodyGrabber (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.springframework.cloud.gateway.mvc.ProxyExchange.BodyGrabber

-
-
No usage of org.springframework.cloud.gateway.mvc.ProxyExchange.BodyGrabber
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.BodySender.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.BodySender.html deleted file mode 100644 index 76d7165d..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.BodySender.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -Uses of Class org.springframework.cloud.gateway.mvc.ProxyExchange.BodySender (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.springframework.cloud.gateway.mvc.ProxyExchange.BodySender

-
-
No usage of org.springframework.cloud.gateway.mvc.ProxyExchange.BodySender
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.html deleted file mode 100644 index 33cbd8da..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/class-use/ProxyExchange.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - -Uses of Class org.springframework.cloud.gateway.mvc.ProxyExchange (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.springframework.cloud.gateway.mvc.ProxyExchange

-
-
- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyExchangeArgumentResolver.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyExchangeArgumentResolver.html deleted file mode 100644 index 82ed02b8..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyExchangeArgumentResolver.html +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - -ProxyExchangeArgumentResolver (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - - -
-
org.springframework.cloud.gateway.mvc.config
-

Class ProxyExchangeArgumentResolver

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.springframework.web.method.support.HandlerMethodArgumentResolver
    -
    -
    -
    -
    public class ProxyExchangeArgumentResolver
    -extends Object
    -implements org.springframework.web.method.support.HandlerMethodArgumentResolver
    -
    -
    Author:
    -
    Dave Syer
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ProxyExchangeArgumentResolver

        -
        public ProxyExchangeArgumentResolver(org.springframework.web.client.RestTemplate builder)
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        setHeaders

        -
        public void setHeaders(org.springframework.http.HttpHeaders headers)
        -
      • -
      - - - -
        -
      • -

        setSensitive

        -
        public void setSensitive(Set<String> sensitive)
        -
      • -
      - - - -
        -
      • -

        supportsParameter

        -
        public boolean supportsParameter(org.springframework.core.MethodParameter parameter)
        -
        -
        Specified by:
        -
        supportsParameter in interface org.springframework.web.method.support.HandlerMethodArgumentResolver
        -
        -
      • -
      - - - -
        -
      • -

        resolveArgument

        -
        public Object resolveArgument(org.springframework.core.MethodParameter parameter,
        -                              org.springframework.web.method.support.ModelAndViewContainer mavContainer,
        -                              org.springframework.web.context.request.NativeWebRequest webRequest,
        -                              org.springframework.web.bind.support.WebDataBinderFactory binderFactory)
        -                       throws Exception
        -
        -
        Specified by:
        -
        resolveArgument in interface org.springframework.web.method.support.HandlerMethodArgumentResolver
        -
        Throws:
        -
        Exception
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyProperties.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyProperties.html deleted file mode 100644 index 10c46779..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyProperties.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - -ProxyProperties (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - - -
-
org.springframework.cloud.gateway.mvc.config
-

Class ProxyProperties

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.springframework.cloud.gateway.mvc.config.ProxyProperties
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    @ConfigurationProperties(value="spring.cloud.gateway.proxy")
    -public class ProxyProperties
    -extends Object
    -
    Configuration properties for the ProxyExchange argument handler in - @RequestMapping methods.
    -
    -
    Author:
    -
    Dave Syer
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ProxyProperties

        -
        public ProxyProperties()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - - - - - - - - - -
        -
      • -

        getSensitive

        -
        public Set<String> getSensitive()
        -
      • -
      - - - -
        -
      • -

        setSensitive

        -
        public void setSensitive(Set<String> sensitive)
        -
      • -
      - - - -
        -
      • -

        convertHeaders

        -
        public org.springframework.http.HttpHeaders convertHeaders()
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration.html deleted file mode 100644 index e00d7911..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - -ProxyResponseAutoConfiguration (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - - -
-
org.springframework.cloud.gateway.mvc.config
-

Class ProxyResponseAutoConfiguration

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
    • -
    • -
        -
      • org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.springframework.web.servlet.config.annotation.WebMvcConfigurer
    -
    -
    -
    -
    @Configuration
    - @ConditionalOnWebApplication
    - @ConditionalOnClass(value=org.springframework.web.method.support.HandlerMethodReturnValueHandler.class)
    - @EnableConfigurationProperties(value=ProxyProperties.class)
    -public class ProxyResponseAutoConfiguration
    -extends org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
    -
    Autoconfiguration for the ProxyExchange argument handler in Spring MVC - @RequestMapping methods.
    -
    -
    Author:
    -
    Dave Syer
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        ProxyResponseAutoConfiguration

        -
        public ProxyResponseAutoConfiguration()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - - - - - -
        -
      • -

        addArgumentResolvers

        -
        public void addArgumentResolvers(List<org.springframework.web.method.support.HandlerMethodArgumentResolver> argumentResolvers)
        -
        -
        Specified by:
        -
        addArgumentResolvers in interface org.springframework.web.servlet.config.annotation.WebMvcConfigurer
        -
        Overrides:
        -
        addArgumentResolvers in class org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyExchangeArgumentResolver.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyExchangeArgumentResolver.html deleted file mode 100644 index 5904ac5b..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyExchangeArgumentResolver.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - -Uses of Class org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver

-
-
- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyProperties.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyProperties.html deleted file mode 100644 index 3f0e54b4..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyProperties.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - -Uses of Class org.springframework.cloud.gateway.mvc.config.ProxyProperties (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.springframework.cloud.gateway.mvc.config.ProxyProperties

-
-
- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyResponseAutoConfiguration.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyResponseAutoConfiguration.html deleted file mode 100644 index a6d10ab4..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/class-use/ProxyResponseAutoConfiguration.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -Uses of Class org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration

-
-
No usage of org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-frame.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-frame.html deleted file mode 100644 index 2626436c..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-frame.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.mvc.config (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - -

org.springframework.cloud.gateway.mvc.config

- - - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-summary.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-summary.html deleted file mode 100644 index cac2598b..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-summary.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.mvc.config (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Package org.springframework.cloud.gateway.mvc.config

-
-
- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-tree.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-tree.html deleted file mode 100644 index 30e7cf52..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-tree.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.mvc.config Class Hierarchy (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Hierarchy For Package org.springframework.cloud.gateway.mvc.config

-Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver (implements org.springframework.web.method.support.HandlerMethodArgumentResolver)
    • -
    • org.springframework.cloud.gateway.mvc.config.ProxyProperties
    • -
    • org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter (implements org.springframework.web.servlet.config.annotation.WebMvcConfigurer) - -
    • -
    -
  • -
-
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-use.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-use.html deleted file mode 100644 index 9a40c511..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/config/package-use.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -Uses of Package org.springframework.cloud.gateway.mvc.config (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Package
org.springframework.cloud.gateway.mvc.config

-
-
- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-frame.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-frame.html deleted file mode 100644 index 920b41b2..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-frame.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.mvc (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - -

org.springframework.cloud.gateway.mvc

- - - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-summary.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-summary.html deleted file mode 100644 index 915e8706..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-summary.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.mvc (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Package org.springframework.cloud.gateway.mvc

-
-
- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-tree.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-tree.html deleted file mode 100644 index 73e65509..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-tree.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.mvc Class Hierarchy (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Hierarchy For Package org.springframework.cloud.gateway.mvc

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-use.html b/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-use.html deleted file mode 100644 index f2aa6110..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/org/springframework/cloud/gateway/mvc/package-use.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -Uses of Package org.springframework.cloud.gateway.mvc (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Package
org.springframework.cloud.gateway.mvc

-
-
- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/overview-frame.html b/spring-cloud-gateway-mvc/target/apidocs/overview-frame.html deleted file mode 100644 index 3d7feb5c..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/overview-frame.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - -Overview List (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - -

 

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/overview-summary.html b/spring-cloud-gateway-mvc/target/apidocs/overview-summary.html deleted file mode 100644 index cf63be61..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/overview-summary.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -Overview (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
-

spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API

-
-
- - - - - - - - - - - - - - - - -
Packages 
PackageDescription
org.springframework.cloud.gateway.mvc 
org.springframework.cloud.gateway.mvc.config 
-
- -
- - - - - - - -
- - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/overview-tree.html b/spring-cloud-gateway-mvc/target/apidocs/overview-tree.html deleted file mode 100644 index 978be1ed..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/overview-tree.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - -Class Hierarchy (spring-cloud-gateway-mvc 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
-

Hierarchy For All Packages

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
- -
- - - - - - - -
- - -

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

- - diff --git a/spring-cloud-gateway-mvc/target/apidocs/package-list b/spring-cloud-gateway-mvc/target/apidocs/package-list deleted file mode 100644 index 932f836d..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/package-list +++ /dev/null @@ -1,2 +0,0 @@ -org.springframework.cloud.gateway.mvc -org.springframework.cloud.gateway.mvc.config diff --git a/spring-cloud-gateway-mvc/target/apidocs/script.js b/spring-cloud-gateway-mvc/target/apidocs/script.js deleted file mode 100644 index b3463569..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/script.js +++ /dev/null @@ -1,30 +0,0 @@ -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-gateway-mvc/target/apidocs/stylesheet.css b/spring-cloud-gateway-mvc/target/apidocs/stylesheet.css deleted file mode 100644 index 98055b22..00000000 --- a/spring-cloud-gateway-mvc/target/apidocs/stylesheet.css +++ /dev/null @@ -1,574 +0,0 @@ -/* 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-gateway-mvc/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-gateway-mvc/target/classes/META-INF/spring-configuration-metadata.json deleted file mode 100644 index 1fc071db..00000000 --- a/spring-cloud-gateway-mvc/target/classes/META-INF/spring-configuration-metadata.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "hints": [], - "groups": [ - { - "sourceType": "org.springframework.cloud.gateway.mvc.config.ProxyProperties", - "name": "spring.cloud.gateway.proxy", - "type": "org.springframework.cloud.gateway.mvc.config.ProxyProperties" - } - ], - "properties": [ - { - "sourceType": "org.springframework.cloud.gateway.mvc.config.ProxyProperties", - "name": "spring.cloud.gateway.proxy.headers", - "description": "Fixed header values that will be added to all downstream requests.", - "type": "java.util.Map" - }, - { - "sourceType": "org.springframework.cloud.gateway.mvc.config.ProxyProperties", - "name": "spring.cloud.gateway.proxy.sensitive", - "description": "A set of sensitive header names that will not be sent downstream by default.", - "type": "java.util.Set" - } - ] -} \ No newline at end of file diff --git a/spring-cloud-gateway-mvc/target/classes/META-INF/spring.factories b/spring-cloud-gateway-mvc/target/classes/META-INF/spring.factories deleted file mode 100644 index ae9e0fda..00000000 --- a/spring-cloud-gateway-mvc/target/classes/META-INF/spring.factories +++ /dev/null @@ -1,5 +0,0 @@ -org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ -org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration - -org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureWebMvc=\ -org.springframework.cloud.gateway.mvc.config.ProxyResponseAutoConfiguration diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodyForwardingHttpServletRequest.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodyForwardingHttpServletRequest.class deleted file mode 100644 index 356bb617..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodyForwardingHttpServletRequest.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodyGrabber.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodyGrabber.class deleted file mode 100644 index 1e765e5d..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodyGrabber.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodySender.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodySender.class deleted file mode 100644 index 49a0ae53..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$BodySender.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$NestedTemplate.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$NestedTemplate.class deleted file mode 100644 index ab22326b..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange$NestedTemplate.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange.class deleted file mode 100644 index aa0281c5..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ProxyExchange.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter$1.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter$1.class deleted file mode 100644 index eaf794f5..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter$1.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter$2.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter$2.class deleted file mode 100644 index f32ef01c..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter$2.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter.class deleted file mode 100644 index ea9b6353..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyExchangeArgumentResolver.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyExchangeArgumentResolver.class deleted file mode 100644 index deff073b..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyExchangeArgumentResolver.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyProperties.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyProperties.class deleted file mode 100644 index cf24fef3..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyProperties.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration$1.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration$1.class deleted file mode 100644 index a006bda5..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration$1.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration$NoOpResponseErrorHandler.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration$NoOpResponseErrorHandler.class deleted file mode 100644 index 3d6c3a53..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration$NoOpResponseErrorHandler.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration.class b/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration.class deleted file mode 100644 index 1d3798ee..00000000 Binary files a/spring-cloud-gateway-mvc/target/classes/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-gateway-mvc/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml deleted file mode 100644 index 8b89c977..00000000 --- a/spring-cloud-gateway-mvc/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - src/main/javadoc - diff --git a/spring-cloud-gateway-mvc/target/javadoc-bundle-options/package-list b/spring-cloud-gateway-mvc/target/javadoc-bundle-options/package-list deleted file mode 100644 index 59d42328..00000000 --- a/spring-cloud-gateway-mvc/target/javadoc-bundle-options/package-list +++ /dev/null @@ -1,217 +0,0 @@ -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.time -java.time.chrono -java.time.format -java.time.temporal -java.time.zone -java.util -java.util.concurrent -java.util.concurrent.atomic -java.util.concurrent.locks -java.util.function -java.util.jar -java.util.logging -java.util.prefs -java.util.regex -java.util.spi -java.util.stream -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.w3c.dom.views -org.xml.sax -org.xml.sax.ext -org.xml.sax.helpers diff --git a/spring-cloud-gateway-mvc/target/maven-archiver/pom.properties b/spring-cloud-gateway-mvc/target/maven-archiver/pom.properties deleted file mode 100644 index 23300c1c..00000000 --- a/spring-cloud-gateway-mvc/target/maven-archiver/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Created by Apache Maven 3.5.0 -#Thu Aug 24 01:02:09 UTC 2017 -version=1.0.0.BUILD-SNAPSHOT -groupId=org.springframework.cloud -artifactId=spring-cloud-gateway-mvc diff --git a/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst deleted file mode 100644 index 602f1226..00000000 --- a/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ /dev/null @@ -1,14 +0,0 @@ -META-INF/spring-configuration-metadata.json -org/springframework/cloud/gateway/mvc/ProxyExchange$BodyGrabber.class -org/springframework/cloud/gateway/mvc/config/ProxyProperties.class -org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration$NoOpResponseErrorHandler.class -org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter.class -org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration.class -org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter$2.class -org/springframework/cloud/gateway/mvc/ProxyExchange$NestedTemplate.class -org/springframework/cloud/gateway/mvc/config/ProxyExchangeArgumentResolver.class -org/springframework/cloud/gateway/mvc/ProxyExchange$BodySender.class -org/springframework/cloud/gateway/mvc/ProxyExchange.class -org/springframework/cloud/gateway/mvc/ProxyExchange$BodyForwardingHttpServletRequest.class -org/springframework/cloud/gateway/mvc/ServletOutputToInputConverter$1.class -org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration$1.class diff --git a/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst deleted file mode 100644 index 337c22ac..00000000 --- a/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ /dev/null @@ -1,4 +0,0 @@ -/opt/jenkins/data/workspace/spring-cloud-gateway-master-ci/spring-cloud-gateway-mvc/src/main/java/org/springframework/cloud/gateway/mvc/config/ProxyExchangeArgumentResolver.java -/opt/jenkins/data/workspace/spring-cloud-gateway-master-ci/spring-cloud-gateway-mvc/src/main/java/org/springframework/cloud/gateway/mvc/config/ProxyResponseAutoConfiguration.java -/opt/jenkins/data/workspace/spring-cloud-gateway-master-ci/spring-cloud-gateway-mvc/src/main/java/org/springframework/cloud/gateway/mvc/config/ProxyProperties.java -/opt/jenkins/data/workspace/spring-cloud-gateway-master-ci/spring-cloud-gateway-mvc/src/main/java/org/springframework/cloud/gateway/mvc/ProxyExchange.java diff --git a/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst deleted file mode 100644 index bd06cd6e..00000000 --- a/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +++ /dev/null @@ -1,11 +0,0 @@ -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$Bar.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$2.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$3.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$ProxyController.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$4.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$1.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$TestController.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$Foo.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests.class -org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$5.class diff --git a/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst deleted file mode 100644 index 80a40422..00000000 --- a/spring-cloud-gateway-mvc/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +++ /dev/null @@ -1 +0,0 @@ -/opt/jenkins/data/workspace/spring-cloud-gateway-master-ci/spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests.java diff --git a/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT-javadoc.jar deleted file mode 100644 index 4c90295c..00000000 Binary files a/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT-sources.jar deleted file mode 100644 index 166f7270..00000000 Binary files a/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT.jar b/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT.jar deleted file mode 100644 index 580ae5b0..00000000 Binary files a/spring-cloud-gateway-mvc/target/spring-cloud-gateway-mvc-1.0.0.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$1.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$1.class deleted file mode 100644 index 8efd0925..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$1.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$2.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$2.class deleted file mode 100644 index 80f033e7..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$2.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$3.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$3.class deleted file mode 100644 index 522196c5..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$3.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$4.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$4.class deleted file mode 100644 index 7af1bf64..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$4.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$5.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$5.class deleted file mode 100644 index 39f6ce66..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$5.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$Bar.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$Bar.class deleted file mode 100644 index d43d7a01..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$Bar.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$Foo.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$Foo.class deleted file mode 100644 index 2e7aca52..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$Foo.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$ProxyController.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$ProxyController.class deleted file mode 100644 index 30b573ac..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$ProxyController.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$TestController.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$TestController.class deleted file mode 100644 index c9fff132..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication$TestController.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication.class deleted file mode 100644 index 972189cb..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests$TestApplication.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests.class b/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests.class deleted file mode 100644 index bfb8158d..00000000 Binary files a/spring-cloud-gateway-mvc/target/test-classes/org/springframework/cloud/gateway/mvc/ProductionConfigurationTests.class and /dev/null differ diff --git a/spring-cloud-gateway-mvc/target/test-classes/static/test.html b/spring-cloud-gateway-mvc/target/test-classes/static/test.html deleted file mode 100644 index 0cfed139..00000000 --- a/spring-cloud-gateway-mvc/target/test-classes/static/test.html +++ /dev/null @@ -1,4 +0,0 @@ - -Test - - \ No newline at end of file diff --git a/spring-cloud-gateway-sample/target/apidocs/allclasses-frame.html b/spring-cloud-gateway-sample/target/apidocs/allclasses-frame.html deleted file mode 100644 index 8a9eb3ce..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/allclasses-frame.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - -All Classes (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - -

All Classes

- - - diff --git a/spring-cloud-gateway-sample/target/apidocs/allclasses-noframe.html b/spring-cloud-gateway-sample/target/apidocs/allclasses-noframe.html deleted file mode 100644 index c006b88f..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/allclasses-noframe.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - -All Classes (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - -

All Classes

- - - diff --git a/spring-cloud-gateway-sample/target/apidocs/constant-values.html b/spring-cloud-gateway-sample/target/apidocs/constant-values.html deleted file mode 100644 index d2d7bebc..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/constant-values.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Constant Field Values (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Constant Field Values

-

Contents

-
- - - - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/deprecated-list.html b/spring-cloud-gateway-sample/target/apidocs/deprecated-list.html deleted file mode 100644 index 64bd0093..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/deprecated-list.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Deprecated List (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
-

Deprecated API

-

Contents

-
- -
- - - - - - - -
- - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/help-doc.html b/spring-cloud-gateway-sample/target/apidocs/help-doc.html deleted file mode 100644 index 4bdbda31..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/help-doc.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - -API Help (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

How This API Document Is Organized

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

    Package

    -

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

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

    Class/Interface

    -

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

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

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

    -
  • -
  • -

    Annotation Type

    -

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

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

    Enum

    -

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

    -
      -
    • Enum declaration
    • -
    • Enum description
    • -
    • Enum Constant Summary
    • -
    • Enum Constant Detail
    • -
    -
  • -
  • -

    Use

    -

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

    -
  • -
  • -

    Tree (Class Hierarchy)

    -

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

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

    Deprecated API

    -

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

    -
  • -
  • -

    Index

    -

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

    -
  • -
  • -

    Prev/Next

    -

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

    -
  • -
  • -

    Frames/No Frames

    -

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

    -
  • -
  • -

    All Classes

    -

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

    -
  • -
  • -

    Serialized Form

    -

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

    -
  • -
  • -

    Constant Field Values

    -

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

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

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/index-all.html b/spring-cloud-gateway-sample/target/apidocs/index-all.html deleted file mode 100644 index ea58ac28..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/index-all.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - -Index (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
G M O P  - - -

G

-
-
GatewaySampleApplication - Class in org.springframework.cloud.gateway.sample
-
 
-
GatewaySampleApplication() - Constructor for class org.springframework.cloud.gateway.sample.GatewaySampleApplication
-
 
-
- - - -

M

-
-
main(String[]) - Static method in class org.springframework.cloud.gateway.sample.GatewaySampleApplication
-
 
-
- - - -

O

-
-
org.springframework.cloud.gateway.sample - package org.springframework.cloud.gateway.sample
-
 
-
- - - -

P

-
-
proxy(ProxyExchange<Object>) - Method in class org.springframework.cloud.gateway.sample.GatewaySampleApplication
-
 
-
proxyFoos(ProxyExchange<Object>) - Method in class org.springframework.cloud.gateway.sample.GatewaySampleApplication
-
 
-
-G M O P 
- -
- - - - - - - -
- - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/index.html b/spring-cloud-gateway-sample/target/apidocs/index.html deleted file mode 100644 index 982aed89..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - -Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API - - - - - - -<noscript> -<div>JavaScript is disabled on your browser.</div> -</noscript> -<h2>Frame Alert</h2> -<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="org/springframework/cloud/gateway/sample/package-summary.html">Non-frame version</a>.</p> - - - diff --git a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/GatewaySampleApplication.html b/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/GatewaySampleApplication.html deleted file mode 100644 index 5d9f027f..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/GatewaySampleApplication.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - -GatewaySampleApplication (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - - -
-
org.springframework.cloud.gateway.sample
-

Class GatewaySampleApplication

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.springframework.cloud.gateway.sample.GatewaySampleApplication
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    @RestController
    - @SpringBootApplication
    -public class GatewaySampleApplication
    -extends Object
    -
    -
    Author:
    -
    Spencer Gibb, Dave Syer
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        GatewaySampleApplication

        -
        public GatewaySampleApplication()
        -
      • -
      -
    • -
    - - -
  • -
-
-
- - - - - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/class-use/GatewaySampleApplication.html b/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/class-use/GatewaySampleApplication.html deleted file mode 100644 index 57b5b659..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/class-use/GatewaySampleApplication.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Uses of Class org.springframework.cloud.gateway.sample.GatewaySampleApplication (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.springframework.cloud.gateway.sample.GatewaySampleApplication

-
-
No usage of org.springframework.cloud.gateway.sample.GatewaySampleApplication
- - - - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-frame.html b/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-frame.html deleted file mode 100644 index 48e1074a..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-frame.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.sample (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - -

org.springframework.cloud.gateway.sample

-
-

Classes

- -
- - diff --git a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-summary.html b/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-summary.html deleted file mode 100644 index b7fec21c..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-summary.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.sample (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Package org.springframework.cloud.gateway.sample

-
-
- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-tree.html b/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-tree.html deleted file mode 100644 index 479e97cf..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-tree.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -org.springframework.cloud.gateway.sample Class Hierarchy (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

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

-
-
-

Class Hierarchy

- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-use.html b/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-use.html deleted file mode 100644 index c3bd50ac..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/org/springframework/cloud/gateway/sample/package-use.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Uses of Package org.springframework.cloud.gateway.sample (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

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

-
-
No usage of org.springframework.cloud.gateway.sample
- - - - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/overview-tree.html b/spring-cloud-gateway-sample/target/apidocs/overview-tree.html deleted file mode 100644 index 77bc8149..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/overview-tree.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - -Class Hierarchy (Spring Cloud Gateway Sample 1.0.0.BUILD-SNAPSHOT API) - - - - - - - - - - - -
-

Hierarchy For All Packages

-Package Hierarchies: - -
-
-

Class Hierarchy

- -
- - - - -

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

- - diff --git a/spring-cloud-gateway-sample/target/apidocs/package-list b/spring-cloud-gateway-sample/target/apidocs/package-list deleted file mode 100644 index 5699b91f..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/package-list +++ /dev/null @@ -1 +0,0 @@ -org.springframework.cloud.gateway.sample diff --git a/spring-cloud-gateway-sample/target/apidocs/script.js b/spring-cloud-gateway-sample/target/apidocs/script.js deleted file mode 100644 index b3463569..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/script.js +++ /dev/null @@ -1,30 +0,0 @@ -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-gateway-sample/target/apidocs/stylesheet.css b/spring-cloud-gateway-sample/target/apidocs/stylesheet.css deleted file mode 100644 index 98055b22..00000000 --- a/spring-cloud-gateway-sample/target/apidocs/stylesheet.css +++ /dev/null @@ -1,574 +0,0 @@ -/* 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-gateway-sample/target/classes/application.yml b/spring-cloud-gateway-sample/target/classes/application.yml deleted file mode 100644 index 0dd282e7..00000000 --- a/spring-cloud-gateway-sample/target/classes/application.yml +++ /dev/null @@ -1,5 +0,0 @@ -management: - security: - enabled: false -remote: - home: http://httpbin.org diff --git a/spring-cloud-gateway-sample/target/classes/org/springframework/cloud/gateway/sample/GatewaySampleApplication.class b/spring-cloud-gateway-sample/target/classes/org/springframework/cloud/gateway/sample/GatewaySampleApplication.class deleted file mode 100644 index ff781bb6..00000000 Binary files a/spring-cloud-gateway-sample/target/classes/org/springframework/cloud/gateway/sample/GatewaySampleApplication.class and /dev/null differ diff --git a/spring-cloud-gateway-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-gateway-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml deleted file mode 100644 index 8b89c977..00000000 --- a/spring-cloud-gateway-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - src/main/javadoc - diff --git a/spring-cloud-gateway-sample/target/javadoc-bundle-options/package-list b/spring-cloud-gateway-sample/target/javadoc-bundle-options/package-list deleted file mode 100644 index 59d42328..00000000 --- a/spring-cloud-gateway-sample/target/javadoc-bundle-options/package-list +++ /dev/null @@ -1,217 +0,0 @@ -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.time -java.time.chrono -java.time.format -java.time.temporal -java.time.zone -java.util -java.util.concurrent -java.util.concurrent.atomic -java.util.concurrent.locks -java.util.function -java.util.jar -java.util.logging -java.util.prefs -java.util.regex -java.util.spi -java.util.stream -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.w3c.dom.views -org.xml.sax -org.xml.sax.ext -org.xml.sax.helpers diff --git a/spring-cloud-gateway-sample/target/maven-archiver/pom.properties b/spring-cloud-gateway-sample/target/maven-archiver/pom.properties deleted file mode 100644 index 9e8b47f0..00000000 --- a/spring-cloud-gateway-sample/target/maven-archiver/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Created by Apache Maven 3.5.0 -#Thu Aug 24 01:02:10 UTC 2017 -version=1.0.0.BUILD-SNAPSHOT -groupId=org.springframework.cloud.gateway -artifactId=spring-cloud-gateway-sample diff --git a/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst deleted file mode 100644 index 3960047e..00000000 --- a/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ /dev/null @@ -1 +0,0 @@ -org/springframework/cloud/gateway/sample/GatewaySampleApplication.class diff --git a/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst deleted file mode 100644 index ccad0aa9..00000000 --- a/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ /dev/null @@ -1 +0,0 @@ -/opt/jenkins/data/workspace/spring-cloud-gateway-master-ci/spring-cloud-gateway-sample/src/main/java/org/springframework/cloud/gateway/sample/GatewaySampleApplication.java diff --git a/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst deleted file mode 100644 index 756b0b4f..00000000 --- a/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +++ /dev/null @@ -1 +0,0 @@ -org/springframework/cloud/gateway/sample/GatewaySampleApplicationTests.class diff --git a/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst deleted file mode 100644 index 8f781706..00000000 --- a/spring-cloud-gateway-sample/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +++ /dev/null @@ -1 +0,0 @@ -/opt/jenkins/data/workspace/spring-cloud-gateway-master-ci/spring-cloud-gateway-sample/src/test/java/org/springframework/cloud/gateway/sample/GatewaySampleApplicationTests.java diff --git a/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT-javadoc.jar deleted file mode 100644 index 875574ee..00000000 Binary files a/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ diff --git a/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT-sources.jar deleted file mode 100644 index eba20340..00000000 Binary files a/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ diff --git a/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT.jar b/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT.jar deleted file mode 100644 index 8ef88d8c..00000000 Binary files a/spring-cloud-gateway-sample/target/spring-cloud-gateway-sample-1.0.0.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/spring-cloud-gateway-sample/target/test-classes/org/springframework/cloud/gateway/sample/GatewaySampleApplicationTests.class b/spring-cloud-gateway-sample/target/test-classes/org/springframework/cloud/gateway/sample/GatewaySampleApplicationTests.class deleted file mode 100644 index 0e5eb912..00000000 Binary files a/spring-cloud-gateway-sample/target/test-classes/org/springframework/cloud/gateway/sample/GatewaySampleApplicationTests.class and /dev/null differ diff --git a/target/ghpages.sh b/target/ghpages.sh deleted file mode 100755 index 3c41f8c2..00000000 --- a/target/ghpages.sh +++ /dev/null @@ -1,360 +0,0 @@ -#!/bin/bash -x - -# Usage: (cd ; ghpages.sh -v -b -c) - -set -e - -# Set default props like MAVEN_PATH, ROOT_FOLDER etc. -function set_default_props() { - # The script should be executed from the root folder - ROOT_FOLDER=`pwd` - echo "Current folder is ${ROOT_FOLDER}" - - if [[ ! -e "${ROOT_FOLDER}/.git" ]]; then - echo "You're not in the root folder of the project!" - exit 1 - fi - - # Prop that will let commit the changes - COMMIT_CHANGES="no" - MAVEN_PATH=${MAVEN_PATH:-} - if [ -e "${ROOT_FOLDER}/mvnw" ]; then - MAVEN_EXEC="$ROOT_FOLDER/mvnw" - else - MAVEN_EXEC="${MAVEN_PATH}mvn" - fi - echo "Path to Maven is [${MAVEN_EXEC}]" - if [ -z $REPO_NAME ]; then - REPO_NAME=$(git remote -v | grep origin | head -1 | sed -e 's!.*/!!' -e 's/ .*//' -e 's/\.git.*//') - fi - echo "Repo name is [${REPO_NAME}]" - SPRING_CLOUD_STATIC_REPO=${SPRING_CLOUD_STATIC_REPO:-git@github.com:spring-cloud/spring-cloud-static.git} - echo "Spring Cloud Static repo is [${SPRING_CLOUD_STATIC_REPO}" -} - -# Check if gh-pages exists and docs have been built -function check_if_anything_to_sync() { - git remote set-url --push origin `git config remote.origin.url | sed -e 's/^git:/https:/'` - - if ! (git remote set-branches --add origin gh-pages && git fetch -q) && [[ "${RELEASE_TRAIN}" != "yes" ]] ; then - echo "No gh-pages, so not syncing" - exit 0 - fi - - if ! [ -d docs/target/generated-docs ] && ! [ "${BUILD}" == "yes" ]; then - echo "No gh-pages sources in docs/target/generated-docs, so not syncing" - exit 0 - fi -} - -function retrieve_current_branch() { - # Code getting the name of the current branch. For master we want to publish as we did until now - # http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch - # If there is a branch already passed will reuse it - otherwise will try to find it - CURRENT_BRANCH=${BRANCH} - if [[ -z "${CURRENT_BRANCH}" ]] ; then - CURRENT_BRANCH=$(git symbolic-ref -q HEAD) - CURRENT_BRANCH=${CURRENT_BRANCH##refs/heads/} - CURRENT_BRANCH=${CURRENT_BRANCH:-HEAD} - fi - echo "Current branch is [${CURRENT_BRANCH}]" - git checkout ${CURRENT_BRANCH} || echo "Failed to check the branch... continuing with the script" - PREVIOUS_BRANCH=${CURRENT_BRANCH} -} - -# Switches to the provided value of the release version. We always prefix it with `v` -function switch_to_tag() { - if [[ "${RELEASE_TRAIN}" != "yes" ]] ; then - git checkout v${VERSION} - fi -} - -# Build the docs if switch is on -function build_docs_if_applicable() { - if [[ "${BUILD}" == "yes" ]] ; then - ./mvnw clean install -P docs -pl docs -DskipTests - fi -} - -# Get the name of the `docs.main` property -# Get whitelisted branches - assumes that a `docs` module is available under `docs` profile -function retrieve_doc_properties() { - MAIN_ADOC_VALUE=$("${MAVEN_EXEC}" -q \ - -Dexec.executable="echo" \ - -Dexec.args='${docs.main}' \ - org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \ - -P docs \ - -pl docs | tail -1 ) - echo "Extracted 'main.adoc' from Maven build [${MAIN_ADOC_VALUE}]" - - - WHITELIST_PROPERTY=${WHITELIST_PROPERTY:-"docs.whitelisted.branches"} - WHITELISTED_BRANCHES_VALUE=$("${MAVEN_EXEC}" -q \ - -Dexec.executable="echo" \ - -Dexec.args="\${${WHITELIST_PROPERTY}}" \ - org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \ - -P docs \ - -pl docs | tail -1 ) - echo "Extracted '${WHITELIST_PROPERTY}' from Maven build [${WHITELISTED_BRANCHES_VALUE}]" -} - -# Stash any outstanding changes -function stash_changes() { - git diff-index --quiet HEAD && dirty=$? || (echo "Failed to check if the current repo is dirty. Assuming that it is." && dirty="1") - if [ "$dirty" != "0" ]; then git stash; fi -} - -# Switch to gh-pages branch to sync it with current branch -function add_docs_from_target() { - local DESTINATION_REPO_FOLDER - if [[ -z "${DESTINATION}" && -z "${CLONE}" ]] ; then - DESTINATION_REPO_FOLDER=${ROOT_FOLDER} - elif [[ "${CLONE}" == "yes" ]]; then - mkdir -p ${ROOT_FOLDER}/target - local clonedStatic=${ROOT_FOLDER}/target/spring-cloud-static - if [[ ! -e "${clonedStatic}/.git" ]]; then - echo "Cloning Spring Cloud Static to target" - git clone ${SPRING_CLOUD_STATIC_REPO} ${clonedStatic} && cd ${clonedStatic} && git checkout gh-pages - else - echo "Spring Cloud Static already cloned - will pull changes" - cd ${clonedStatic} && git checkout gh-pages && git pull origin gh-pages - fi - if [[ -z "${RELEASE_TRAIN}" ]] ; then - DESTINATION_REPO_FOLDER=${clonedStatic}/${REPO_NAME} - else - DESTINATION_REPO_FOLDER=${clonedStatic} - fi - mkdir -p ${DESTINATION_REPO_FOLDER} - else - if [[ ! -e "${DESTINATION}/.git" ]]; then - echo "[${DESTINATION}] is not a git repository" - exit 1 - fi - if [[ -z "${RELEASE_TRAIN}" ]] ; then - DESTINATION_REPO_FOLDER=${DESTINATION}/${REPO_NAME} - else - DESTINATION_REPO_FOLDER=${DESTINATION} - fi - mkdir -p ${DESTINATION_REPO_FOLDER} - echo "Destination was provided [${DESTINATION}]" - fi - cd ${DESTINATION_REPO_FOLDER} - git checkout gh-pages - git pull origin gh-pages - - # Add git branches - ################################################################### - if [[ -z "${VERSION}" && -z "${RELEASE_TRAIN}" ]] ; then - copy_docs_for_current_version - else - copy_docs_for_provided_version - fi - commit_changes_if_applicable -} - - -# Copies the docs by using the retrieved properties from Maven build -function copy_docs_for_current_version() { - if [[ "${CURRENT_BRANCH}" == "master" ]] ; then - echo -e "Current branch is master - will copy the current docs only to the root folder" - for f in docs/target/generated-docs/*; do - file=${f#docs/target/generated-docs/*} - if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then - # Not ignored... - cp -rf $f ${ROOT_FOLDER}/ - fi - done - git add -A ${ROOT_FOLDER} - COMMIT_CHANGES="yes" - else - echo -e "Current branch is [${CURRENT_BRANCH}]" - # http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin - if [[ ",${WHITELISTED_BRANCHES_VALUE}," = *",${CURRENT_BRANCH},"* ]] ; then - mkdir -p ${ROOT_FOLDER}/${CURRENT_BRANCH} - echo -e "Branch [${CURRENT_BRANCH}] is whitelisted! Will copy the current docs to the [${CURRENT_BRANCH}] folder" - for f in docs/target/generated-docs/*; do - file=${f#docs/target/generated-docs/*} - if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then - # Not ignored... - # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html - if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then - # We don't want to copy the spring-cloud-sleuth.html - # we want it to be converted to index.html - cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html - git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html - else - cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH} - git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/$file - fi - fi - done - COMMIT_CHANGES="yes" - else - echo -e "Branch [${CURRENT_BRANCH}] is not on the white list! Check out the Maven [${WHITELIST_PROPERTY}] property in - [docs] module available under [docs] profile. Won't commit any changes to gh-pages for this branch." - fi - fi -} - -# Copies the docs by using the explicitly provided version -function copy_docs_for_provided_version() { - local FOLDER=${DESTINATION_REPO_FOLDER}/${VERSION} - mkdir -p ${FOLDER} - echo -e "Current tag is [v${VERSION}] Will copy the current docs to the [${FOLDER}] folder" - for f in ${ROOT_FOLDER}/docs/target/generated-docs/*; do - file=${f#${ROOT_FOLDER}/docs/target/generated-docs/*} - copy_docs_for_branch ${file} ${FOLDER} - done - COMMIT_CHANGES="yes" - CURRENT_BRANCH="v${VERSION}" -} - -# Copies the docs from target to the provided destination -# Params: -# $1 - file from target -# $2 - destination to which copy the files -function copy_docs_for_branch() { - local file=$1 - local destination=$2 - if ! git ls-files -i -o --exclude-standard --directory | grep -q ^${file}$; then - # Not ignored... - # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html - if [[ ("${file}" == "${MAIN_ADOC_VALUE}.html") || ("${file}" == "${REPO_NAME}.html") ]] ; then - # We don't want to copy the spring-cloud-sleuth.html - # we want it to be converted to index.html - cp -rf $f ${destination}/index.html - else - cp -rf $f ${destination} - fi - git add -A ${destination} - fi -} - -function commit_changes_if_applicable() { - if [[ "${COMMIT_CHANGES}" == "yes" ]] ; then - COMMIT_SUCCESSFUL="no" - git commit -a -m "Sync docs from ${CURRENT_BRANCH} to gh-pages" && COMMIT_SUCCESSFUL="yes" || echo "Failed to commit changes" - - # Uncomment the following push if you want to auto push to - # the gh-pages branch whenever you commit to master locally. - # This is a little extreme. Use with care! - ################################################################### - if [[ "${COMMIT_SUCCESSFUL}" == "yes" ]] ; then - git push origin gh-pages - fi - fi -} - -# Switch back to the previous branch and exit block -function checkout_previous_branch() { - # If -version was provided we need to come back to root project - cd ${ROOT_FOLDER} - git checkout ${PREVIOUS_BRANCH} || echo "Failed to check the branch... continuing with the script" - if [ "$dirty" != "0" ]; then git stash pop; fi - exit 0 -} - -# Assert if properties have been properly passed -function assert_properties() { -echo "VERSION [${VERSION}], RELEASE_TRAIN [${RELEASE_TRAIN}], DESTINATION [${DESTINATION}], CLONE [${CLONE}]" -if [[ "${VERSION}" != "" && (-z "${DESTINATION}" && -z "${CLONE}") ]] ; then echo "Version was set but destination / clone was not!"; exit 1;fi -if [[ ("${DESTINATION}" != "" && "${CLONE}" != "") && -z "${VERSION}" ]] ; then echo "Destination / clone was set but version was not!"; exit 1;fi -if [[ "${DESTINATION}" != "" && "${CLONE}" == "yes" ]] ; then echo "Destination and clone was set. Pick one!"; exit 1;fi -if [[ "${RELEASE_TRAIN}" != "" && -z "${VERSION}" ]] ; then echo "Release train was set but no version was passed!"; exit 1;fi -} - -# Prints the usage -function print_usage() { -cat </` -- if the destination switch is passed (-d) then the script will check if the provided dir is a git repo and then will - switch to gh-pages of that repo and copy the generated docs to `docs//` -- if the release train switch is passed (-r) then the script will check if the provided dir is a git repo and then will - switch to gh-pages of that repo and copy the generated docs to `docs/` - -USAGE: - -You can use the following options: - --v|--version - the script will apply the whole procedure for a particular library version --r|--releasetrain - instead of nesting the docs under the project_name/version folder the docs will end up in version --d|--destination - the root of destination folder where the docs should be copied. You have to use the full path. - E.g. point to spring-cloud-static folder. Can't be used with (-c) --b|--build - will run the standard build process after checking out the branch --c|--clone - will automatically clone the spring-cloud-static repo instead of providing the destination. - Obviously can't be used with (-d) - -EOF -} - - -# ========================================== -# ____ ____ _____ _____ _____ _______ -# / ____|/ ____| __ \|_ _| __ \__ __| -# | (___ | | | |__) | | | | |__) | | | -# \___ \| | | _ / | | | ___/ | | -# ____) | |____| | \ \ _| |_| | | | -# |_____/ \_____|_| \_\_____|_| |_| -# -# ========================================== - -while [[ $# > 0 ]] -do -key="$1" -case ${key} in - -v|--version) - VERSION="$2" - shift # past argument - ;; - -r|--releasetrain) - RELEASE_TRAIN="yes" - ;; - -d|--destination) - DESTINATION="$2" - shift # past argument - ;; - -b|--build) - BUILD="yes" - ;; - -c|--clone) - CLONE="yes" - ;; - -h|--help) - print_usage - exit 0 - ;; - *) - echo "Invalid option: [$1]" - print_usage - exit 1 - ;; -esac -shift # past argument or value -done - -assert_properties -set_default_props -check_if_anything_to_sync -retrieve_current_branch -if echo $VERSION | egrep -q 'SNAPSHOT' || [[ -z "${VERSION}" ]]; then - CLONE="" - VERSION="" - echo "You've provided a version variable but it's a snapshot one. Due to this will not clone spring-cloud-static and publish docs over there" -else - switch_to_tag -fi -build_docs_if_applicable -retrieve_doc_properties -stash_changes -add_docs_from_target -checkout_previous_branch