diff --git a/actuator-endpoints.html b/actuator-endpoints.html index 1aa82d2..a5d928e 100644 --- a/actuator-endpoints.html +++ b/actuator-endpoints.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -75,21 +75,21 @@

Actuator endpoints

By default all endpoints are exposed over JMX, but only the info and health endpoints are exposed over HTTP. To expose these custom endpoints over HTTP as well you need to set property management.endpoints.web.exposure.include with all endpoints you want enabled. - See Exposing Endpoints for more information.

+ See Exposing Endpoints for more information.

Logging

ID: connectSdkLogging

-

This actuator endpoint allows you to enable and disable logging during runtime. +

This actuator endpoint allows you to enable and disable logging during runtime. It defines the following operations:

listLoggingCapableAndLoggerBeans

-

Lists all available LoggingCapable - and CommunicatorLogger beans.

+

Lists all available LoggingCapable + and CommunicatorLogger beans.

HTTP endpoint example:

@@ -99,9 +99,9 @@

listLoggingCapableAndLoggerBe

enableLogging

-

Enables logging on all LoggingCapable beans.

+

Enables logging on all LoggingCapable beans.

-

By default all available CommunicatorLogger beans will be used in a compound logger. +

By default all available CommunicatorLogger beans will be used in a compound logger. By providing argument logger you can specify a single CommunicatorLogger instead.

HTTP endpoint examples:

@@ -114,9 +114,9 @@

enableLogging

enableLoggingOnBean

-

Enables logging on a specific LoggingCapable bean.

+

Enables logging on a specific LoggingCapable bean.

-

By default all available CommunicatorLogger beans will be used in a compound logger. +

By default all available CommunicatorLogger beans will be used in a compound logger. By providing argument logger you can specify a single CommunicatorLogger instead.

HTTP endpoint examples:

@@ -129,7 +129,7 @@

enableLoggingOnBean

disableLogging

-

Disables logging on all LoggingCapable beans.

+

Disables logging on all LoggingCapable beans.

HTTP endpoint example:

@@ -139,7 +139,7 @@

disableLogging

disableLoggingOnBean

-

Disables logging on a specific LoggingCapable bean.

+

Disables logging on a specific LoggingCapable bean.

HTTP endpoint example:

@@ -154,9 +154,9 @@

Connections

ID: connectSdkConnections

This actuator endpoint allows you to call closeIdleConnections and closeExpiredConnections on beans of types - PooledConnection, - Communicator and - Client. + PooledConnection, + Communicator and + Client. It defines the following operations:

@@ -173,9 +173,9 @@

listCloseableBeans

closeConnections

Closes connections for all available - PooledConnection, - Communicator and - Client beans.

+ PooledConnection, + Communicator and + Client beans.

Argument idleTime is optional, and defaults to the value of the connect.api.close-idle-connections.idle-time property. It can be specified as a duration in the Spring Boot supported format.

@@ -195,9 +195,9 @@

closeConnections

closeConnectionsForBean

Closes connections for a specific - PooledConnection, - Communicator or - Client bean.

+ PooledConnection, + Communicator or + Client bean.

Argument idleTime is optional, and defaults to the value of the connect.api.close-idle-connections.idle-time property. It can be specified as a duration in the Spring Boot supported format.

@@ -226,13 +226,12 @@

Authentication

setApiKey

-

Changes the API key id, secret API key and authorization type (defaults to V1HMAC) of the auto-configured Authenticator.

+

Changes the API key id and secret API key of the auto-configured v1HMAC Authenticator.

HTTP endpoint example:

-
curl -X POST http://<host>/actuator/connectSdkApiKey -H Content-Type:application/json -d '{"apiKeyId": "myApiKeyId", "secretApiKey": "mySecretKeyId"}'
-curl -X POST http://<host>/actuator/connectSdkApiKey -H Content-Type:application/json -d '{"apiKeyId": "myApiKeyId", "secretApiKey": "mySecretKeyId", "authorizationType": "V1HMAC"}'
+
curl -X POST http://<host>/actuator/connectSdkApiKey -H Content-Type:application/json -d '{"apiKeyId": "myApiKeyId", "secretApiKey": "mySecretKeyId"}'
@@ -243,7 +242,7 @@

setApiKey

+
+
- -
-
- + - -
- - -
Skip navigation links
- - - - -
- - -

Copyright © 2019–2023. All rights reserved.

diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectSdkHealthIndicator.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectSdkHealthIndicator.html index d956e25..b10dd9c 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectSdkHealthIndicator.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectSdkHealthIndicator.html @@ -1,317 +1,196 @@ - - + - + +ConnectSdkHealthIndicator (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkHealthIndicator (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
+ +
+
-
com.github.robtimus.connect.sdk.java.springboot.actuator
-

Class ConnectSdkHealthIndicator

+ +

Class ConnectSdkHealthIndicator

-
- -
- -
-
-
+
+ - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    protected void
    + +
     
    +
    +
    +
    +
    +

    Methods inherited from class org.springframework.boot.actuate.health.AbstractHealthIndicator

    +health
    +
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
    +

    Methods inherited from interface org.springframework.boot.actuate.health.HealthIndicator

    +getHealth
    +
  • -
    -
    -
    -
    + - -
    - - -
    Skip navigation links
    - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.BeanNotCloseableException.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.BeanNotCloseableException.html index 4772b12..77774d9 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.BeanNotCloseableException.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.BeanNotCloseableException.html @@ -1,302 +1,176 @@ - - + - + +ConnectionsEndpoint.BeanNotCloseableException (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectionsEndpoint.BeanNotCloseableException (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.actuator
    -

    Class ConnectionsEndpoint.BeanNotCloseableException

    + +

    Class ConnectionsEndpoint.BeanNotCloseableException

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

      getActualType

      -
      public Class<?> getActualType()
      + +
      +
        + +
      • +
        +

        Method Details

        +
          +
        • +
          +

          getBeanName

          +
          public String getBeanName()
          +
        • -
        +
      • +
        +

        getActualType

        +
        public Class<?> getActualType()
        +
      +
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.CloseableBeans.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.CloseableBeans.html index 3d4785b..649269c 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.CloseableBeans.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.CloseableBeans.html @@ -1,302 +1,184 @@ - - + - + +ConnectionsEndpoint.CloseableBeans (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectionsEndpoint.CloseableBeans (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.actuator
    -

    Class ConnectionsEndpoint.CloseableBeans

    + +

    Class ConnectionsEndpoint.CloseableBeans

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            CloseableBeans

            -
            public CloseableBeans()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              CloseableBeans

              +
              public CloseableBeans()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getConnections

              -
              public List<String> getConnections()
              -
            • -
            - - - -
              -
            • -

              getCommunicators

              -
              public List<String> getCommunicators()
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getConnections

                +
                public List<String> getConnections()
                +
              • -
              - - - -
                -
              • -

                getClients

                -
                public List<String> getClients()
                +
              • +
                +

                getCommunicators

                +
                public List<String> getCommunicators()
                +
              • -
              +
            • +
              +

              getClients

              +
              public List<String> getClients()
              +
            +
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.CloseableConnectionState.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.CloseableConnectionState.html index 95de28a..2dbc1c3 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.CloseableConnectionState.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.CloseableConnectionState.html @@ -1,352 +1,231 @@ - - + - + +ConnectionsEndpoint.CloseableConnectionState (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectionsEndpoint.CloseableConnectionState (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.actuator
    -

    Enum ConnectionsEndpoint.CloseableConnectionState

    + +

    Enum Class ConnectionsEndpoint.CloseableConnectionState

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

        Enum Constant Summary

        - - - - - - - - - - - -
        Enum Constants 
        Enum Constant and Description
        EXPIRED +
      • +
        +

        Enum Constant Summary

        +
        Enum Constants
        +
        +
        Enum Constant
        +
        Description
        + +
        Only close expired connections.
        -
      • IDLE + + +
        Only close idle connections.
        -
        +
    +
    + - - +
    +
    + + +
    +

    Methods inherited from class java.lang.Enum

    +clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
    +
    +

    Methods inherited from class java.lang.Object

    +getClass, notify, notifyAll, wait, wait, wait
    + - -
    -
    - + - -
    - - -
    Skip navigation links
    - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.html index 8b9b138..a9fe47f 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/ConnectionsEndpoint.html @@ -1,484 +1,253 @@ - - + - + +ConnectionsEndpoint (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectionsEndpoint (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.actuator
    -

    Class ConnectionsEndpoint

    + +

    Class ConnectionsEndpoint

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint
      • -
      -
    • -
    -
    - -
    -
    -
    +
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    + -
    -
    -
    -
    + - -
    - - - - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/LoggingEndpoint.LoggingCapableAndLoggerBeans.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/LoggingEndpoint.LoggingCapableAndLoggerBeans.html index 4ca0b97..54fbd79 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/LoggingEndpoint.LoggingCapableAndLoggerBeans.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/LoggingEndpoint.LoggingCapableAndLoggerBeans.html @@ -1,315 +1,193 @@ - - + - + +LoggingEndpoint.LoggingCapableAndLoggerBeans (connect-sdk-java-spring-boot-starter 4.0 API) + -LoggingEndpoint.LoggingCapableAndLoggerBeans (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.actuator
    -

    Class LoggingEndpoint.LoggingCapableAndLoggerBeans

    + +

    Class LoggingEndpoint.LoggingCapableAndLoggerBeans

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
      • -
      -
    • -
    -
    -
      -
    • -
      +
      java.lang.Object +
      com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
      +
      +
      +
      Enclosing class:
      -
      LoggingEndpoint
      +
      LoggingEndpoint

      -
      -
      public static class LoggingEndpoint.LoggingCapableAndLoggerBeans
      -extends Object
      -
    • -
    -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            LoggingCapableAndLoggerBeans

            -
            public LoggingCapableAndLoggerBeans()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              LoggingCapableAndLoggerBeans

              +
              public LoggingCapableAndLoggerBeans()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getConnections

              -
              public List<String> getConnections()
              -
            • -
            - - - -
              -
            • -

              getCommunicators

              -
              public List<String> getCommunicators()
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getConnections

                +
                public List<String> getConnections()
                +
              • -
              - - - -
                -
              • -

                getClients

                -
                public List<String> getClients()
                +
              • +
                +

                getCommunicators

                +
                public List<String> getCommunicators()
                +
              • -
              - - - -
                -
              • -

                getLoggers

                -
                public List<String> getLoggers()
                +
              • +
                +

                getClients

                +
                public List<String> getClients()
                +
              • -
              +
            • +
              +

              getLoggers

              +
              public List<String> getLoggers()
              +
            +
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/LoggingEndpoint.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/LoggingEndpoint.html index 1d41949..4875d92 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/LoggingEndpoint.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/LoggingEndpoint.html @@ -1,392 +1,263 @@ - - + - + +LoggingEndpoint (connect-sdk-java-spring-boot-starter 4.0 API) + -LoggingEndpoint (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.actuator
    -

    Class LoggingEndpoint

    + +

    Class LoggingEndpoint

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ApiKeyEndpoint.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ApiKeyEndpoint.html index 9efbebb..2dabe33 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ApiKeyEndpoint.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ApiKeyEndpoint.html @@ -1,167 +1,88 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ApiKeyEndpoint (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ApiKeyEndpoint (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ApiKeyEndpoint

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ApiKeyEndpoint

    -
    - +
    Packages that use ApiKeyEndpoint
    +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectSdkHealthIndicator.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectSdkHealthIndicator.html index e45e0ed..16a29d4 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectSdkHealthIndicator.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectSdkHealthIndicator.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.BeanNotCloseableException.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.BeanNotCloseableException.html index 62b4cf7..f210ce5 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.BeanNotCloseableException.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.BeanNotCloseableException.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.CloseableBeans.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.CloseableBeans.html index 33358ac..b742af7 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.CloseableBeans.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.CloseableBeans.html @@ -1,167 +1,88 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans

    -
    - + +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot actuator support for connect-sdk-java.
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.CloseableConnectionState.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.CloseableConnectionState.html index 8ea5ed9..74a9949 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.CloseableConnectionState.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.CloseableConnectionState.html @@ -1,200 +1,115 @@ - - + - + +Uses of Enum Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState

    +

    Uses of Enum Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState

    -
    -
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.html index a372ab7..3e13b6b 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/ConnectionsEndpoint.html @@ -1,168 +1,89 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint

    -
    - +
    Packages that use ConnectionsEndpoint
    +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    + +
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/LoggingEndpoint.LoggingCapableAndLoggerBeans.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/LoggingEndpoint.LoggingCapableAndLoggerBeans.html index 7ad90ce..2654c44 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/LoggingEndpoint.LoggingCapableAndLoggerBeans.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/LoggingEndpoint.LoggingCapableAndLoggerBeans.html @@ -1,167 +1,88 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans

    -
    - + +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot actuator support for connect-sdk-java.
    - - -
    + +
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/LoggingEndpoint.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/LoggingEndpoint.html index dafd043..8d29fd1 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/LoggingEndpoint.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/class-use/LoggingEndpoint.html @@ -1,167 +1,88 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint

    -
    - +
    Packages that use LoggingEndpoint
    +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    + +
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-frame.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-frame.html deleted file mode 100644 index dcfb484..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-frame.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - -com.github.robtimus.connect.sdk.java.springboot.actuator (connect-sdk-java-spring-boot-starter 3.8 API) - - - - -

    com.github.robtimus.connect.sdk.java.springboot.actuator

    -
    -

    Classes

    - -

    Enums

    - -

    Exceptions

    - -
    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-summary.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-summary.html index 7a78f46..fbb9a9a 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-summary.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-summary.html @@ -1,210 +1,139 @@ - - + - + +com.github.robtimus.connect.sdk.java.springboot.actuator (connect-sdk-java-spring-boot-starter 4.0 API) + -com.github.robtimus.connect.sdk.java.springboot.actuator (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Package com.github.robtimus.connect.sdk.java.springboot.actuator

    -
    -
    Spring Boot actuator support for connect-sdk-java.
    -
    -

    See: Description

    -
    -
    -
    +
    +
    package com.github.robtimus.connect.sdk.java.springboot.actuator
    +
    +
    Spring Boot actuator support for connect-sdk-java.
    +
    +
    + - - - -

    Package com.github.robtimus.connect.sdk.java.springboot.actuator Description

    -
    Spring Boot actuator support for connect-sdk-java.
    -
    - -
    - - - - - - - + + + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-tree.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-tree.html index a5e3b1c..0d6a758 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-tree.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-tree.html @@ -1,107 +1,85 @@ - - + - + +com.github.robtimus.connect.sdk.java.springboot.actuator Class Hierarchy (connect-sdk-java-spring-boot-starter 4.0 API) + -com.github.robtimus.connect.sdk.java.springboot.actuator Class Hierarchy (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Hierarchy For Package com.github.robtimus.connect.sdk.java.springboot.actuator

    -Package Hierarchies: +Package Hierarchies:
    -
    +

    Class Hierarchy

    +
    +

    Enum Class Hierarchy

    +
    +
    +
    +
    + +
    - -
    - - - - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-use.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-use.html index d06bcf2..cd98720 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-use.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/actuator/package-use.html @@ -1,199 +1,115 @@ - - + - + +Uses of Package com.github.robtimus.connect.sdk.java.springboot.actuator (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Package com.github.robtimus.connect.sdk.java.springboot.actuator (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Uses of Package
    com.github.robtimus.connect.sdk.java.springboot.actuator

    -
    - -
    - + +
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkAuthenticatorAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkAuthenticatorAutoConfiguration.html index 1a78f88..7008c13 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkAuthenticatorAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkAuthenticatorAutoConfiguration.html @@ -1,301 +1,187 @@ - - + - + +ConnectSdkAuthenticatorAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkAuthenticatorAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkAuthenticatorAutoConfiguration

    + +

    Class ConnectSdkAuthenticatorAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
      • -
      -
    • -
    -
    - -
    -
    -
    -
    - -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkClientAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkClientAutoConfiguration.html index 7787f6b..030e2a2 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkClientAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkClientAutoConfiguration.html @@ -1,283 +1,173 @@ - - + - + +ConnectSdkClientAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkClientAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkClientAutoConfiguration

    + +

    Class ConnectSdkClientAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration
      • -
      -
    • -
    - -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ConnectSdkClientAutoConfiguration

            -
            public ConnectSdkClientAutoConfiguration()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ConnectSdkClientAutoConfiguration

              +
              public ConnectSdkClientAutoConfiguration()
              +
            +
          • -
          - -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkCommunicatorAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkCommunicatorAutoConfiguration.html index 4d11138..4538734 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkCommunicatorAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkCommunicatorAutoConfiguration.html @@ -1,285 +1,182 @@ - - + - + +ConnectSdkCommunicatorAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkCommunicatorAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkCommunicatorAutoConfiguration

    + +

    Class ConnectSdkCommunicatorAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration
      • -
      -
    • -
    - -
    -
    -
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkCommunicatorLoggerAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkCommunicatorLoggerAutoConfiguration.html index 66ff871..495d6e0 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkCommunicatorLoggerAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkCommunicatorLoggerAutoConfiguration.html @@ -1,290 +1,180 @@ - - + - + +ConnectSdkCommunicatorLoggerAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkCommunicatorLoggerAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkCommunicatorLoggerAutoConfiguration

    + +

    Class ConnectSdkCommunicatorLoggerAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ConnectSdkCommunicatorLoggerAutoConfiguration

            -
            public ConnectSdkCommunicatorLoggerAutoConfiguration()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ConnectSdkCommunicatorLoggerAutoConfiguration

              +
              public ConnectSdkCommunicatorLoggerAutoConfiguration()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              connectSdkCommunicatorLogger

              -
              @Bean
              -public CommunicatorLogger connectSdkCommunicatorLogger(@Value(value="${connect.api.logger.name:com.ingenico.connect.gateway.sdk.java.Communicator}")
              -                                                             String loggerName,
              -                                                             @Value(value="${connect.api.logger.level:INFO}")
              -                                                             String logLevel,
              -                                                             @Value(value="${connect.api.logger.errorLevel:ERROR}")
              -                                                             String errorLogLevel)
              -
            • -
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              connectSdkCommunicatorLogger

              +
              @Bean +public CommunicatorLogger connectSdkCommunicatorLogger(@Value("${connect.api.logger.name:com.worldline.connect.sdk.java.Communicator}") + String loggerName, + @Value("${connect.api.logger.level:INFO}") + String logLevel, + @Value("${connect.api.logger.errorLevel:ERROR}") + String errorLogLevel)
              +
            +
          -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkConnectionAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkConnectionAutoConfiguration.html index b4473cc..5fcf2dd 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkConnectionAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkConnectionAutoConfiguration.html @@ -1,311 +1,177 @@ - - + - + +ConnectSdkConnectionAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkConnectionAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkConnectionAutoConfiguration

    + +

    Class ConnectSdkConnectionAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration
      • -
      -
    • -
    -
    - -
    -
    -
    +
    +
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    + -
    -
    -
    -
    + - -
    - - -
    Skip navigation links
    - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkConnectionsEndpointAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkConnectionsEndpointAutoConfiguration.html index fd16149..045753b 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkConnectionsEndpointAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkConnectionsEndpointAutoConfiguration.html @@ -1,286 +1,176 @@ - - + - + +ConnectSdkConnectionsEndpointAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkConnectionsEndpointAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkConnectionsEndpointAutoConfiguration

    + +

    Class ConnectSdkConnectionsEndpointAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration
      • -
      -
    • -
    - -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ConnectSdkConnectionsEndpointAutoConfiguration

            -
            public ConnectSdkConnectionsEndpointAutoConfiguration()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ConnectSdkConnectionsEndpointAutoConfiguration

              +
              public ConnectSdkConnectionsEndpointAutoConfiguration()
              +
            +
          • -
          - -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkHealthIndicatorAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkHealthIndicatorAutoConfiguration.html index 5f57d9f..3031bea 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkHealthIndicatorAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkHealthIndicatorAutoConfiguration.html @@ -1,288 +1,178 @@ - - + - + +ConnectSdkHealthIndicatorAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkHealthIndicatorAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkHealthIndicatorAutoConfiguration

    + +

    Class ConnectSdkHealthIndicatorAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration
      • -
      -
    • -
    - -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ConnectSdkHealthIndicatorAutoConfiguration

            -
            public ConnectSdkHealthIndicatorAutoConfiguration()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ConnectSdkHealthIndicatorAutoConfiguration

              +
              public ConnectSdkHealthIndicatorAutoConfiguration()
              +
            +
          • -
          - -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkLoggingEndpointAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkLoggingEndpointAutoConfiguration.html index 93584ac..a308623 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkLoggingEndpointAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkLoggingEndpointAutoConfiguration.html @@ -1,283 +1,173 @@ - - + - + +ConnectSdkLoggingEndpointAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkLoggingEndpointAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkLoggingEndpointAutoConfiguration

    + +

    Class ConnectSdkLoggingEndpointAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration
      • -
      -
    • -
    - -
    -
    -
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMarshallerAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMarshallerAutoConfiguration.html index 79c64cf..f0d84ac 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMarshallerAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMarshallerAutoConfiguration.html @@ -1,281 +1,171 @@ - - + - + +ConnectSdkMarshallerAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkMarshallerAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkMarshallerAutoConfiguration

    + +

    Class ConnectSdkMarshallerAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ConnectSdkMarshallerAutoConfiguration

            -
            public ConnectSdkMarshallerAutoConfiguration()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ConnectSdkMarshallerAutoConfiguration

              +
              public ConnectSdkMarshallerAutoConfiguration()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              connectSdkMarshaller

              -
              @Bean
              -public Marshaller connectSdkMarshaller()
              -
            • -
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              connectSdkMarshaller

              +
              @Bean +public Marshaller connectSdkMarshaller()
              +
            +
          -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMerchantClientAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMerchantClientAutoConfiguration.html index 958faab..7a9950f 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMerchantClientAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMerchantClientAutoConfiguration.html @@ -1,288 +1,178 @@ - - + - + +ConnectSdkMerchantClientAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkMerchantClientAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkMerchantClientAutoConfiguration

    + +

    Class ConnectSdkMerchantClientAutoConfiguration

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration
      • -
      -
    • -
    - -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ConnectSdkMerchantClientAutoConfiguration

            -
            public ConnectSdkMerchantClientAutoConfiguration()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ConnectSdkMerchantClientAutoConfiguration

              +
              public ConnectSdkMerchantClientAutoConfiguration()
              +
            +
          • -
          - -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMetaDataProviderAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMetaDataProviderAutoConfiguration.html deleted file mode 100644 index 621b540..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMetaDataProviderAutoConfiguration.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - -ConnectSdkMetaDataProviderAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - -
    - - -
    Skip navigation links
    - - - - -
    - - - -
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkMetaDataProviderAutoConfiguration

    -
    -
    - -
    - -
    -
    - -
    -
    - -
    -
    - - -
    - - -
    Skip navigation links
    - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMetadataProviderAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMetadataProviderAutoConfiguration.html new file mode 100644 index 0000000..7c3c992 --- /dev/null +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkMetadataProviderAutoConfiguration.html @@ -0,0 +1,174 @@ + + + + +ConnectSdkMetadataProviderAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class ConnectSdkMetadataProviderAutoConfiguration

    +
    +
    java.lang.Object +
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetadataProviderAutoConfiguration
    +
    +
    +
    + + +
    +
    Author:
    +
    Rob Spoor
    +
    +
    +
    + +
    +
    + +
    + +
    + +
    +
    + + diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.Endpoint.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.Endpoint.html index 5379530..8ced6ea 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.Endpoint.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.Endpoint.html @@ -1,341 +1,211 @@ - - + - + +ConnectSdkProperties.Endpoint (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkProperties.Endpoint (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkProperties.Endpoint

    + +

    Class ConnectSdkProperties.Endpoint

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Endpoint

            -
            public Endpoint()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Endpoint

              +
              public Endpoint()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getHost

              -
              public String getHost()
              -
            • -
            - - - -
              -
            • -

              setHost

              -
              public void setHost(String host)
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getHost

                +
                public String getHost()
                +
              • -
              - - - -
                -
              • -

                getScheme

                -
                public String getScheme()
                +
              • +
                +

                setHost

                +
                public void setHost(String host)
                +
              • -
              - - - -
                -
              • -

                setScheme

                -
                public void setScheme(String scheme)
                +
              • +
                +

                getScheme

                +
                public String getScheme()
                +
              • -
              - - - -
                -
              • -

                getPort

                -
                public int getPort()
                +
              • +
                +

                setScheme

                +
                public void setScheme(String scheme)
                +
              • -
              - - - -
                -
              • -

                setPort

                -
                public void setPort(int port)
                +
              • +
                +

                getPort

                +
                public int getPort()
                +
              • -
              +
            • +
              +

              setPort

              +
              public void setPort(int port)
              +
            +
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.HTTPS.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.HTTPS.html index 6834193..55a2e24 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.HTTPS.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.HTTPS.html @@ -1,289 +1,175 @@ - - + - + +ConnectSdkProperties.HTTPS (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkProperties.HTTPS (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkProperties.HTTPS

    + +

    Class ConnectSdkProperties.HTTPS

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            HTTPS

            -
            public HTTPS()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              HTTPS

              +
              public HTTPS()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getProtocols

              -
              public List<String> getProtocols()
              -
            • -
            - - - -
              -
            • -

              setProtocols

              -
              public void setProtocols(List<String> protocols)
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getProtocols

                +
                public List<String> getProtocols()
                +
              • -
              +
            • +
              +

              setProtocols

              +
              public void setProtocols(List<String> protocols)
              +
            +
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.Proxy.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.Proxy.html index 279c896..e960618 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.Proxy.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.Proxy.html @@ -1,341 +1,211 @@ - - + - + +ConnectSdkProperties.Proxy (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkProperties.Proxy (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkProperties.Proxy

    + +

    Class ConnectSdkProperties.Proxy

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Proxy

            -
            public Proxy()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Proxy

              +
              public Proxy()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getUri

              -
              public String getUri()
              -
            • -
            - - - -
              -
            • -

              setUri

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

              Method Details

              +
                +
              • +
                +

                getUri

                +
                public String getUri()
                +
              • -
              - - - -
                -
              • -

                getUsername

                -
                public String getUsername()
                +
              • +
                +

                setUri

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

                setUsername

                -
                public void setUsername(String username)
                +
              • +
                +

                getUsername

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

                getPassword

                -
                public String getPassword()
                +
              • +
                +

                setUsername

                +
                public void setUsername(String username)
                +
              • -
              - - - -
                -
              • -

                setPassword

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

                getPassword

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

              setPassword

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

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.ShoppingCartExtension.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.ShoppingCartExtension.html index 05a4718..21083af 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.ShoppingCartExtension.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.ShoppingCartExtension.html @@ -1,367 +1,229 @@ - - + - + +ConnectSdkProperties.ShoppingCartExtension (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkProperties.ShoppingCartExtension (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkProperties.ShoppingCartExtension

    + +

    Class ConnectSdkProperties.ShoppingCartExtension

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ShoppingCartExtension

            -
            public ShoppingCartExtension()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ShoppingCartExtension

              +
              public ShoppingCartExtension()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getCreator

              -
              public String getCreator()
              -
            • -
            - - - -
              -
            • -

              setCreator

              -
              public void setCreator(String creator)
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getCreator

                +
                public String getCreator()
                +
              • -
              - - - -
                -
              • -

                getName

                -
                public String getName()
                +
              • +
                +

                setCreator

                +
                public void setCreator(String creator)
                +
              • -
              - - - -
                -
              • -

                setName

                -
                public void setName(String name)
                +
              • +
                +

                getName

                +
                public String getName()
                +
              • -
              - - - -
                -
              • -

                getVersion

                -
                public String getVersion()
                +
              • +
                +

                setName

                +
                public void setName(String name)
                +
              • -
              - - - -
                -
              • -

                setVersion

                -
                public void setVersion(String version)
                +
              • +
                +

                getVersion

                +
                public String getVersion()
                +
              • -
              - - - -
                -
              • -

                getExtensionId

                -
                public String getExtensionId()
                +
              • +
                +

                setVersion

                +
                public void setVersion(String version)
                +
              • -
              - - - -
                -
              • -

                setExtensionId

                -
                public void setExtensionId(String extensionId)
                +
              • +
                +

                getExtensionId

                +
                public String getExtensionId()
                +
              • -
              +
            • +
              +

              setExtensionId

              +
              public void setExtensionId(String extensionId)
              +
            +
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.html index 8b42db2..f8b8aca 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkProperties.html @@ -1,609 +1,400 @@ - - + - + +ConnectSdkProperties (connect-sdk-java-spring-boot-starter 4.0 API) + -ConnectSdkProperties (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkProperties

    + +

    Class ConnectSdkProperties

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
      • -
      -
    • -
    -
    - -
    -
    -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ConnectSdkProperties

            -
            public ConnectSdkProperties()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ConnectSdkProperties

              +
              public ConnectSdkProperties()
              +
            +
          • -
          -
            -
          • - - -

            Method Detail

            - - - - - - - -
              -
            • -

              setEndpoint

              -
              public void setEndpoint(ConnectSdkProperties.Endpoint endpoint)
              +
            • +
              +

              Method Details

              + - - - - - - - -
                -
              • -

                setConnectTimeout

                -
                public void setConnectTimeout(int connectTimeout)
                +
              • +
                +

                getConnectTimeout

                +
                public int getConnectTimeout()
                +
              • -
              - - - -
                -
              • -

                getSocketTimeout

                -
                public int getSocketTimeout()
                +
              • +
                +

                setConnectTimeout

                +
                public void setConnectTimeout(int connectTimeout)
                +
              • -
              - - - -
                -
              • -

                setSocketTimeout

                -
                public void setSocketTimeout(int socketTimeout)
                +
              • +
                +

                getSocketTimeout

                +
                public int getSocketTimeout()
                +
              • -
              - - - -
                -
              • -

                getMaxConnections

                -
                public int getMaxConnections()
                +
              • +
                +

                setSocketTimeout

                +
                public void setSocketTimeout(int socketTimeout)
                +
              • -
              - - - -
                -
              • -

                setMaxConnections

                -
                public void setMaxConnections(int maxConnections)
                +
              • +
                +

                getMaxConnections

                +
                public int getMaxConnections()
                +
              • -
              - - - -
                -
              • -

                isConnectionReuse

                -
                public boolean isConnectionReuse()
                +
              • +
                +

                setMaxConnections

                +
                public void setMaxConnections(int maxConnections)
                +
              • -
              - - - -
                -
              • -

                setConnectionReuse

                -
                public void setConnectionReuse(boolean connectionReuse)
                +
              • +
                +

                isConnectionReuse

                +
                public boolean isConnectionReuse()
                +
              • -
              - - - -
                -
              • -

                getAuthorizationType

                -
                public AuthorizationType getAuthorizationType()
                +
              • +
                +

                setConnectionReuse

                +
                public void setConnectionReuse(boolean connectionReuse)
                +
              • -
              - - - -
                -
              • -

                setAuthorizationType

                -
                public void setAuthorizationType(AuthorizationType authorizationType)
                +
              • +
                +

                getAuthorizationType

                +
                public AuthorizationType getAuthorizationType()
                +
              • -
              - - - -
                -
              • -

                getApiKeyId

                -
                public String getApiKeyId()
                +
              • +
                +

                setAuthorizationType

                +
                public void setAuthorizationType(AuthorizationType authorizationType)
                +
              • -
              - - - -
                -
              • -

                setApiKeyId

                -
                public void setApiKeyId(String apiKeyId)
                +
              • +
                +

                getAuthorizationId

                +
                public String getAuthorizationId()
                +
              • -
              - - - -
                -
              • -

                getSecretApiKey

                -
                public String getSecretApiKey()
                +
              • +
                +

                setAuthorizationId

                +
                public void setAuthorizationId(String authorizationId)
                +
              • -
              - - - -
                -
              • -

                setSecretApiKey

                -
                public void setSecretApiKey(String secretApiKey)
                +
              • +
                +

                getAuthorizationSecret

                +
                public String getAuthorizationSecret()
                +
              • -
              - - - - - - - - - - - - - - - - - - - - - - - -
                -
              • -

                setIntegrator

                -
                public void setIntegrator(String integrator)
                +
              • +
                +

                getIntegrator

                +
                public String getIntegrator()
                +
              • -
              - - - - - - - - +
            • +
              +

              setShoppingCartExtension

              +
              public void setShoppingCartExtension(ConnectSdkProperties.ShoppingCartExtension shoppingCartExtension)
              +
            +
    -
    -
    + - - -
    +
    +
    + +
    -
    - -
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkSessionAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkSessionAutoConfiguration.html deleted file mode 100644 index 992e214..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkSessionAutoConfiguration.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - -ConnectSdkSessionAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - -
    - - -
    Skip navigation links
    - - - - -
    - - - -
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Class ConnectSdkSessionAutoConfiguration

    -
    -
    - -
    - -
    -
    - -
    -
    - -
    -
    - - -
    - - -
    Skip navigation links
    - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkVersionClientAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkVersionClientAutoConfiguration.html new file mode 100644 index 0000000..ef1c70b --- /dev/null +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/ConnectSdkVersionClientAutoConfiguration.html @@ -0,0 +1,175 @@ + + + + +ConnectSdkVersionClientAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class ConnectSdkVersionClientAutoConfiguration

    +
    +
    java.lang.Object +
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkVersionClientAutoConfiguration
    +
    +
    +
    + +
    Auto-configuration for version-specific clients for + connect-sdk-java.
    +
    +
    Author:
    +
    Rob Spoor
    +
    Since:
    +
    4.0
    +
    +
    +
    + +
    +
    + +
    + +
    + +
    +
    + + diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/MetaDataProviderBuilderCustomizer.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/MetaDataProviderBuilderCustomizer.html deleted file mode 100644 index c1a005f..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/MetaDataProviderBuilderCustomizer.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - -MetaDataProviderBuilderCustomizer (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - -
    - - -
    Skip navigation links
    - - - - -
    - - - -
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -

    Interface MetaDataProviderBuilderCustomizer

    -
    -
    -
    - -
    -
    - -
    -
    - -
    -
    - - -
    - - -
    Skip navigation links
    - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/MetadataProviderBuilderCustomizer.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/MetadataProviderBuilderCustomizer.html new file mode 100644 index 0000000..788be4b --- /dev/null +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/MetadataProviderBuilderCustomizer.html @@ -0,0 +1,145 @@ + + + + +MetadataProviderBuilderCustomizer (connect-sdk-java-spring-boot-starter 4.0 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface MetadataProviderBuilderCustomizer

    +
    +
    +
    +
    Functional Interface:
    +
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
    +
    +
    +
    @FunctionalInterface +public interface MetadataProviderBuilderCustomizer
    +
    Callback interface that can be implemented by beans wishing to customize the MetadataProvider whilst retaining default auto-configuration.
    +
    +
    Author:
    +
    Rob Spoor
    +
    +
    +
    + +
    +
    + +
    + +
    + +
    +
    + + diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkAuthenticatorAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkAuthenticatorAutoConfiguration.html index 15c14b0..76c025b 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkAuthenticatorAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkAuthenticatorAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkClientAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkClientAutoConfiguration.html index b2e81b2..c0ba9ff 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkClientAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkClientAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkCommunicatorAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkCommunicatorAutoConfiguration.html index 09de882..10f8ef5 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkCommunicatorAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkCommunicatorAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkCommunicatorLoggerAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkCommunicatorLoggerAutoConfiguration.html index a933fd1..476bfff 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkCommunicatorLoggerAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkCommunicatorLoggerAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkConnectionAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkConnectionAutoConfiguration.html index 75f19f7..0e15dad 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkConnectionAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkConnectionAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkConnectionsEndpointAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkConnectionsEndpointAutoConfiguration.html index 70fc6b6..78fcb4f 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkConnectionsEndpointAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkConnectionsEndpointAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkHealthIndicatorAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkHealthIndicatorAutoConfiguration.html index 73b9fc7..489e598 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkHealthIndicatorAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkHealthIndicatorAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkLoggingEndpointAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkLoggingEndpointAutoConfiguration.html index 7a997a3..26c8453 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkLoggingEndpointAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkLoggingEndpointAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMarshallerAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMarshallerAutoConfiguration.html index 6b4de70..e3d4780 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMarshallerAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMarshallerAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMerchantClientAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMerchantClientAutoConfiguration.html index 0710e5e..1c4cf5b 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMerchantClientAutoConfiguration.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMerchantClientAutoConfiguration.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMetaDataProviderAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMetaDataProviderAutoConfiguration.html deleted file mode 100644 index 9b3d87c..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMetaDataProviderAutoConfiguration.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetaDataProviderAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - - - - -
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetaDataProviderAutoConfiguration

    -
    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetaDataProviderAutoConfiguration
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMetadataProviderAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMetadataProviderAutoConfiguration.html new file mode 100644 index 0000000..44915ea --- /dev/null +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkMetadataProviderAutoConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetadataProviderAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetadataProviderAutoConfiguration

    +
    +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetadataProviderAutoConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.Endpoint.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.Endpoint.html index 4bf9923..9eac150 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.Endpoint.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.Endpoint.html @@ -1,180 +1,97 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint

    -
    - + +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.HTTPS.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.HTTPS.html index 39b74b7..a072c0f 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.HTTPS.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.HTTPS.html @@ -1,180 +1,97 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS

    -
    - +
    Packages that use ConnectSdkProperties.HTTPS
    +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.Proxy.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.Proxy.html index 6a74ae2..d62e949 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.Proxy.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.Proxy.html @@ -1,180 +1,97 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy

    -
    - +
    Packages that use ConnectSdkProperties.Proxy
    +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.ShoppingCartExtension.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.ShoppingCartExtension.html index ca0d357..fd5fe1f 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.ShoppingCartExtension.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.ShoppingCartExtension.html @@ -1,180 +1,97 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension

    -
    - + +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.html index 2655816..f31e010 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkProperties.html @@ -1,174 +1,97 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties

    -
    - +
    Packages that use ConnectSdkProperties
    +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkSessionAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkSessionAutoConfiguration.html deleted file mode 100644 index 177d45d..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkSessionAutoConfiguration.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - -Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkSessionAutoConfiguration (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - - - - -
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkSessionAutoConfiguration

    -
    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkSessionAutoConfiguration
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkVersionClientAutoConfiguration.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkVersionClientAutoConfiguration.html new file mode 100644 index 0000000..c6779fb --- /dev/null +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/ConnectSdkVersionClientAutoConfiguration.html @@ -0,0 +1,61 @@ + + + + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkVersionClientAutoConfiguration (connect-sdk-java-spring-boot-starter 4.0 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkVersionClientAutoConfiguration

    +
    +No usage of com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkVersionClientAutoConfiguration
    +
    +
    + +
    +
    +
    + + diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/MetaDataProviderBuilderCustomizer.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/MetaDataProviderBuilderCustomizer.html deleted file mode 100644 index dfa5cb3..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/MetaDataProviderBuilderCustomizer.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - -Uses of Interface com.github.robtimus.connect.sdk.java.springboot.autoconfigure.MetaDataProviderBuilderCustomizer (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - - - - -
    -

    Uses of Interface
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.MetaDataProviderBuilderCustomizer

    -
    -
    - -
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/MetadataProviderBuilderCustomizer.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/MetadataProviderBuilderCustomizer.html new file mode 100644 index 0000000..3dcb945 --- /dev/null +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/class-use/MetadataProviderBuilderCustomizer.html @@ -0,0 +1,88 @@ + + + + +Uses of Interface com.github.robtimus.connect.sdk.java.springboot.autoconfigure.MetadataProviderBuilderCustomizer (connect-sdk-java-spring-boot-starter 4.0 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure.MetadataProviderBuilderCustomizer

    +
    + +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-frame.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-frame.html deleted file mode 100644 index ca976e2..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-frame.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - -com.github.robtimus.connect.sdk.java.springboot.autoconfigure (connect-sdk-java-spring-boot-starter 3.8 API) - - - - -

    com.github.robtimus.connect.sdk.java.springboot.autoconfigure

    - - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-summary.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-summary.html index 7a377e8..7648af6 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-summary.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-summary.html @@ -1,268 +1,187 @@ - - + - + +com.github.robtimus.connect.sdk.java.springboot.autoconfigure (connect-sdk-java-spring-boot-starter 4.0 API) + -com.github.robtimus.connect.sdk.java.springboot.autoconfigure (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Package com.github.robtimus.connect.sdk.java.springboot.autoconfigure

    -
    -
    Spring Boot auto-configuration support for connect-sdk-java.
    +

    Package com.github.robtimus.connect.sdk.java.springboot.autoconfigure

    +
    +
    +
    package com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    +
    +
    + -
    - +
    +
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-tree.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-tree.html index 77c5633..7a80347 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-tree.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-tree.html @@ -1,158 +1,97 @@ - - + - + +com.github.robtimus.connect.sdk.java.springboot.autoconfigure Class Hierarchy (connect-sdk-java-spring-boot-starter 4.0 API) + -com.github.robtimus.connect.sdk.java.springboot.autoconfigure Class Hierarchy (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Hierarchy For Package com.github.robtimus.connect.sdk.java.springboot.autoconfigure

    -Package Hierarchies: +Package Hierarchies:
    -
    +

    Class Hierarchy

    +
    +

    Interface Hierarchy

    +
    +
    +
    +
    + +
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-use.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-use.html index 5e514c2..0f54595 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-use.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/autoconfigure/package-use.html @@ -1,179 +1,99 @@ - - + - + +Uses of Package com.github.robtimus.connect.sdk.java.springboot.autoconfigure (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Package com.github.robtimus.connect.sdk.java.springboot.autoconfigure (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Uses of Package
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure

    -
    - + +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    - - -
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/class-use/ConfigurableAuthenticator.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/class-use/ConfigurableAuthenticator.html deleted file mode 100644 index 059fa0f..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/class-use/ConfigurableAuthenticator.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - -Uses of Class com.github.robtimus.connect.sdk.java.springboot.ConfigurableAuthenticator (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - - - - -
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.ConfigurableAuthenticator

    -
    -
    - -
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/class-use/ConfigurableV1HMACAuthenticator.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/class-use/ConfigurableV1HMACAuthenticator.html new file mode 100644 index 0000000..d827c96 --- /dev/null +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/class-use/ConfigurableV1HMACAuthenticator.html @@ -0,0 +1,115 @@ + + + + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.ConfigurableV1HMACAuthenticator (connect-sdk-java-spring-boot-starter 4.0 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.ConfigurableV1HMACAuthenticator

    +
    + +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot actuator support for connect-sdk-java.
    +
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    +
    + + diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/LogbackCommunicatorLogger.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/LogbackCommunicatorLogger.html index b1cf8d4..70973fb 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/LogbackCommunicatorLogger.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/LogbackCommunicatorLogger.html @@ -1,340 +1,222 @@ - - + - + +LogbackCommunicatorLogger (connect-sdk-java-spring-boot-starter 4.0 API) + -LogbackCommunicatorLogger (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -
    com.github.robtimus.connect.sdk.java.springboot.logging
    -

    Class LogbackCommunicatorLogger

    + +

    Class LogbackCommunicatorLogger

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
      • -
      -
    • -
    -
    - -
    -
    -
    +
    + - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    void
    +
    log(String message)
    +
     
    +
    void
    +
    log(String message, + Throwable thrown)
    +
     
    +
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +
  • -
    -
    -
      -
    • + +
      +
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            LogbackCommunicatorLogger

            -
            public LogbackCommunicatorLogger(Logger logger,
            -                                 Level level)
            +
          • +
            +

            Constructor Details

            + - - - -
              -
            • -

              LogbackCommunicatorLogger

              -
              public LogbackCommunicatorLogger(Logger logger,
              -                                 Level logLevel,
              -                                 Level errorLogLevel)
              +
            • +
              +

              LogbackCommunicatorLogger

              +
              public LogbackCommunicatorLogger(Logger logger, + Level logLevel, + Level errorLogLevel)
              Creates a new communicator logger.
              -
              -
              Parameters:
              +
              +
              Parameters:
              logger - The backing logger.
              -
              logLevel - The level to use when logging through log(String).
              -
              errorLogLevel - The level to use when logging through log(String, Throwable).
              +
              logLevel - The level to use when logging through log(String).
              +
              errorLogLevel - The level to use when logging through log(String, Throwable).
              +
            +
          • -
          - -
    -
    + - - - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/class-use/LogbackCommunicatorLogger.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/class-use/LogbackCommunicatorLogger.html index 060783a..7658a4c 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/class-use/LogbackCommunicatorLogger.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/class-use/LogbackCommunicatorLogger.html @@ -1,125 +1,61 @@ - - + - + +Uses of Class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger

    +

    Uses of Class
    com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-frame.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-frame.html deleted file mode 100644 index 636536c..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-frame.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - -com.github.robtimus.connect.sdk.java.springboot.logging (connect-sdk-java-spring-boot-starter 3.8 API) - - - - -

    com.github.robtimus.connect.sdk.java.springboot.logging

    -
    -

    Classes

    - -
    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-summary.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-summary.html index a303ce4..7378d86 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-summary.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-summary.html @@ -1,154 +1,112 @@ - - + - + +com.github.robtimus.connect.sdk.java.springboot.logging (connect-sdk-java-spring-boot-starter 4.0 API) + -com.github.robtimus.connect.sdk.java.springboot.logging (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Package com.github.robtimus.connect.sdk.java.springboot.logging

    -
    -
    Spring Boot logging support for connect-sdk-java.
    +

    Package com.github.robtimus.connect.sdk.java.springboot.logging

    +
    +
    +
    package com.github.robtimus.connect.sdk.java.springboot.logging
    +
    +
    Spring Boot logging support for connect-sdk-java.
    +
    +
    + -
    - +
    +
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-tree.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-tree.html index 2598fcb..1885080 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-tree.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-tree.html @@ -1,138 +1,75 @@ - - + - + +com.github.robtimus.connect.sdk.java.springboot.logging Class Hierarchy (connect-sdk-java-spring-boot-starter 4.0 API) + -com.github.robtimus.connect.sdk.java.springboot.logging Class Hierarchy (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Hierarchy For Package com.github.robtimus.connect.sdk.java.springboot.logging

    -Package Hierarchies: +Package Hierarchies:
    -
    +

    Class Hierarchy

    +
    +
    +
    +
    + +
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-use.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-use.html index 53afe17..4e8f35f 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-use.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/logging/package-use.html @@ -1,125 +1,61 @@ - - + - + +Uses of Package com.github.robtimus.connect.sdk.java.springboot.logging (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Package com.github.robtimus.connect.sdk.java.springboot.logging (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Uses of Package
    com.github.robtimus.connect.sdk.java.springboot.logging

    -
    No usage of com.github.robtimus.connect.sdk.java.springboot.logging
    - -
    - - - - - - - +No usage of com.github.robtimus.connect.sdk.java.springboot.logging
    +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-frame.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-frame.html deleted file mode 100644 index 632c085..0000000 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-frame.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - -com.github.robtimus.connect.sdk.java.springboot (connect-sdk-java-spring-boot-starter 3.8 API) - - - - -

    com.github.robtimus.connect.sdk.java.springboot

    -
    -

    Classes

    - -
    - - diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-summary.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-summary.html index 05eb6da..4c54916 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-summary.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-summary.html @@ -1,154 +1,113 @@ - - + - + +com.github.robtimus.connect.sdk.java.springboot (connect-sdk-java-spring-boot-starter 4.0 API) + -com.github.robtimus.connect.sdk.java.springboot (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    -

    Package com.github.robtimus.connect.sdk.java.springboot

    -
    -
    Spring Boot support for connect-sdk-java.
    +

    Package com.github.robtimus.connect.sdk.java.springboot

    +
    +
    +
    package com.github.robtimus.connect.sdk.java.springboot
    +
    +
    Spring Boot support for connect-sdk-java.
    +
    +
    + -
    - +
    +
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-tree.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-tree.html index 7db546c..747b2be 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-tree.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-tree.html @@ -1,138 +1,75 @@ - - + - + +com.github.robtimus.connect.sdk.java.springboot Class Hierarchy (connect-sdk-java-spring-boot-starter 4.0 API) + -com.github.robtimus.connect.sdk.java.springboot Class Hierarchy (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Hierarchy For Package com.github.robtimus.connect.sdk.java.springboot

    -Package Hierarchies: +Package Hierarchies:
    -
    +

    Class Hierarchy

    +
    +
    +
    +
    + +
    - - - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-use.html b/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-use.html index 3d27aca..128b15f 100644 --- a/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-use.html +++ b/apidocs/com/github/robtimus/connect/sdk/java/springboot/package-use.html @@ -1,185 +1,106 @@ - - + - + +Uses of Package com.github.robtimus.connect.sdk.java.springboot (connect-sdk-java-spring-boot-starter 4.0 API) + -Uses of Package com.github.robtimus.connect.sdk.java.springboot (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Uses of Package
    com.github.robtimus.connect.sdk.java.springboot

    -
    - -
    - + +
    +
    +
    + +
    +
    - - -
    - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/constant-values.html b/apidocs/constant-values.html deleted file mode 100644 index ec587ed..0000000 --- a/apidocs/constant-values.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - -Constant Field Values (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - -
    - - - - - - - -
    - - -
    -

    Constant Field Values

    -

    Contents

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

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/deprecated-list.html b/apidocs/deprecated-list.html deleted file mode 100644 index a4d61f9..0000000 --- a/apidocs/deprecated-list.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - -Deprecated List (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - - -
    - - - - - - - -
    - - -
    -

    Deprecated API

    -

    Contents

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

    Copyright © 2019–2023. All rights reserved.

    - - diff --git a/apidocs/package-list b/apidocs/element-list similarity index 100% rename from apidocs/package-list rename to apidocs/element-list diff --git a/apidocs/help-doc.html b/apidocs/help-doc.html index 8c10f2e..8ea3b04 100644 --- a/apidocs/help-doc.html +++ b/apidocs/help-doc.html @@ -1,230 +1,190 @@ - - + - + +API Help (connect-sdk-java-spring-boot-starter 4.0 API) + -API Help (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +

    JavaDoc Help

    +
      +
    • Navigation: +
    • -
    • -

      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:

      - +
      +
      +

      Navigation

      +Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
      +
      +
      +

      Kinds of Pages

      +The following sections describe the different kinds of pages in this collection. +
      +

      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. These pages may contain the following categories:

      +
        +
      • Interfaces
      • Classes
      • -
      • Enums
      • +
      • Enum Classes
      • 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
      • +
      • Annotation Interfaces
      • +
      + +
      +

      Class or Interface

      +

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

      +
        +
      • Class Inheritance Diagram
      • Direct Subclasses
      • All Known Subinterfaces
      • All Known Implementing Classes
      • -
      • Class/interface declaration
      • -
      • Class/interface description
      • +
      • Class or Interface Declaration
      • +
      • Class or Interface Description
      -
        +
        +
        • Nested Class Summary
        • +
        • Enum Constant Summary
        • Field Summary
        • +
        • Property 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.
    - -
    - - - - - - - +
    +
      +
    • Enum Constant Details
    • +
    • Field Details
    • +
    • Property Details
    • +
    • Constructor Details
    • +
    • Method Details
    • +
    • Element Details
    • +
    +

    Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

    +

    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.

    + +
    +

    Other Files

    +

    Packages and modules may contain pages with additional information related to the declarations nearby.

    +
    +
    +

    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. Classes are organized by inheritance structure starting with java.lang.Object. 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 on TREE displays the hierarchy for only that package.
    • +
    +
    +
    +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use 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.

    +
    +
    +

    All Packages

    +

    The All Packages page contains an alphabetic index of all packages contained in the documentation.

    +
    +
    +

    All Classes and Interfaces

    +

    The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

    +
    +
    +

    Index

    +

    The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

    +
    +
    +
    +This help file applies to API documentation generated by the standard doclet. +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-1.html b/apidocs/index-files/index-1.html index 10fce62..609fdde 100644 --- a/apidocs/index-files/index-1.html +++ b/apidocs/index-files/index-1.html @@ -1,134 +1,71 @@ - - + - + +A-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -A-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    A

    +
    +
    ApiKeyEndpoint - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    -
    An Endpoint for managing API keys in connect-sdk-java.
    +
    An Endpoint for managing API keys in connect-sdk-java.
    -
    ApiKeyEndpoint(ConfigurableAuthenticator) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.ApiKeyEndpoint
    +
    ApiKeyEndpoint(ConfigurableV1HMACAuthenticator) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.ApiKeyEndpoint
     
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-10.html b/apidocs/index-files/index-10.html index fe1289d..ec2e4bf 100644 --- a/apidocs/index-files/index-10.html +++ b/apidocs/index-files/index-10.html @@ -1,130 +1,67 @@ - - + - + +P-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -P-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    P

    +
    +
    Proxy() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
     
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-11.html b/apidocs/index-files/index-11.html index 12becc9..c8aa051 100644 --- a/apidocs/index-files/index-11.html +++ b/apidocs/index-files/index-11.html @@ -1,184 +1,121 @@ - - + - + +S-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -S-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    S

    +
    +
    setApiKey(String, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ApiKeyEndpoint
    Sets the current API key to use.
    -
    setApiKey(AuthorizationType, String, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.ConfigurableAuthenticator
    +
    setApiKey(String, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.ConfigurableV1HMACAuthenticator
    Sets the new API key to use.
    -
    setApiKeyId(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setAuthorizationId(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setAuthorizationType(AuthorizationType) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setAuthorizationSecret(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setConnectionReuse(boolean) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setAuthorizationType(AuthorizationType) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setConnectTimeout(int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setConnectionReuse(boolean) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setCreator(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    setConnectTimeout(int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setEndpoint(ConnectSdkProperties.Endpoint) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setCreator(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -
    setExtensionId(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    setEndpoint(ConnectSdkProperties.Endpoint) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setHost(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
    +
    setExtensionId(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -
    setHttps(ConnectSdkProperties.HTTPS) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setHost(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
     
    -
    setIntegrator(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setHttps(ConnectSdkProperties.HTTPS) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setMaxConnections(int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setIntegrator(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setName(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    setMaxConnections(int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setPassword(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
    +
    setName(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -
    setPort(int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
    +
    setPassword(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
     
    -
    setProtocols(List<String>) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS
    +
    setPort(int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
     
    -
    setProxy(ConnectSdkProperties.Proxy) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setProtocols(List<String>) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS
     
    -
    setScheme(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
    +
    setProxy(ConnectSdkProperties.Proxy) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setSecretApiKey(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setScheme(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
     
    -
    setShoppingCartExtension(ConnectSdkProperties.ShoppingCartExtension) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setShoppingCartExtension(ConnectSdkProperties.ShoppingCartExtension) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setSocketTimeout(int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    setSocketTimeout(int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    setUri(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
    +
    setUri(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
     
    -
    setUsername(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
    +
    setUsername(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
     
    -
    setVersion(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    setVersion(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -
    ShoppingCartExtension() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    ShoppingCartExtension() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-12.html b/apidocs/index-files/index-12.html index 4c09942..25a3c38 100644 --- a/apidocs/index-files/index-12.html +++ b/apidocs/index-files/index-12.html @@ -1,137 +1,74 @@ - - + - + +V-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -V-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    V

    +
    +
    valueOf(String) - Static method in enum class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState
    -
    Returns the enum constant of this type with the specified name.
    +
    Returns the enum constant of this class with the specified name.
    -
    values() - Static method in enum com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState
    +
    values() - Static method in enum class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState
    -
    Returns an array containing the constants of this enum type, in +
    Returns an array containing the constants of this enum class, in the order they are declared.
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-2.html b/apidocs/index-files/index-2.html index be2f992..2ba761a 100644 --- a/apidocs/index-files/index-2.html +++ b/apidocs/index-files/index-2.html @@ -1,339 +1,245 @@ - - + - + +C-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -C-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    - -
    closeIdleConnections(Long, TimeUnit) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    C

    +
    +
    CloseableBeans() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans
    +
     
    +
    closeConnections(Duration, ConnectionsEndpoint.CloseableConnectionState) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint
    - +
    Closes all connections that are idle, expired or both for all PooledConnection, Communicator and Client beans.
    -
    closeIdleConnectionsForBean(String, Long, TimeUnit) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint
    +
    closeConnectionsForBean(String, Duration, ConnectionsEndpoint.CloseableConnectionState) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint
    - +
    Closes all connections that are idle, expired or both for a specific PooledConnection, Communicator and Client bean.
    com.github.robtimus.connect.sdk.java.springboot - package com.github.robtimus.connect.sdk.java.springboot
    -
    Spring Boot support for connect-sdk-java.
    +
    Spring Boot support for connect-sdk-java.
    com.github.robtimus.connect.sdk.java.springboot.actuator - package com.github.robtimus.connect.sdk.java.springboot.actuator
    -
    Spring Boot actuator support for connect-sdk-java.
    +
    Spring Boot actuator support for connect-sdk-java.
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure - package com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -
    Spring Boot auto-configuration support for connect-sdk-java.
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    com.github.robtimus.connect.sdk.java.springboot.logging - package com.github.robtimus.connect.sdk.java.springboot.logging
    -
    Spring Boot logging support for connect-sdk-java.
    +
    Spring Boot logging support for connect-sdk-java.
    -
    ConfigurableAuthenticator - Class in com.github.robtimus.connect.sdk.java.springboot
    +
    ConfigurableV1HMACAuthenticator - Class in com.github.robtimus.connect.sdk.java.springboot
    -
    An Authenticator implementation that allows the API key id to be replaced, something that DefaultAuthenticator does not support.
    +
    An Authenticator implementation that allows the API key id and secret to be replaced, something that V1HMACAuthenticator does not + support.
    -
    ConfigurableAuthenticator(AuthorizationType, String, String) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.ConfigurableAuthenticator
    +
    ConfigurableV1HMACAuthenticator(String, String) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.ConfigurableV1HMACAuthenticator
    Creates a new configurable authenticator.
    -
    ConnectionsEndpoint - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    +
    ConnectionsEndpoint - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    -
    An Endpoint for managing connections in connect-sdk-java.
    +
    An Endpoint for managing connections in connect-sdk-java.
    -
    ConnectionsEndpoint(ApplicationContext, long) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint
    -
     
    -
    ConnectionsEndpoint.BeanNotCloseableException - Exception in com.github.robtimus.connect.sdk.java.springboot.actuator
    +
    ConnectionsEndpoint(ApplicationContext, long) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint
     
    -
    ConnectionsEndpoint.CloseableBeans - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    +
    ConnectionsEndpoint.BeanNotCloseableException - Exception in com.github.robtimus.connect.sdk.java.springboot.actuator
     
    -
    ConnectionsEndpoint.CloseableConnectionState - Enum in com.github.robtimus.connect.sdk.java.springboot.actuator
    +
    ConnectionsEndpoint.CloseableBeans - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
     
    -
    connectSdkApiKeyEndpoint(ConfigurableAuthenticator) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
    +
    ConnectionsEndpoint.CloseableConnectionState - Enum Class in com.github.robtimus.connect.sdk.java.springboot.actuator
     
    -
    connectSdkAuthenticator() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
    +
    connectSdkApiKeyEndpoint(ConfigurableV1HMACAuthenticator) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
     
    -
    ConnectSdkAuthenticatorAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkAuthenticatorAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkAuthenticatorAutoConfiguration(ConnectSdkProperties) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
    +
    ConnectSdkAuthenticatorAutoConfiguration(ConnectSdkProperties) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
     
    -
    connectSdkClient(Communicator) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration
    +
    connectSdkClient(Communicator) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration
     
    -
    ConnectSdkClientAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkClientAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkClientAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration
    +
    ConnectSdkClientAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkClientAutoConfiguration
     
    -
    connectSdkCommunicator(Session, Marshaller) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration
    +
    connectSdkCommunicator(Connection, Authenticator, MetadataProvider, Marshaller) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration
     
    -
    ConnectSdkCommunicatorAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkCommunicatorAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkCommunicatorAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration
    +
    ConnectSdkCommunicatorAutoConfiguration(ConnectSdkProperties) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorAutoConfiguration
     
    -
    connectSdkCommunicatorLogger(String, String, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration
    +
    connectSdkCommunicatorLogger(String, String, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration
     
    -
    ConnectSdkCommunicatorLoggerAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkCommunicatorLoggerAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkCommunicatorLoggerAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration
    +
    ConnectSdkCommunicatorLoggerAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkCommunicatorLoggerAutoConfiguration
     
    -
    connectSdkConnection() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration
    -
    - -
    -
    connectSdkConnection(BodyObfuscator, HeaderObfuscator) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration
    +
    connectSdkConnection(BodyObfuscator, HeaderObfuscator) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration
     
    -
    ConnectSdkConnectionAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkConnectionAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkConnectionAutoConfiguration(ConnectSdkProperties) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration
    +
    ConnectSdkConnectionAutoConfiguration(ConnectSdkProperties) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionAutoConfiguration
     
    -
    connectSdkConnectionsEndpoint(ApplicationContext, long) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration
    +
    connectSdkConnectionsEndpoint(ApplicationContext, long) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration
     
    -
    ConnectSdkConnectionsEndpointAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkConnectionsEndpointAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkConnectionsEndpointAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration
    +
    ConnectSdkConnectionsEndpointAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkConnectionsEndpointAutoConfiguration
     
    -
    ConnectSdkHealthIndicator - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    +
    connectSdkHealthIndicator(MerchantClient, int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration
    +
     
    +
    ConnectSdkHealthIndicator - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    - +
    -
    ConnectSdkHealthIndicator(MerchantClient, int) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator
    +
    ConnectSdkHealthIndicator(MerchantClient, int) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator
    Creates a new health indicator.
    -
    connectSdkHealthIndicator(MerchantClient, int) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration
    -
     
    -
    ConnectSdkHealthIndicatorAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkHealthIndicatorAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkHealthIndicatorAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration
    +
    ConnectSdkHealthIndicatorAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkHealthIndicatorAutoConfiguration
     
    -
    connectSdkLoggingEndpoint(ApplicationContext) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration
    +
    connectSdkLoggingEndpoint(ApplicationContext) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration
     
    -
    ConnectSdkLoggingEndpointAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkLoggingEndpointAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkLoggingEndpointAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration
    +
    ConnectSdkLoggingEndpointAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkLoggingEndpointAutoConfiguration
     
    -
    connectSdkMarshaller() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration
    +
    connectSdkMarshaller() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration
     
    -
    ConnectSdkMarshallerAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkMarshallerAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkMarshallerAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration
    +
    ConnectSdkMarshallerAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMarshallerAutoConfiguration
     
    -
    connectSdkMerchantClient(Client, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration
    -
     
    -
    ConnectSdkMerchantClientAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkMerchantClientAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkMerchantClientAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration
    +
    ConnectSdkMerchantClientAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration
     
    -
    connectSdkMetaDataProvider(List<MetaDataProviderBuilderCustomizer>) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetaDataProviderAutoConfiguration
    +
    connectSdkMetadataProvider(List<MetadataProviderBuilderCustomizer>) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetadataProviderAutoConfiguration
     
    -
    ConnectSdkMetaDataProviderAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkMetadataProviderAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    -
    ConnectSdkMetaDataProviderAutoConfiguration(ConnectSdkProperties) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetaDataProviderAutoConfiguration
    +
    ConnectSdkMetadataProviderAutoConfiguration(ConnectSdkProperties) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMetadataProviderAutoConfiguration
     
    -
    ConnectSdkProperties - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkProperties - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -
    Properties for connect-sdk-java.
    +
    Properties for connect-sdk-java.
    -
    ConnectSdkProperties() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    ConnectSdkProperties() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
     
    +
    ConnectSdkProperties.Endpoint - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
     
    -
    ConnectSdkProperties.Endpoint - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkProperties.HTTPS - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
     
    -
    ConnectSdkProperties.HTTPS - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkProperties.Proxy - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
     
    -
    ConnectSdkProperties.Proxy - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    ConnectSdkProperties.ShoppingCartExtension - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
     
    -
    ConnectSdkProperties.ShoppingCartExtension - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    connectSdkV1Client(Client) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkVersionClientAutoConfiguration
     
    -
    connectSdkSession(Connection, Authenticator, MetaDataProvider) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkSessionAutoConfiguration
    +
    connectSdkV1HMACAuthenticator() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkAuthenticatorAutoConfiguration
     
    -
    ConnectSdkSessionAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    +
    connectSdkV1MerchantClient(V1Client, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkMerchantClientAutoConfiguration
    +
     
    +
    ConnectSdkVersionClientAutoConfiguration - Class in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    - +
    Auto-configuration for version-specific clients for + connect-sdk-java.
    -
    ConnectSdkSessionAutoConfiguration(ConnectSdkProperties) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkSessionAutoConfiguration
    -
     
    -
    createSimpleAuthenticationSignature(String, URI, List<RequestHeader>) - Method in class com.github.robtimus.connect.sdk.java.springboot.ConfigurableAuthenticator
    +
    ConnectSdkVersionClientAutoConfiguration() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkVersionClientAutoConfiguration
     
    -
    customize(MetaDataProviderBuilder) - Method in interface com.github.robtimus.connect.sdk.java.springboot.autoconfigure.MetaDataProviderBuilderCustomizer
    +
    customize(MetadataProviderBuilder) - Method in interface com.github.robtimus.connect.sdk.java.springboot.autoconfigure.MetadataProviderBuilderCustomizer
    -
    Customizes the MetaDataProviderBuilder.
    +
    Customizes the MetadataProviderBuilder.
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-3.html b/apidocs/index-files/index-3.html index c61977e..fc669c2 100644 --- a/apidocs/index-files/index-3.html +++ b/apidocs/index-files/index-3.html @@ -1,138 +1,75 @@ - - + - + +D-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -D-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    D

    +
    +
    disableLogging() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
    -
    Disables logging for all LoggingCapable beans.
    +
    Disables logging for all LoggingCapable beans.
    -
    disableLoggingOnBean(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
    +
    disableLoggingOnBean(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
    -
    Disables logging for a specific LoggingCapable bean.
    +
    Disables logging for a specific LoggingCapable bean.
    -
    doHealthCheck(Health.Builder) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator
    +
    doHealthCheck(Health.Builder) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectSdkHealthIndicator
     
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-4.html b/apidocs/index-files/index-4.html index 4fc3697..9df29af 100644 --- a/apidocs/index-files/index-4.html +++ b/apidocs/index-files/index-4.html @@ -1,138 +1,79 @@ - - + - + +E-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -E-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    E

    +
    +
    enableLogging(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
    -
    Enables logging for all LoggingCapable beans.
    +
    Enables logging for all LoggingCapable beans.
    -
    enableLoggingOnBean(String, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
    +
    enableLoggingOnBean(String, String) - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
    -
    Enables logging for a specific LoggingCapable bean.
    +
    Enables logging for a specific LoggingCapable bean.
    -
    Endpoint() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
    +
    Endpoint() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
     
    +
    EXPIRED - Enum constant in enum class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState
    +
    +
    Only close expired connections.
    +
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-5.html b/apidocs/index-files/index-5.html index 0a76db1..5a8b51c 100644 --- a/apidocs/index-files/index-5.html +++ b/apidocs/index-files/index-5.html @@ -1,190 +1,129 @@ - - + - + +G-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -G-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    G

    +
    +
    getActualType() - Method in exception com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException
    +
     
    +
    getAuthorization(String, URI, List<RequestHeader>) - Method in class com.github.robtimus.connect.sdk.java.springboot.ConfigurableV1HMACAuthenticator
     
    -
    getApiKeyId() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getAuthorizationId() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getAuthorizationType() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getAuthorizationSecret() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getBeanName() - Method in exception com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException
    +
    getAuthorizationType() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getClients() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans
    +
    getBeanName() - Method in exception com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.BeanNotCloseableException
     
    -
    getClients() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
    +
    getClients() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans
     
    -
    getCommunicators() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans
    +
    getClients() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
     
    -
    getCommunicators() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
    +
    getCommunicators() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans
     
    -
    getConnections() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans
    +
    getCommunicators() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
     
    -
    getConnections() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
    +
    getConnections() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableBeans
     
    -
    getConnectTimeout() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getConnections() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
     
    -
    getCreator() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    getConnectTimeout() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getEndpoint() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getCreator() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -
    getExtensionId() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    getEndpoint() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getHost() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
    +
    getExtensionId() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -
    getHttps() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getHost() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
     
    -
    getIntegrator() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getHttps() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getLoggers() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
    +
    getIntegrator() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getMaxConnections() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getLoggers() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
     
    -
    getName() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    getMaxConnections() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getPassword() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
    +
    getName() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -
    getPort() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
    +
    getPassword() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
     
    -
    getProtocols() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS
    +
    getPort() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
     
    -
    getProxy() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getProtocols() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS
     
    -
    getScheme() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
    +
    getProxy() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getSecretApiKey() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getScheme() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint
     
    -
    getShoppingCartExtension() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getShoppingCartExtension() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getSocketTimeout() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
    +
    getSocketTimeout() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -
    getUri() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
    +
    getUri() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
     
    -
    getUsername() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
    +
    getUsername() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy
     
    -
    getVersion() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
    +
    getVersion() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension
     
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-6.html b/apidocs/index-files/index-6.html index f15cb79..3e215b0 100644 --- a/apidocs/index-files/index-6.html +++ b/apidocs/index-files/index-6.html @@ -1,130 +1,67 @@ - - + - + +H-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -H-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    H

    +
    +
    HTTPS() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS
     
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-7.html b/apidocs/index-files/index-7.html index 2334e96..7cb041e 100644 --- a/apidocs/index-files/index-7.html +++ b/apidocs/index-files/index-7.html @@ -1,130 +1,71 @@ - - + - + +I-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -I-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    I

    +
    +
    IDLE - Enum constant in enum class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState
    +
    +
    Only close idle connections.
    +
    +
    isConnectionReuse() - Method in class com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties
     
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-8.html b/apidocs/index-files/index-8.html index d829c30..30c21f7 100644 --- a/apidocs/index-files/index-8.html +++ b/apidocs/index-files/index-8.html @@ -1,158 +1,96 @@ - - + - + +L-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -L-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    L

    +
    +
    listCloseableBeans() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint
     
    -
    listLoggingCapableAndLoggerBeans() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
    +
    listLoggingCapableAndLoggerBeans() - Method in class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
     
    -
    log(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
    +
    log(String) - Method in class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
     
    -
    log(String, Throwable) - Method in class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
    +
    log(String, Throwable) - Method in class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
     
    -
    LogbackCommunicatorLogger - Class in com.github.robtimus.connect.sdk.java.springboot.logging
    +
    LogbackCommunicatorLogger - Class in com.github.robtimus.connect.sdk.java.springboot.logging
    -
    A communicator logger that is backed by a Logger.
    +
    A communicator logger that is backed by a Logger.
    -
    LogbackCommunicatorLogger(Logger, Level) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
    +
    LogbackCommunicatorLogger(Logger, Level) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
    Creates a new communicator logger.
    -
    LogbackCommunicatorLogger(Logger, Level, Level) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
    +
    LogbackCommunicatorLogger(Logger, Level, Level) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.logging.LogbackCommunicatorLogger
    Creates a new communicator logger.
    -
    LoggingCapableAndLoggerBeans() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
    +
    LoggingCapableAndLoggerBeans() - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint.LoggingCapableAndLoggerBeans
     
    -
    LoggingEndpoint - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    +
    LoggingEndpoint - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    -
    An Endpoint for enabling and disabling logging in connect-sdk-java.
    +
    An Endpoint for enabling and disabling logging in + connect-sdk-java.
    -
    LoggingEndpoint(ApplicationContext) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
    +
    LoggingEndpoint(ApplicationContext) - Constructor for class com.github.robtimus.connect.sdk.java.springboot.actuator.LoggingEndpoint
     
    -
    LoggingEndpoint.LoggingCapableAndLoggerBeans - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
    +
    LoggingEndpoint.LoggingCapableAndLoggerBeans - Class in com.github.robtimus.connect.sdk.java.springboot.actuator
     
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index-files/index-9.html b/apidocs/index-files/index-9.html index 52618f8..ae68c70 100644 --- a/apidocs/index-files/index-9.html +++ b/apidocs/index-files/index-9.html @@ -1,132 +1,69 @@ - - + - + +M-Index (connect-sdk-java-spring-boot-starter 4.0 API) + -M-Index (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +
    +
    +

    Index

    +
    +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +

    M

    +
    +
    MetadataProviderBuilderCustomizer - Interface in com.github.robtimus.connect.sdk.java.springboot.autoconfigure
    -
    Callback interface that can be implemented by beans wishing to customize the MetaDataProvider whilst retaining default auto-configuration.
    +
    Callback interface that can be implemented by beans wishing to customize the MetadataProvider whilst retaining default auto-configuration.
    -A C D E G H I L M P S V 
    - -
    - - - - - - - +A C D E G H I L M P S V 
    All Classes and Interfaces|All Packages|Serialized Form +
    +
    + +
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/index.html b/apidocs/index.html index 925c219..932096b 100644 --- a/apidocs/index.html +++ b/apidocs/index.html @@ -1,76 +1,84 @@ - - + - + +Overview (connect-sdk-java-spring-boot-starter 4.0 API) + -connect-sdk-java-spring-boot-starter 3.8 API - + + + + + + + + - - - - - - - +<body class="package-index-page"> +<script type="text/javascript">var pathtoroot = "./"; +loadScripts(document, 'script');</script> <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> - - +
    + +
    +
    +
    +

    connect-sdk-java-spring-boot-starter 4.0 API

    +
    +
    +
    Packages
    +
    +
    Package
    +
    Description
    + +
    +
    Spring Boot support for connect-sdk-java.
    +
    + +
    +
    Spring Boot actuator support for connect-sdk-java.
    +
    + +
    +
    Spring Boot auto-configuration support for connect-sdk-java.
    +
    + +
    +
    Spring Boot logging support for connect-sdk-java.
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + diff --git a/apidocs/jquery-ui.overrides.css b/apidocs/jquery-ui.overrides.css new file mode 100644 index 0000000..facf852 --- /dev/null +++ b/apidocs/jquery-ui.overrides.css @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + /* Overrides the color of selection used in jQuery UI */ + background: #F8981D; + border: 1px solid #F8981D; +} diff --git a/apidocs/legal/ADDITIONAL_LICENSE_INFO b/apidocs/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..ff700cd --- /dev/null +++ b/apidocs/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1,37 @@ + ADDITIONAL INFORMATION ABOUT LICENSING + +Certain files distributed by Oracle America, Inc. and/or its affiliates are +subject to the following clarification and special exception to the GPLv2, +based on the GNU Project exception for its Classpath libraries, known as the +GNU Classpath Exception. + +Note that Oracle includes multiple, independent programs in this software +package. Some of those programs are provided under licenses deemed +incompatible with the GPLv2 by the Free Software Foundation and others. +For example, the package includes programs licensed under the Apache +License, Version 2.0 and may include FreeType. Such programs are licensed +to you under their original licenses. + +Oracle facilitates your further distribution of this package by adding the +Classpath Exception to the necessary parts of its GPLv2 code, which permits +you to use that code in combination with other independent modules not +licensed under the GPLv2. However, note that this would not permit you to +commingle code under an incompatible license with Oracle's GPLv2 licensed +code by, for example, cutting and pasting such code into a file also +containing Oracle's GPLv2 licensed code and then distributing the result. + +Additionally, if you were to remove the Classpath Exception from any of the +files to which it applies and distribute the result, you would likely be +required to license some or all of the other code in that distribution under +the GPLv2 as well, and since the GPLv2 is incompatible with the license terms +of some items included in the distribution by Oracle, removing the Classpath +Exception could therefore effectively compromise your ability to further +distribute the package. + +Failing to distribute notices associated with some files may also create +unexpected legal consequences. + +Proceed with caution and we recommend that you obtain the advice of a lawyer +skilled in open source matters before removing the Classpath Exception or +making modifications to this package which may subsequently be redistributed +and/or involve the use of third party software. diff --git a/apidocs/legal/ASSEMBLY_EXCEPTION b/apidocs/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..065b8d9 --- /dev/null +++ b/apidocs/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1,27 @@ + +OPENJDK ASSEMBLY EXCEPTION + +The OpenJDK source code made available by Oracle America, Inc. (Oracle) at +openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU +General Public License version 2 +only ("GPL2"), with the following clarification and special exception. + + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + +As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code +to build an executable that includes those portions of necessary code that +Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 +with the Classpath exception). If you modify or add to the OpenJDK code, +that new GPL2 code may still be combined with Designated Exception Modules +if the new code is made subject to this exception by its copyright holder. diff --git a/apidocs/legal/LICENSE b/apidocs/legal/LICENSE new file mode 100644 index 0000000..8b400c7 --- /dev/null +++ b/apidocs/legal/LICENSE @@ -0,0 +1,347 @@ +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the Free + Software Foundation; either version 2 of the License, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. diff --git a/apidocs/legal/jquery.md b/apidocs/legal/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/apidocs/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/apidocs/legal/jqueryUI.md b/apidocs/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/apidocs/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/apidocs/member-search-index.js b/apidocs/member-search-index.js new file mode 100644 index 0000000..3db77f9 --- /dev/null +++ b/apidocs/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ApiKeyEndpoint","l":"ApiKeyEndpoint(ConfigurableV1HMACAuthenticator)","u":"%3Cinit%3E(com.github.robtimus.connect.sdk.java.springboot.ConfigurableV1HMACAuthenticator)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.CloseableBeans","l":"CloseableBeans()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint","l":"closeConnections(Duration, ConnectionsEndpoint.CloseableConnectionState)","u":"closeConnections(java.time.Duration,com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint","l":"closeConnectionsForBean(String, Duration, ConnectionsEndpoint.CloseableConnectionState)","u":"closeConnectionsForBean(java.lang.String,java.time.Duration,com.github.robtimus.connect.sdk.java.springboot.actuator.ConnectionsEndpoint.CloseableConnectionState)"},{"p":"com.github.robtimus.connect.sdk.java.springboot","c":"ConfigurableV1HMACAuthenticator","l":"ConfigurableV1HMACAuthenticator(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint","l":"ConnectionsEndpoint(ApplicationContext, long)","u":"%3Cinit%3E(org.springframework.context.ApplicationContext,long)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkAuthenticatorAutoConfiguration","l":"connectSdkApiKeyEndpoint(ConfigurableV1HMACAuthenticator)","u":"connectSdkApiKeyEndpoint(com.github.robtimus.connect.sdk.java.springboot.ConfigurableV1HMACAuthenticator)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkAuthenticatorAutoConfiguration","l":"ConnectSdkAuthenticatorAutoConfiguration(ConnectSdkProperties)","u":"%3Cinit%3E(com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkClientAutoConfiguration","l":"connectSdkClient(Communicator)","u":"connectSdkClient(com.worldline.connect.sdk.java.Communicator)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkClientAutoConfiguration","l":"ConnectSdkClientAutoConfiguration()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkCommunicatorAutoConfiguration","l":"connectSdkCommunicator(Connection, Authenticator, MetadataProvider, Marshaller)","u":"connectSdkCommunicator(com.worldline.connect.sdk.java.communication.Connection,com.worldline.connect.sdk.java.authentication.Authenticator,com.worldline.connect.sdk.java.communication.MetadataProvider,com.worldline.connect.sdk.java.json.Marshaller)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkCommunicatorAutoConfiguration","l":"ConnectSdkCommunicatorAutoConfiguration(ConnectSdkProperties)","u":"%3Cinit%3E(com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkCommunicatorLoggerAutoConfiguration","l":"connectSdkCommunicatorLogger(String, String, String)","u":"connectSdkCommunicatorLogger(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkCommunicatorLoggerAutoConfiguration","l":"ConnectSdkCommunicatorLoggerAutoConfiguration()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkConnectionAutoConfiguration","l":"connectSdkConnection(BodyObfuscator, HeaderObfuscator)","u":"connectSdkConnection(com.worldline.connect.sdk.java.logging.BodyObfuscator,com.worldline.connect.sdk.java.logging.HeaderObfuscator)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkConnectionAutoConfiguration","l":"ConnectSdkConnectionAutoConfiguration(ConnectSdkProperties)","u":"%3Cinit%3E(com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkConnectionsEndpointAutoConfiguration","l":"connectSdkConnectionsEndpoint(ApplicationContext, long)","u":"connectSdkConnectionsEndpoint(org.springframework.context.ApplicationContext,long)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkConnectionsEndpointAutoConfiguration","l":"ConnectSdkConnectionsEndpointAutoConfiguration()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkHealthIndicatorAutoConfiguration","l":"connectSdkHealthIndicator(MerchantClient, int)","u":"connectSdkHealthIndicator(com.worldline.connect.sdk.java.v1.merchant.MerchantClient,int)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectSdkHealthIndicator","l":"ConnectSdkHealthIndicator(MerchantClient, int)","u":"%3Cinit%3E(com.worldline.connect.sdk.java.v1.merchant.MerchantClient,int)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkHealthIndicatorAutoConfiguration","l":"ConnectSdkHealthIndicatorAutoConfiguration()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkLoggingEndpointAutoConfiguration","l":"connectSdkLoggingEndpoint(ApplicationContext)","u":"connectSdkLoggingEndpoint(org.springframework.context.ApplicationContext)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkLoggingEndpointAutoConfiguration","l":"ConnectSdkLoggingEndpointAutoConfiguration()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkMarshallerAutoConfiguration","l":"connectSdkMarshaller()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkMarshallerAutoConfiguration","l":"ConnectSdkMarshallerAutoConfiguration()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkMerchantClientAutoConfiguration","l":"ConnectSdkMerchantClientAutoConfiguration()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkMetadataProviderAutoConfiguration","l":"connectSdkMetadataProvider(List)","u":"connectSdkMetadataProvider(java.util.List)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkMetadataProviderAutoConfiguration","l":"ConnectSdkMetadataProviderAutoConfiguration(ConnectSdkProperties)","u":"%3Cinit%3E(com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"ConnectSdkProperties()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkVersionClientAutoConfiguration","l":"connectSdkV1Client(Client)","u":"connectSdkV1Client(com.worldline.connect.sdk.java.Client)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkAuthenticatorAutoConfiguration","l":"connectSdkV1HMACAuthenticator()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkMerchantClientAutoConfiguration","l":"connectSdkV1MerchantClient(V1Client, String)","u":"connectSdkV1MerchantClient(com.worldline.connect.sdk.java.v1.V1Client,java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkVersionClientAutoConfiguration","l":"ConnectSdkVersionClientAutoConfiguration()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"MetadataProviderBuilderCustomizer","l":"customize(MetadataProviderBuilder)","u":"customize(com.worldline.connect.sdk.java.communication.MetadataProviderBuilder)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint","l":"disableLogging()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint","l":"disableLoggingOnBean(String)","u":"disableLoggingOnBean(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectSdkHealthIndicator","l":"doHealthCheck(Health.Builder)","u":"doHealthCheck(org.springframework.boot.actuate.health.Health.Builder)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint","l":"enableLogging(String)","u":"enableLogging(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint","l":"enableLoggingOnBean(String, String)","u":"enableLoggingOnBean(java.lang.String,java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Endpoint","l":"Endpoint()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.CloseableConnectionState","l":"EXPIRED"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.BeanNotCloseableException","l":"getActualType()"},{"p":"com.github.robtimus.connect.sdk.java.springboot","c":"ConfigurableV1HMACAuthenticator","l":"getAuthorization(String, URI, List)","u":"getAuthorization(java.lang.String,java.net.URI,java.util.List)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getAuthorizationId()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getAuthorizationSecret()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getAuthorizationType()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.BeanNotCloseableException","l":"getBeanName()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.CloseableBeans","l":"getClients()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint.LoggingCapableAndLoggerBeans","l":"getClients()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.CloseableBeans","l":"getCommunicators()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint.LoggingCapableAndLoggerBeans","l":"getCommunicators()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.CloseableBeans","l":"getConnections()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint.LoggingCapableAndLoggerBeans","l":"getConnections()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getConnectTimeout()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"getCreator()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getEndpoint()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"getExtensionId()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Endpoint","l":"getHost()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getHttps()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getIntegrator()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint.LoggingCapableAndLoggerBeans","l":"getLoggers()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getMaxConnections()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"getName()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Proxy","l":"getPassword()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Endpoint","l":"getPort()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.HTTPS","l":"getProtocols()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getProxy()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Endpoint","l":"getScheme()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getShoppingCartExtension()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"getSocketTimeout()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Proxy","l":"getUri()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Proxy","l":"getUsername()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"getVersion()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.HTTPS","l":"HTTPS()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.CloseableConnectionState","l":"IDLE"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"isConnectionReuse()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint","l":"listCloseableBeans()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint","l":"listLoggingCapableAndLoggerBeans()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.logging","c":"LogbackCommunicatorLogger","l":"log(String)","u":"log(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.logging","c":"LogbackCommunicatorLogger","l":"log(String, Throwable)","u":"log(java.lang.String,java.lang.Throwable)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.logging","c":"LogbackCommunicatorLogger","l":"LogbackCommunicatorLogger(Logger, Level)","u":"%3Cinit%3E(ch.qos.logback.classic.Logger,ch.qos.logback.classic.Level)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.logging","c":"LogbackCommunicatorLogger","l":"LogbackCommunicatorLogger(Logger, Level, Level)","u":"%3Cinit%3E(ch.qos.logback.classic.Logger,ch.qos.logback.classic.Level,ch.qos.logback.classic.Level)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint.LoggingCapableAndLoggerBeans","l":"LoggingCapableAndLoggerBeans()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"LoggingEndpoint","l":"LoggingEndpoint(ApplicationContext)","u":"%3Cinit%3E(org.springframework.context.ApplicationContext)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Proxy","l":"Proxy()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ApiKeyEndpoint","l":"setApiKey(String, String)","u":"setApiKey(java.lang.String,java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot","c":"ConfigurableV1HMACAuthenticator","l":"setApiKey(String, String)","u":"setApiKey(java.lang.String,java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setAuthorizationId(String)","u":"setAuthorizationId(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setAuthorizationSecret(String)","u":"setAuthorizationSecret(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setAuthorizationType(AuthorizationType)","u":"setAuthorizationType(com.worldline.connect.sdk.java.authentication.AuthorizationType)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setConnectionReuse(boolean)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setConnectTimeout(int)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"setCreator(String)","u":"setCreator(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setEndpoint(ConnectSdkProperties.Endpoint)","u":"setEndpoint(com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Endpoint)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"setExtensionId(String)","u":"setExtensionId(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Endpoint","l":"setHost(String)","u":"setHost(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setHttps(ConnectSdkProperties.HTTPS)","u":"setHttps(com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.HTTPS)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setIntegrator(String)","u":"setIntegrator(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setMaxConnections(int)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Proxy","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Endpoint","l":"setPort(int)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.HTTPS","l":"setProtocols(List)","u":"setProtocols(java.util.List)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setProxy(ConnectSdkProperties.Proxy)","u":"setProxy(com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.Proxy)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Endpoint","l":"setScheme(String)","u":"setScheme(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setShoppingCartExtension(ConnectSdkProperties.ShoppingCartExtension)","u":"setShoppingCartExtension(com.github.robtimus.connect.sdk.java.springboot.autoconfigure.ConnectSdkProperties.ShoppingCartExtension)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties","l":"setSocketTimeout(int)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Proxy","l":"setUri(String)","u":"setUri(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.Proxy","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"setVersion(String)","u":"setVersion(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","c":"ConnectSdkProperties.ShoppingCartExtension","l":"ShoppingCartExtension()","u":"%3Cinit%3E()"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.CloseableConnectionState","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","c":"ConnectionsEndpoint.CloseableConnectionState","l":"values()"}];updateSearchResults(); \ No newline at end of file diff --git a/apidocs/module-search-index.js b/apidocs/module-search-index.js new file mode 100644 index 0000000..0d59754 --- /dev/null +++ b/apidocs/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/apidocs/overview-frame.html b/apidocs/overview-frame.html deleted file mode 100644 index f10948c..0000000 --- a/apidocs/overview-frame.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - -Overview List (connect-sdk-java-spring-boot-starter 3.8 API) - - - - - - -

     

    - - diff --git a/apidocs/overview-summary.html b/apidocs/overview-summary.html index c5f64f9..0f0ca10 100644 --- a/apidocs/overview-summary.html +++ b/apidocs/overview-summary.html @@ -1,159 +1,25 @@ - - + - + +connect-sdk-java-spring-boot-starter 4.0 API + -Overview (connect-sdk-java-spring-boot-starter 3.8 API) + + + - + + - - + +
    - -
    - - - - - - - -
    - - -
    -

    connect-sdk-java-spring-boot-starter 3.8 API

    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    Packages 
    PackageDescription
    com.github.robtimus.connect.sdk.java.springboot -
    Spring Boot support for connect-sdk-java.
    -
    com.github.robtimus.connect.sdk.java.springboot.actuator -
    Spring Boot actuator support for connect-sdk-java.
    -
    com.github.robtimus.connect.sdk.java.springboot.autoconfigure -
    Spring Boot auto-configuration support for connect-sdk-java.
    -
    com.github.robtimus.connect.sdk.java.springboot.logging -
    Spring Boot logging support for connect-sdk-java.
    -
    -
    - -
    - - - - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    +

    index.html

    +
    diff --git a/apidocs/overview-tree.html b/apidocs/overview-tree.html index e9bfd83..8328493 100644 --- a/apidocs/overview-tree.html +++ b/apidocs/overview-tree.html @@ -1,77 +1,55 @@ - - + - + +Class Hierarchy (connect-sdk-java-spring-boot-starter 4.0 API) + -Class Hierarchy (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
    + +
    +

    Hierarchy For All Packages

    -Package Hierarchies: +Package Hierarchies:
    -
    +

    Class Hierarchy

    +

    Interface Hierarchy

    -

    Enum Hierarchy

    +
    +
    +

    Enum Class Hierarchy

    +
    +
    +
    +
    + +
    - -
    - - - - - - - -
    - - -

    Copyright © 2019–2023. All rights reserved.

    diff --git a/apidocs/package-search-index.js b/apidocs/package-search-index.js new file mode 100644 index 0000000..f9576a0 --- /dev/null +++ b/apidocs/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"com.github.robtimus.connect.sdk.java.springboot"},{"l":"com.github.robtimus.connect.sdk.java.springboot.actuator"},{"l":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure"},{"l":"com.github.robtimus.connect.sdk.java.springboot.logging"}];updateSearchResults(); \ No newline at end of file diff --git a/apidocs/resources/glass.png b/apidocs/resources/glass.png new file mode 100644 index 0000000..a7f591f Binary files /dev/null and b/apidocs/resources/glass.png differ diff --git a/apidocs/resources/x.png b/apidocs/resources/x.png new file mode 100644 index 0000000..30548a7 Binary files /dev/null and b/apidocs/resources/x.png differ diff --git a/apidocs/script-dir/jquery-3.6.1.min.js b/apidocs/script-dir/jquery-3.6.1.min.js new file mode 100644 index 0000000..2c69bc9 --- /dev/null +++ b/apidocs/script-dir/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
    "),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
      ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
      ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
      ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
      ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/apidocs/script.js b/apidocs/script.js index b346356..864989c 100644 --- a/apidocs/script.js +++ b/apidocs/script.js @@ -1,30 +1,132 @@ -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; +/* + * Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor); + elem.classList.add(isEvenRow ? evenRowColor : oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.querySelector('div#' + tableId +' .summary-table') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); } - 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]; +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} + +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; } - else { - sNode.className = tableTab; - spanNode.innerHTML = "" + tabs[value][1] + ""; + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + contentDiv.addEventListener("scroll", function(e) { + var timeoutID; + if (!timeoutID) { + timeoutID = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + timeoutID = null; + }, 100); } + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); } -} +}); diff --git a/apidocs/search.js b/apidocs/search.js new file mode 100644 index 0000000..db3b2f4 --- /dev/null +++ b/apidocs/search.js @@ -0,0 +1,354 @@ +/* + * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var noResult = {l: "No results found"}; +var loading = {l: "Loading search index..."}; +var catModules = "Modules"; +var catPackages = "Packages"; +var catTypes = "Classes and Interfaces"; +var catMembers = "Members"; +var catSearchTags = "Search Tags"; +var highlight = "$&"; +var searchPattern = ""; +var fallbackPattern = ""; +var RANKING_THRESHOLD = 2; +var NO_MATCH = 0xffff; +var MIN_RESULTS = 3; +var MAX_RESULTS = 500; +var UNNAMED = ""; +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(item, matcher, fallbackMatcher) { + var escapedItem = escapeHtml(item); + var highlighted = escapedItem.replace(matcher, highlight); + if (highlighted === escapedItem) { + highlighted = escapedItem.replace(fallbackMatcher, highlight) + } + return highlighted; +} +function getURLPrefix(ui) { + var urlPrefix=""; + var slash = "/"; + if (ui.item.category === catModules) { + return ui.item.l + slash; + } else if (ui.item.category === catPackages && ui.item.m) { + return ui.item.m + slash; + } else if (ui.item.category === catTypes || ui.item.category === catMembers) { + if (ui.item.m) { + urlPrefix = ui.item.m + slash; + } else { + $.each(packageSearchIndex, function(index, item) { + if (item.m && ui.item.p === item.l) { + urlPrefix = item.m + slash; + } + }); + } + } + return urlPrefix; +} +function createSearchPattern(term) { + var pattern = ""; + var isWordToken = false; + term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) { + if (index > 0) { + // whitespace between identifiers is significant + pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*"; + } + var tokens = w.split(/(?=[A-Z,.()<>[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + if (s === "") { + continue; + } + pattern += $.ui.autocomplete.escapeRegex(s); + isWordToken = /\w$/.test(s); + if (isWordToken) { + pattern += "([a-z0-9_$<>\\[\\]]*?)"; + } + } + }); + return pattern; +} +function createMatcher(pattern, flags) { + var isCamelCase = /[A-Z]/.test(pattern); + return new RegExp(pattern, flags + (isCamelCase ? "" : "i")); +} +var watermark = 'Search'; +$(function() { + var search = $("#search-input"); + var reset = $("#reset-button"); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + search.val(watermark).addClass('watermark'); + search.blur(function() { + if ($(this).val().length === 0) { + $(this).val(watermark).addClass('watermark'); + } + }); + search.on('click keydown paste', function() { + if ($(this).val() === watermark) { + $(this).val('').removeClass('watermark'); + } + }); + reset.click(function() { + search.val('').focus(); + }); + search.focus()[0].setSelectionRange(0, 0); +}); +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); + }, + _renderMenu: function(ul, items) { + var rMenu = this; + var currentCategory = ""; + rMenu.menu.bindings = $(); + $.each(items, function(index, item) { + var li; + if (item.category && item.category !== currentCategory) { + ul.append("
    • " + item.category + "
    • "); + currentCategory = item.category; + } + li = rMenu._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", item.category + " : " + item.l); + li.attr("class", "result-item"); + } else { + li.attr("aria-label", item.l); + li.attr("class", "result-item"); + } + }); + }, + _renderItem: function(ul, item) { + var label = ""; + var matcher = createMatcher(escapeHtml(searchPattern), "g"); + var fallbackMatcher = new RegExp(fallbackPattern, "gi") + if (item.category === catModules) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catPackages) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catTypes) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catMembers) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher); + } else if (item.category === catSearchTags) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else { + label = item.l; + } + var li = $("
    • ").appendTo(ul); + var div = $("
      ").appendTo(li); + if (item.category === catSearchTags && item.h) { + if (item.d) { + div.html(label + " (" + item.h + ")
      " + + item.d + "
      "); + } else { + div.html(label + " (" + item.h + ")"); + } + } else { + if (item.m) { + div.html(item.m + "/" + label); + } else { + div.html(label); + } + } + return li; + } +}); +function rankMatch(match, category) { + if (!match) { + return NO_MATCH; + } + var index = match.index; + var input = match.input; + var leftBoundaryMatch = 2; + var periferalMatch = 0; + // make sure match is anchored on a left word boundary + if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) { + leftBoundaryMatch = 0; + } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) { + leftBoundaryMatch = 1; + } + var matchEnd = index + match[0].length; + var leftParen = input.indexOf("("); + var endOfName = leftParen > -1 ? leftParen : input.length; + // exclude peripheral matches + if (category !== catModules && category !== catSearchTags) { + var delim = category === catPackages ? "/" : "."; + if (leftParen > -1 && leftParen < index) { + periferalMatch += 2; + } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) { + periferalMatch += 2; + } + } + var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match + for (var i = 1; i < match.length; i++) { + // lower ranking if parts of the name are missing + if (match[i]) + delta += match[i].length; + } + if (category === catTypes) { + // lower ranking if a type name contains unmatched camel-case parts + if (/[A-Z]/.test(input.substring(matchEnd))) + delta += 5; + if (/[A-Z]/.test(input.substring(0, index))) + delta += 5; + } + return leftBoundaryMatch + periferalMatch + (delta / 200); + +} +function doSearch(request, response) { + var result = []; + searchPattern = createSearchPattern(request.term); + fallbackPattern = createSearchPattern(request.term.toLowerCase()); + if (searchPattern === "") { + return this.close(); + } + var camelCaseMatcher = createMatcher(searchPattern, ""); + var fallbackMatcher = new RegExp(fallbackPattern, "i"); + + function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) { + if (indexArray) { + var newResults = []; + $.each(indexArray, function (i, item) { + item.category = category; + var ranking = rankMatch(matcher.exec(nameFunc(item)), category); + if (ranking < RANKING_THRESHOLD) { + newResults.push({ranking: ranking, item: item}); + } + return newResults.length <= MAX_RESULTS; + }); + return newResults.sort(function(e1, e2) { + return e1.ranking - e2.ranking; + }).map(function(e) { + return e.item; + }); + } + return []; + } + function searchIndex(indexArray, category, nameFunc) { + var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc); + result = result.concat(primaryResults); + if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) { + var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc); + result = result.concat(secondaryResults.filter(function (item) { + return primaryResults.indexOf(item) === -1; + })); + } + } + + searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; }); + searchIndex(packageSearchIndex, catPackages, function(item) { + return (item.m && request.term.indexOf("/") > -1) + ? (item.m + "/" + item.l) : item.l; + }); + searchIndex(typeSearchIndex, catTypes, function(item) { + return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l; + }); + searchIndex(memberSearchIndex, catMembers, function(item) { + return request.term.indexOf(".") > -1 + ? item.p + "." + item.c + "." + item.l : item.l; + }); + searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; }); + + if (!indexFilesLoaded()) { + updateSearchResults = function() { + doSearch(request, response); + } + result.unshift(loading); + } else { + updateSearchResults = function() {}; + } + response(result); +} +$(function() { + $("#search-input").catcomplete({ + minLength: 1, + delay: 300, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push(noResult); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.category) { + var url = getURLPrefix(ui); + if (ui.item.category === catModules) { + url += "module-summary.html"; + } else if (ui.item.category === catPackages) { + if (ui.item.u) { + url = ui.item.u; + } else { + url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (ui.item.category === catTypes) { + if (ui.item.u) { + url = ui.item.u; + } else if (ui.item.p === UNNAMED) { + url += ui.item.l + ".html"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; + } + } else if (ui.item.category === catMembers) { + if (ui.item.p === UNNAMED) { + url += ui.item.c + ".html" + "#"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; + } + if (ui.item.u) { + url += ui.item.u; + } else { + url += ui.item.l; + } + } else if (ui.item.category === catSearchTags) { + url += ui.item.u; + } + if (top !== window) { + parent.classFrame.location = pathtoroot + url; + } else { + window.location.href = pathtoroot + url; + } + $("#search-input").focus(); + } + } + }); +}); diff --git a/apidocs/serialized-form.html b/apidocs/serialized-form.html index e8c3843..538d4be 100644 --- a/apidocs/serialized-form.html +++ b/apidocs/serialized-form.html @@ -1,153 +1,93 @@ - - + - + +Serialized Form (connect-sdk-java-spring-boot-starter 4.0 API) + -Serialized Form (connect-sdk-java-spring-boot-starter 3.8 API) + + + + + + - - + + +
      + +
      +

      Serialized Form

      -
      -
      +
      +
      + +
      - -
      - - - - - - - -
      - - -

      Copyright © 2019–2023. All rights reserved.

      diff --git a/apidocs/stylesheet.css b/apidocs/stylesheet.css index 98055b2..4a576bd 100644 --- a/apidocs/stylesheet.css +++ b/apidocs/stylesheet.css @@ -1,36 +1,45 @@ -/* Javadoc style sheet */ /* -Overall document style -*/ + * Javadoc style sheet + */ @import url('resources/fonts/dejavu.css'); +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ + body { background-color:#ffffff; color:#353833; font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; font-size:14px; margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; } a:link, a:visited { text-decoration:none; color:#4A6782; } -a:hover, a:focus { +a[href]:hover, a[href]: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; @@ -43,22 +52,24 @@ h2 { } h3 { font-size:16px; - font-style:italic; } h4 { - font-size:13px; + font-size:15px; } h5 { - font-size:12px; + font-size:14px; } h6 { - font-size:11px; + font-size:13px; } ul { list-style-type:disc; } code, tt { font-family:'DejaVu Sans Mono', monospace; +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { font-size:14px; padding-top:4px; margin-top:8px; @@ -69,7 +80,7 @@ dt code { font-size:14px; padding-top:4px; } -table tr td dt code { +.summary-table dt code { font-family:'DejaVu Sans Mono', monospace; font-size:14px; vertical-align:top; @@ -78,31 +89,34 @@ table tr td dt code { sup { font-size:8px; } +button { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size: 14px; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + /* -Document title and Copyright styles -*/ + * Styles for document title and copyright. + */ .clear { clear:both; - height:0px; + height:0; overflow:hidden; } -.aboutLanguage { +.about-language { float:right; - padding:0px 21px; + padding:0 21px 8px 8px; font-size:11px; - z-index:200; margin-top:-9px; + height:2.9em; } -.legalCopy { +.legal-copy { 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; @@ -111,263 +125,240 @@ Document title and Copyright styles 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; + * Styles for navigation bar. + */ +@media screen { + .flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + .flex-header { + flex: 0 0 auto; + } + .flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { background-color:#4D7A97; color:#FFFFFF; float:left; padding:0; width:100%; clear:right; - height:2.8em; + min-height:2.8em; padding-top:10px; overflow:hidden; font-size:12px; } -.subNav { +.sub-nav { background-color:#dee3e9; float:left; width:100%; overflow:hidden; font-size:12px; } -.subNav div { +.sub-nav div { clear:left; float:left; padding:0 0 5px 6px; text-transform:uppercase; } -ul.navList, ul.subNavList { +.sub-nav .nav-list { + padding-top:5px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { float:left; margin:0 25px 0 0; padding:0; } -ul.navList li{ +ul.nav-list li { list-style:none; float:left; padding: 5px 6px; text-transform:uppercase; } -ul.subNavList li{ +.sub-nav .nav-list-search { + float:right; + margin:0 0 0 0; + padding:5px 6px; + clear:none; +} +.nav-list-search label { + position:relative; + right:-16px; +} +ul.sub-nav-list li { list-style:none; float:left; + padding-top:10px; } -.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { +.top-nav a:link, .top-nav a:active, .top-nav a:visited { color:#FFFFFF; text-decoration:none; text-transform:uppercase; } -.topNav a:hover, .bottomNav a:hover { +.top-nav a:hover { text-decoration:none; color:#bb7a2a; text-transform:uppercase; } -.navBarCell1Rev { +.nav-bar-cell1-rev { background-color:#F8981D; color:#253441; margin: auto 5px; } -.skipNav { +.skip-nav { 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; + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } } +/* + * Styles for page header and footer. + */ .title { color:#2c4557; margin:10px 0; } -.subTitle { +.sub-title { 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; + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; } -ul.blockList ul.blockList ul.blockList li.blockList h3 { +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { 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 { + * Styles for page layout containers. + */ +main { 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 { +dl.notes > dt { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; 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; +dl.notes > dd { + margin:5px 10px 10px 0; font-size:14px; - font-family:'DejaVu Sans Mono',monospace; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; } -.serializedFormContainer dl.nameValue dt { +dl.name-value > dt { margin-left:1px; font-size:1.1em; display:inline; font-weight:bold; } -.serializedFormContainer dl.nameValue dd { +dl.name-value > dd { margin:0 0 0 1px; font-size:1.1em; display:inline; } /* -List styles -*/ + * Styles for lists. + */ +li.circle { + list-style:circle; +} ul.horizontal li { display:inline; font-size:0.9em; } -ul.inheritance { +div.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; +div.inheritance div.inheritance { + margin-left:2em; } -ul.blockList, ul.blockListLast { +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { margin:10px 0 10px 0; padding:0; } -ul.blockList li.blockList, ul.blockListLast li.blockList { +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { 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; +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; } -ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { - margin-left:0; - padding-left:0; - padding-bottom:15px; - border:none; +ul.see-list, ul.see-list-long { + padding-left: 0; + list-style: none; } -ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { - list-style:none; - border-bottom:none; - padding-bottom:0; +ul.see-list li { + display: inline; } -table tr td dl, table tr td dl dt, table tr td dl dd { - margin-top:0; - margin-bottom:1px; +ul.see-list li:not(:last-child):after, +ul.see-list-long li:not(:last-child):after { + content: ", "; + white-space: pre-wrap; } /* -Table styles -*/ -.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + * Styles for tables. + */ +.summary-table, .details-table { width:100%; - border-left:1px solid #EEE; - border-right:1px solid #EEE; - border-bottom:1px solid #EEE; -} -.overviewSummary, .memberSummary { - padding:0px; + border-spacing:0; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; + padding:0; } -.overviewSummary caption, .memberSummary caption, .typeSummary caption, -.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { +.caption { position:relative; text-align:left; background-repeat:no-repeat; @@ -375,24 +366,20 @@ Table styles font-weight:bold; clear:none; overflow:hidden; - padding:0px; + padding:0; padding-top:10px; padding-left:1px; - margin:0px; + margin:0; 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 { +.caption a:link, .caption a:visited { + color:#1f389c; +} +.caption a:hover, +.caption a:active { color:#FFFFFF; } -.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, -.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { +.caption span { white-space:nowrap; padding-top:5px; padding-left:12px; @@ -404,144 +391,150 @@ Table styles 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; - +div.table-tabs { + padding:10px 0 0 1px; + margin:0; } -.overviewSummary td, .memberSummary td, .typeSummary td, -.useSummary td, .constantsSummary td, .deprecatedSummary td { +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; +} +div.table-tabs > button.active-table-tab { + background: #F8981D; + color: #253441; +} +div.table-tabs > button.table-tab { + background: #4D7A97; + color: #FFFFFF; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto); +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +@media screen and (max-width: 800px) { + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-summary .col-last { + grid-column-end: span 2; + } +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +.summary-table > div, .details-table > div { text-align:left; - padding:0px 0px 12px 10px; + padding: 8px 3px 3px 7px; } -th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, -td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { vertical-align:top; - padding-right:0px; + padding-right:0; padding-top:8px; padding-bottom:3px; } -th.colFirst, th.colLast, th.colOne, .constantsSummary th { +.table-header { background:#dee3e9; - text-align:left; - padding:8px 3px 3px 7px; + font-weight: bold; } -td.colFirst, th.colFirst { - white-space:nowrap; +.col-first, .col-first { font-size:13px; } -td.colLast, th.colLast { +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { 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%; +.col-first, .col-second, .col-constructor-name { 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 { + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited, +.constant-values-container a:link, .constant-values-container a:visited, +.all-classes-container a:link, .all-classes-container a:visited, +.all-packages-container a:link, .all-packages-container a:visited { font-weight:bold; } -.tableSubHeadingColor { +.table-sub-heading-color { background-color:#EEEEFF; } -.altColor { +.even-row-color, .even-row-color .table-header { background-color:#FFFFFF; } -.rowColor { +.odd-row-color, .odd-row-color .table-header { background-color:#EEEEEF; } /* -Content styles -*/ -.description pre { - margin-top:0; -} -.deprecatedContent { + * Styles for contents. + */ +.deprecated-content { 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; +.col-last div { + padding-top:0; } - - -td.colLast a { +.col-last a { padding-bottom:3px; } +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} /* -Formatting effect styles -*/ -.sourceLineNo { + * Styles for formatting effect. + */ +.source-line-no { color:green; padding:0 30px 0 0; } @@ -552,23 +545,325 @@ h1.hidden { } .block { display:block; - margin:3px 10px 2px 0px; + margin:0 10px 5px 0; color:#474747; } -.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, -.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, -.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { +.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { font-weight:bold; } -.deprecationComment, .emphasizedPhrase, .interfaceName { +.deprecation-comment, .help-footnote, .preview-comment { font-style:italic; } - -div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, -div.block div.block span.interfaceName { +.deprecation-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { font-style:normal; } +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:#4D7A97; + color:#FFFFFF; +} +.result-item { + font-size:13px; +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:scroll; + overflow-x:scroll; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:999999; + background-color: #FFFFFF; +} +ul.ui-autocomplete li { + float:left; + clear:both; + width:100%; +} +.result-highlight { + font-weight:bold; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +#search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + padding-left:20px; + position:relative; + right:-18px; + width:400px; +} +#reset-button { + background-color: rgb(255,255,255); + background-image:url('resources/x.png'); + background-position:center; + background-repeat:no-repeat; + background-size:12px; + border:0 none; + width:16px; + height:16px; + position:relative; + left:-4px; + top:-4px; + font-size:0px; +} +.watermark { + color:#545454; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:yellow; +} +.module-graph span { + display:none; + position:absolute; +} +.module-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0px 20px 5px 10px; + border: 1px solid #ededed; + background-color: #f8f8f8; +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +span.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} -div.contentContainer ul.blockList li.blockList h2{ - padding-bottom:0px; +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid black; +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid black; +} +table.striped { + border-collapse: collapse; + border: 1px solid black; +} +table.striped > thead { + background-color: #E3E3E3; +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid black; +} +table.striped > tbody > tr:nth-child(even) { + background-color: #EEE +} +table.striped > tbody > tr:nth-child(odd) { + background-color: #FFF +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid black; + border-right: 1px solid black; +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak font sizes and paddings for small screens. + */ +@media screen and (max-width: 1050px) { + #search-input { + width: 300px; + } +} +@media screen and (max-width: 800px) { + #search-input { + width: 200px; + } + .top-nav, + .bottom-nav { + font-size: 11px; + padding-top: 6px; + } + .sub-nav { + font-size: 11px; + } + .about-language { + padding-right: 16px; + } + ul.nav-list li, + .sub-nav .nav-list-search { + padding: 6px; + } + ul.sub-nav-list li { + padding-top: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 500px) { + #search-input { + width: 150px; + } + .top-nav, + .bottom-nav { + font-size: 10px; + } + .sub-nav { + font-size: 10px; + } + .about-language { + font-size: 10px; + padding-right: 12px; + } } diff --git a/apidocs/tag-search-index.js b/apidocs/tag-search-index.js new file mode 100644 index 0000000..f38b3cb --- /dev/null +++ b/apidocs/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); \ No newline at end of file diff --git a/apidocs/type-search-index.js b/apidocs/type-search-index.js new file mode 100644 index 0000000..8ab6ac6 --- /dev/null +++ b/apidocs/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","l":"ApiKeyEndpoint"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","l":"ConnectionsEndpoint.BeanNotCloseableException"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","l":"ConnectionsEndpoint.CloseableBeans"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","l":"ConnectionsEndpoint.CloseableConnectionState"},{"p":"com.github.robtimus.connect.sdk.java.springboot","l":"ConfigurableV1HMACAuthenticator"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","l":"ConnectionsEndpoint"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkAuthenticatorAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkClientAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkCommunicatorAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkCommunicatorLoggerAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkConnectionAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkConnectionsEndpointAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","l":"ConnectSdkHealthIndicator"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkHealthIndicatorAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkLoggingEndpointAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkMarshallerAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkMerchantClientAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkMetadataProviderAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkProperties"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkVersionClientAutoConfiguration"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkProperties.Endpoint"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkProperties.HTTPS"},{"p":"com.github.robtimus.connect.sdk.java.springboot.logging","l":"LogbackCommunicatorLogger"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","l":"LoggingEndpoint.LoggingCapableAndLoggerBeans"},{"p":"com.github.robtimus.connect.sdk.java.springboot.actuator","l":"LoggingEndpoint"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"MetadataProviderBuilderCustomizer"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkProperties.Proxy"},{"p":"com.github.robtimus.connect.sdk.java.springboot.autoconfigure","l":"ConnectSdkProperties.ShoppingCartExtension"}];updateSearchResults(); \ No newline at end of file diff --git a/auto-configuration.html b/auto-configuration.html index 40a544f..86150e0 100644 --- a/auto-configuration.html +++ b/auto-configuration.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -77,24 +77,24 @@

      Auto-Configuration

      This allows you to provide only those beans that you want, and have this Spring Boot starter auto-configure the rest.

      -

      Marshaller

      +

      Marshaller

      Conditions: none.

      -

      Authenticator

      +

      Authenticator

      Conditions:

        -
      • Properties connect.api.api-key-id and connect.api.secret-api-key are set.
      • +
      • Properties connect.api.authorization-id and connect.api.authorization-secret are set.

      This Authenticator can be further auto-configured with the authorization type.

      -

      PooledConnection

      +

      PooledConnection

      Conditions: none.

      @@ -109,12 +109,12 @@

      Connection management

      Obfuscation

      If a PooledConnection is auto-configured, - any unique bean of type BodyObfuscator - or HeaderObfuscator + any unique bean of type BodyObfuscator + or HeaderObfuscator will be automatically set on the connection.

      -

      MetaDataProvider

      +

      MetadataProvider

      Conditions:

      @@ -123,13 +123,13 @@

      MetaDataProviderBuilderCustomizer. +

      In addition, the MetadataProvider can be further configured by providing beans of type MetadataProviderBuilderCustomizer. This allows you to provide additional headers.

      -

      Session

      +

      Communicator

      Conditions:

      @@ -137,33 +137,33 @@

      Communicator

      +

      Client

      Conditions:

        -
      • Beans of type Marshaller and Session are available.
      • +
      • A bean of type Communicator is available.
      -

      Client

      +

      V1Client

      Conditions:

        -
      • A bean of type Communicator is available.
      • +
      • A bean of type Client is available.
      -

      MerchantClient

      +

      MerchantClient

      Conditions:

      @@ -171,11 +171,11 @@

      CommunicatorLogger

      +

      CommunicatorLogger

      Conditions:

      @@ -198,8 +198,8 @@

      test connection functionality to check your connectivity to the Ingenico Server API. - To prevent too many requests to the Ingenico Server API this is throttled to at most 1 request every minute. This can be changed by setting property connect.api.health.min-interval to the desired number of seconds between calls.

      +

      This health indicator will use the test connection functionality to check your connectivity to the Worldline Connect Server API. + To prevent too many requests to the Worldline Connect Server API this is throttled to at most 1 request every minute. This can be changed by setting property connect.api.health.min-interval to the desired number of seconds between calls.

      If you want to have a bean of type MerchantClient (auto-configured or not) but you don't want this auto-configured health indicator, you can disable it by setting property management.health.connect-sdk.enabled to false.

      @@ -213,7 +213,7 @@

      -

      © 2019–2023 +

      © 2019–2024

      diff --git a/dependencies.html b/dependencies.html index e75ef5f..74dd8eb 100644 --- a/dependencies.html +++ b/dependencies.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -92,16 +92,16 @@

      compile

      Apache-2.0 No -com.ingenico.connect.gateway -connect-sdk-java -6.42.0 +com.worldline-solutions.connect +connect-sdk-java +7.0.0 jar -MIT +MIT No commons-codec commons-codec -1.16.0 +1.16.1 jar Apache-2.0 No @@ -122,14 +122,14 @@

      compile

      org.springframework.boot spring-boot-autoconfigure -2.7.16 +3.2.4 jar Apache License, Version 2.0 No org.springframework.boot spring-boot-starter -2.7.16 +3.2.4 jar Apache License, Version 2.0 No @@ -143,21 +143,21 @@

      compile

      org.springframework.boot spring-boot-autoconfigure-processor -2.7.16 +3.2.4 jar Apache License, Version 2.0 Yes org.springframework.boot spring-boot-configuration-processor -2.7.16 +3.2.4 jar Apache License, Version 2.0 Yes org.springframework.boot spring-boot-starter-actuator -2.7.16 +3.2.4 jar Apache License, Version 2.0 Yes
      @@ -173,16 +173,28 @@

      test

      org.awaitility awaitility -4.2.0 +4.2.1 jar Apache 2.0 org.junit.vintage junit-vintage-engine -5.9.2 +5.10.1 jar Eclipse Public License v2.0 +org.mockito +mockito-core +5.11.0 +jar +MIT + +org.mockito +mockito-junit-jupiter +5.11.0 +jar +MIT + org.powermock powermock-api-mockito2 2.0.9 @@ -197,13 +209,13 @@

      test

      org.springframework.boot spring-boot-starter-test -2.7.16 +3.2.4 jar Apache License, Version 2.0 org.springframework.boot spring-boot-starter-web -2.7.16 +3.2.4 jar Apache License, Version 2.0

      Project Transitive Dependencies

      @@ -221,14 +233,14 @@

      compile

      ch.qos.logback logback-classic -1.2.12 +1.4.14 jar Eclipse Public License - v 1.0GNU Lesser General Public License No ch.qos.logback logback-core -1.2.12 +1.4.14 jar Eclipse Public License - v 1.0GNU Lesser General Public License No @@ -240,9 +252,23 @@

      compile

      The Apache Software License, Version 2.0 No +io.micrometer +micrometer-commons +1.12.4 +jar +The Apache Software License, Version 2.0 +No + +io.micrometer +micrometer-observation +1.12.4 +jar +The Apache Software License, Version 2.0 +No + jakarta.annotation jakarta.annotation-api -1.3.5 +2.1.1 jar EPL 2.0GPL2 w/ CPE No @@ -255,113 +281,113 @@

      compile

      No org.apache.logging.log4j -log4j-api -2.17.2 +log4j-api +2.21.1 jar -Apache License, Version 2.0 +Apache-2.0 No org.apache.logging.log4j -log4j-to-slf4j -2.17.2 +log4j-to-slf4j +2.21.1 jar -Apache License, Version 2.0 +Apache-2.0 No org.slf4j jul-to-slf4j -1.7.36 +2.0.12 jar MIT License No org.slf4j slf4j-api -1.7.32 +2.0.7 jar MIT License No org.springframework spring-aop -5.3.30 +6.1.5 jar Apache License, Version 2.0 No org.springframework spring-beans -5.3.30 +6.1.5 jar Apache License, Version 2.0 No org.springframework spring-context -5.3.30 +6.1.5 jar Apache License, Version 2.0 No org.springframework spring-core -5.3.30 +6.1.5 jar Apache License, Version 2.0 No org.springframework spring-expression -5.3.30 +6.1.5 jar Apache License, Version 2.0 No org.springframework spring-jcl -5.3.30 +6.1.5 jar Apache License, Version 2.0 No org.springframework.boot spring-boot -2.7.16 +3.2.4 jar Apache License, Version 2.0 No org.springframework.boot spring-boot-starter-logging -2.7.16 +3.2.4 jar Apache License, Version 2.0 No io.micrometer micrometer-core -1.9.15 +1.12.4 jar The Apache Software License, Version 2.0 Yes -org.hdrhistogram -HdrHistogram -2.1.12 +io.micrometer +micrometer-jakarta9 +1.12.4 jar -Public Domain, per Creative Commons CC0BSD-2-Clause +The Apache Software License, Version 2.0 Yes org.springframework.boot spring-boot-actuator -2.7.16 +3.2.4 jar Apache License, Version 2.0 Yes org.springframework.boot spring-boot-actuator-autoconfigure -2.7.16 +3.2.4 jar Apache License, Version 2.0 Yes
      @@ -377,33 +403,40 @@

      runtime

      Optional com.fasterxml.jackson.core -jackson-annotations -2.13.5 +jackson-annotations +2.15.4 jar -The Apache Software License, Version 2.0 +The Apache Software License, Version 2.0 No com.fasterxml.jackson.core jackson-core -2.13.5 +2.15.4 jar -The Apache Software License, Version 2.0 +The Apache Software License, Version 2.0 No com.fasterxml.jackson.core -jackson-databind -2.13.5 +jackson-databind +2.15.4 jar -The Apache Software License, Version 2.0 +The Apache Software License, Version 2.0 No com.fasterxml.jackson.datatype jackson-datatype-jsr310 -2.13.5 +2.15.4 jar The Apache Software License, Version 2.0 No +org.hdrhistogram +HdrHistogram +2.1.12 +jar +Public Domain, per Creative Commons CC0BSD-2-Clause +Yes + org.latencyutils LatencyUtils 2.0.3 @@ -422,13 +455,13 @@

      test

      com.fasterxml.jackson.datatype jackson-datatype-jdk8 -2.13.5 +2.15.4 jar The Apache Software License, Version 2.0 com.fasterxml.jackson.module jackson-module-parameter-names -2.13.5 +2.15.4 jar The Apache Software License, Version 2.0 @@ -439,14 +472,14 @@

      test

      Apache License 2.0 jakarta.activation -jakarta.activation-api -1.2.2 +jakarta.activation-api +2.1.3 jar EDL 1.0 jakarta.xml.bind -jakarta.xml.bind-api -2.3.3 +jakarta.xml.bind-api +4.0.2 jar Eclipse Distribution License - v 1.0 @@ -458,31 +491,43 @@

      test

      net.bytebuddy byte-buddy -1.12.19 +1.14.12 jar Apache License, Version 2.0 net.bytebuddy byte-buddy-agent -1.12.19 +1.14.12 jar Apache License, Version 2.0 +net.minidev +accessors-smart +2.5.0 +jar +The Apache Software License, Version 2.0 + +net.minidev +json-smart +2.5.0 +jar +The Apache Software License, Version 2.0 + org.apache.tomcat.embed tomcat-embed-core -9.0.80 +10.1.19 jar Apache License, Version 2.0 org.apache.tomcat.embed tomcat-embed-el -9.0.80 +10.1.19 jar Apache License, Version 2.0 org.apache.tomcat.embed tomcat-embed-websocket -9.0.80 +10.1.19 jar Apache License, Version 2.0 @@ -493,10 +538,10 @@

      test

      The Apache License, Version 2.0 org.assertj -assertj-core -3.22.0 +assertj-core +3.24.2 jar -Apache License, Version 2.0 +Apache License, Version 2.0 org.hamcrest hamcrest @@ -518,52 +563,40 @@

      test

      org.junit.jupiter junit-jupiter -5.9.2 +5.10.1 jar Eclipse Public License v2.0 org.junit.jupiter junit-jupiter-api -5.9.2 +5.10.2 jar Eclipse Public License v2.0 org.junit.jupiter junit-jupiter-engine -5.9.2 +5.10.1 jar Eclipse Public License v2.0 org.junit.jupiter junit-jupiter-params -5.9.2 +5.10.1 jar Eclipse Public License v2.0 org.junit.platform junit-platform-commons -1.9.2 +1.10.1 jar Eclipse Public License v2.0 org.junit.platform junit-platform-engine -1.9.2 +1.10.1 jar Eclipse Public License v2.0 -org.mockito -mockito-core -4.11.0 -jar -The MIT License - -org.mockito -mockito-junit-jupiter -4.5.1 -jar -The MIT License - org.objenesis objenesis 3.3 @@ -572,89 +605,94 @@

      test

      org.opentest4j opentest4j -1.2.0 +1.3.0 jar -The Apache License, Version 2.0 +The Apache License, Version 2.0 +org.ow2.asm +asm +9.3 +jar +BSD-3-Clause + org.powermock powermock-api-support 2.0.9 jar The Apache Software License, Version 2.0 - + org.powermock powermock-core 2.0.9 jar The Apache Software License, Version 2.0 - + org.powermock powermock-module-junit4-common 2.0.9 jar The Apache Software License, Version 2.0 - + org.powermock powermock-reflect 2.0.9 jar The Apache Software License, Version 2.0 - + org.skyscreamer jsonassert 1.5.1 jar The Apache Software License, Version 2.0 - + org.springframework spring-test -5.3.30 +6.1.5 jar Apache License, Version 2.0 - + org.springframework spring-web -5.3.30 +6.1.5 jar Apache License, Version 2.0 - + org.springframework spring-webmvc -5.3.30 +6.1.5 jar Apache License, Version 2.0 - + org.springframework.boot spring-boot-starter-json -2.7.16 +3.2.4 jar Apache License, Version 2.0 - + org.springframework.boot spring-boot-starter-tomcat -2.7.16 +3.2.4 jar Apache License, Version 2.0 - + org.springframework.boot spring-boot-test -2.7.16 +3.2.4 jar Apache License, Version 2.0 - + org.springframework.boot spring-boot-test-autoconfigure -2.7.16 +3.2.4 jar Apache License, Version 2.0 - + org.xmlunit xmlunit-core 2.9.1 jar The Apache Software License, Version 2.0
      -

      Project Dependency Graph

      - -
      +

      Dependency Tree

    • org.apache.httpcomponents:httpclient:jar:4.5.14 (compile) [Information] @@ -710,7 +747,7 @@

      Dependency Tree

      Apache HttpCore - +

      Description: Apache HttpComponents Core (blocking I/O)

      URL: http://hc.apache.org/httpcomponents-core-ga

      Project Licenses: Apache License, Version 2.0

    • @@ -719,7 +756,7 @@

      Dependency Tree

      Apache Commons Logging - +

      Description: Apache Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.

      URL: http://commons.apache.org/proper/commons-logging/

      @@ -729,7 +766,7 @@

      Dependency Tree

      Apache HttpClient Mime - +

      Description: Apache HttpComponents HttpClient - MIME coded entities

      URL: http://hc.apache.org/httpcomponents-client-ga

      Project Licenses: Apache License, Version 2.0

      @@ -738,170 +775,170 @@

      Dependency Tree

      Gson - +

      Description: Gson JSON library

      URL: https://github.com/google/gson/gson

      Project Licenses: Apache-2.0

      -
    • commons-codec:commons-codec:jar:1.16.0 (compile) [Information]
    • commons-codec:commons-codec:jar:1.16.1 (compile) [Information]
    • -
    • org.springframework.boot:spring-boot-autoconfigure:jar:2.7.16 (compile) [Information]
    • org.springframework.boot:spring-boot-autoconfigure:jar:3.2.4 (compile) [Information]
    • -
    • org.springframework.boot:spring-boot-autoconfigure-processor:jar:2.7.16 (compile) [Information]
    • org.springframework.boot:spring-boot-autoconfigure-processor:jar:3.2.4 (compile) [Information]
    • -
    • org.springframework.boot:spring-boot-configuration-processor:jar:2.7.16 (compile) [Information]
    • org.springframework.boot:spring-boot-configuration-processor:jar:3.2.4 (compile) [Information]
    • -
    • org.springframework.boot:spring-boot-starter:jar:2.7.16 (compile) [Information]
    • org.springframework.boot:spring-boot-starter:jar:3.2.4 (compile) [Information]
    -
  • org.slf4j:jul-to-slf4j:jar:1.7.36 (compile) [Information]
  • +
  • org.slf4j:jul-to-slf4j:jar:2.0.12 (compile) [Information]
  • -
  • jakarta.annotation:jakarta.annotation-api:jar:1.3.5 (compile) [Information]
  • jakarta.annotation:jakarta.annotation-api:jar:2.1.1 (compile) [Information]
  • -
  • org.springframework:spring-core:jar:5.3.30 (compile) [Information]
  • org.springframework:spring-core:jar:6.1.5 (compile) [Information]
  • @@ -910,92 +947,121 @@

    Dependency Tree

    SnakeYAML - +

    Description: YAML 1.1 parser and emitter for Java

    URL: https://bitbucket.org/snakeyaml/snakeyaml

    Project Licenses: Apache License, Version 2.0

    -
  • org.springframework.boot:spring-boot-starter-actuator:jar:2.7.16 (compile) [Information]
  • org.springframework.boot:spring-boot-starter-actuator:jar:3.2.4 (compile) [Information]
  • -
  • com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.13.5 (runtime) [Information]
  • +
  • com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.15.4 (runtime) [Information]
  • -
  • io.micrometer:micrometer-core:jar:1.9.15 (compile) [Information]
  • io.micrometer:micrometer-observation:jar:1.12.4 (compile) [Information] +
  • +
  • io.micrometer:micrometer-jakarta9:jar:1.12.4 (compile) [Information] +
  • -
  • org.springframework.boot:spring-boot-starter-test:jar:2.7.16 (test) [Information]
  • +
  • org.springframework.boot:spring-boot-starter-test:jar:3.2.4 (test) [Information]
  • -
  • org.springframework:spring-test:jar:5.3.30 (test) [Information]
  • org.springframework:spring-test:jar:6.1.5 (test) [Information]
  • @@ -1197,169 +1236,169 @@

    Dependency Tree

    org.xmlunit:xmlunit-core - +

    Description: XMLUnit for Java

    URL: https://www.xmlunit.org/

    Project Licenses: The Apache Software License, Version 2.0

    -
  • org.springframework.boot:spring-boot-starter-web:jar:2.7.16 (test) [Information]
  • org.springframework.boot:spring-boot-starter-web:jar:3.2.4 (test) [Information]
  • -
  • org.junit.vintage:junit-vintage-engine:jar:5.9.2 (test) [Information]
  • org.junit.vintage:junit-vintage-engine:jar:5.10.1 (test) [Information]
  • @@ -1377,93 +1416,150 @@

    Dependency Tree

    org.apiguardian:apiguardian-api - +

    Description: @API Guardian

    URL: https://github.com/apiguardian-team/apiguardian

    Project Licenses: The Apache License, Version 2.0

    -
  • org.powermock:powermock-module-junit4:jar:2.0.9 (test) [Information]
  • org.mockito:mockito-core:jar:5.11.0 (test) [Information] +
  • +
  • org.mockito:mockito-junit-jupiter:jar:5.11.0 (test) [Information] +
  • +
  • org.powermock:powermock-module-junit4:jar:2.0.9 (test) [Information]
  • -
  • org.powermock:powermock-api-mockito2:jar:2.0.9 (test) [Information]
  • org.powermock:powermock-api-mockito2:jar:2.0.9 (test) [Information]
  • -
  • org.awaitility:awaitility:jar:4.2.0 (test) [Information]
  • org.awaitility:awaitility:jar:4.2.1 (test) [Information]
  • @@ -1473,23 +1569,23 @@

    Licenses

    Apache 2.0: Awaitility

    MIT License: JUL to SLF4J bridge, SLF4J API Module

    BSD-2-Clause: HdrHistogram

    +

    BSD-3-Clause: asm

    BSD License 3: Hamcrest

    Eclipse Public License v2.0: JUnit Jupiter (Aggregator), JUnit Jupiter API, JUnit Jupiter Engine, JUnit Jupiter Params, JUnit Platform Commons, JUnit Platform Engine API, JUnit Vintage Engine

    GPL2 w/ CPE: Jakarta Annotations API

    GNU Lesser General Public License: Logback Classic Module, Logback Core Module

    New BSD License: Hamcrest Core

    Public Domain, per Creative Commons CC0: HdrHistogram, LatencyUtils

    -

    EDL 1.0: Jakarta Activation API jar

    +

    EDL 1.0: Jakarta Activation API

    Apache License 2.0: JSON library from Android SDK, Javassist

    -

    The MIT License: mockito-core, mockito-junit-jupiter

    -

    Apache License, Version 2.0: Apache HttpClient, Apache HttpClient Mime, Apache HttpCore, Apache Log4j API, Apache Log4j to SLF4J Adapter, AssertJ fluent assertions, Byte Buddy (without dependencies), Byte Buddy agent, Objenesis, SnakeYAML, Spring AOP, Spring Beans, Spring Commons Logging Bridge, Spring Context, Spring Core, Spring Expression Language (SpEL), Spring TestContext Framework, Spring Web, Spring Web MVC, spring-boot, spring-boot-actuator, spring-boot-actuator-autoconfigure, spring-boot-autoconfigure, spring-boot-autoconfigure-processor, spring-boot-configuration-processor, spring-boot-starter, spring-boot-starter-actuator, spring-boot-starter-json, spring-boot-starter-logging, spring-boot-starter-test, spring-boot-starter-tomcat, spring-boot-starter-web, spring-boot-test, spring-boot-test-autoconfigure, tomcat-embed-core, tomcat-embed-el, tomcat-embed-websocket

    -

    Apache-2.0: Apache Commons Codec, Gson

    -

    MIT: connect-sdk-java

    +

    Apache License, Version 2.0: Apache HttpClient, Apache HttpClient Mime, Apache HttpCore, AssertJ Core, Byte Buddy (without dependencies), Byte Buddy agent, Objenesis, SnakeYAML, Spring AOP, Spring Beans, Spring Commons Logging Bridge, Spring Context, Spring Core, Spring Expression Language (SpEL), Spring TestContext Framework, Spring Web, Spring Web MVC, spring-boot, spring-boot-actuator, spring-boot-actuator-autoconfigure, spring-boot-autoconfigure, spring-boot-autoconfigure-processor, spring-boot-configuration-processor, spring-boot-starter, spring-boot-starter-actuator, spring-boot-starter-json, spring-boot-starter-logging, spring-boot-starter-test, spring-boot-starter-tomcat, spring-boot-starter-web, spring-boot-test, spring-boot-test-autoconfigure, tomcat-embed-core, tomcat-embed-el, tomcat-embed-websocket

    +

    Apache-2.0: Apache Commons Codec, Apache Log4j API, Apache Log4j to SLF4J Adapter, Gson

    +

    MIT: connect-sdk-java, mockito-core, mockito-junit-jupiter

    Eclipse Distribution License - v 1.0: Jakarta XML Binding API

    LGPL 2.1: Javassist

    EPL 2.0: Jakarta Annotations API

    MPL 1.1: Javassist

    -

    The Apache Software License, Version 2.0: Apache Commons Logging, JSONassert, Jackson datatype: JSR310, Jackson datatype: jdk8, Jackson-annotations, Jackson-core, Jackson-module-parameter-names, PowerMock, connect-sdk-java-spring-boot-starter, jackson-databind, micrometer-core, org.xmlunit:xmlunit-core

    +

    The Apache Software License, Version 2.0: ASM based accessors helper used by json-smart, Apache Commons Logging, JSON Small and Fast Parser, JSONassert, Jackson datatype: JSR310, Jackson datatype: jdk8, Jackson-annotations, Jackson-core, Jackson-module-parameter-names, PowerMock, connect-sdk-java-spring-boot-starter, jackson-databind, micrometer-commons, micrometer-core, micrometer-jakarta9, micrometer-observation, org.xmlunit:xmlunit-core

    Eclipse Public License - v 1.0: Logback Classic Module, Logback Core Module

    Dependency File Details

    @@ -1502,68 +1598,68 @@

    Dependency File Details

    - - - - - - + + + + + + - - - - - - + + + + + + - - - - + + + + - + - - - - - - + + + + + + - - - - - - + + + + + + - - - + + + - + - - - + + + - + - - - + + + - + @@ -1571,17 +1667,9 @@

    Dependency File Details

    - + - - - - - - - - @@ -1589,14 +1677,22 @@

    Dependency File Details

    - - - - - - + + + + + + + + + + + + + + @@ -1606,28 +1702,44 @@

    Dependency File Details

    - - - - - - + + + + + + - - - - - + + + + + - - - - + + + + + + + + + + + + + + + + + + + + - + @@ -1638,20 +1750,36 @@

    Dependency File Details

    - - - - + + + + - + - - + + - + + + + + + + + + + + + + + + + + @@ -1678,44 +1806,44 @@

    Dependency File Details

    - - - - + + + + - + - - - - - - + + + + + + - + - - + + - + - - - - + + + + - + - - - - + + + + - + @@ -1723,21 +1851,21 @@

    Dependency File Details

    - + - - - - - - + + + + + + - - - - + + + + @@ -1766,76 +1894,76 @@

    Dependency File Details

    - + - + - - - - + + + + - + - - - - + + + + - + - - - - + + + + - + - - + + - + - - - - - - + + + + + + - - + + - + - - - - + + + + - + - - - + + + + - - + @@ -1846,14 +1974,22 @@

    Dependency File Details

    - - - - + + + + - + + + + + + + + + @@ -1861,7 +1997,7 @@

    Dependency File Details

    - + @@ -1869,7 +2005,7 @@

    Dependency File Details

    - + @@ -1877,7 +2013,7 @@

    Dependency File Details

    - + @@ -1885,7 +2021,7 @@

    Dependency File Details

    - + @@ -1893,7 +2029,7 @@

    Dependency File Details

    - + @@ -1901,7 +2037,7 @@

    Dependency File Details

    - + @@ -1909,175 +2045,175 @@

    Dependency File Details

    - - - - - - - - - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - + + + + + + + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - - - + + + + + + - + - - - - + + + + - + - + @@ -2085,20 +2221,28 @@

    Dependency File Details

    - + - + + + + + + + + + - - - - - + + + + + @@ -2118,45 +2262,45 @@

    Dependency File Details

    - - - - - - + + + + + + - - - - - - + + + + + + - - - - + + + + - + - - - - + + + + - + - + - + @@ -2166,37 +2310,36 @@

    Dependency File Details

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Java Version Debug Information
    logback-classic-1.2.12.jar231.8 kB207157251.6logback-classic-1.4.14.jar283.5 kB2301782811 Yes
    logback-core-1.2.12.jar448.9 kB398354341.6logback-core-1.4.14.jar597.2 kB5064544211 Yes
    jackson-annotations-2.13.5.jar75.7 kB8472jackson-annotations-2.15.4.jar75.6 kB8673 2-9 Yes
    jackson-core-2.13.5.jar375.2 kB15612813-jackson-core-2.15.4.jar548.2 kB2471861521 Yes
    jackson-databind-2.13.5.jar1.5 MB74670823-jackson-databind-2.15.4.jar1.6 MB816777249 Yes
    jackson-datatype-jdk8-2.13.5.jar34.8 kB39jackson-datatype-jdk8-2.15.4.jar36.1 kB41 23 2-9 Yes
    jackson-datatype-jsr310-2.13.5.jar121.2 kB81jackson-datatype-jsr310-2.15.4.jar122.9 kB82 59 7-9 Yes
    jackson-module-parameter-names-2.13.5.jar9.5 kB21jackson-module-parameter-names-2.15.4.jar10.3 kB23 5 2-9 Yes
    gson-2.10.1.jar 238 218 10-9 Yes
    connect-sdk-java-6.42.0.jar481.9 kB553485521.6Yes
    android-json-0.0.20131108.vaadin1.jar 18.3 kB 12 1 1.5 Yes
    commons-codec-1.16.0.jar360.7 kB2561097
    connect-sdk-java-7.0.0.jar454.4 kB52648627 1.8 Yes
    commons-codec-1.16.1.jar365.5 kB25911089Yes
    commons-logging-1.2.jar 61.8 kB 1.2 Yes
    jakarta.activation-api-1.2.2.jar46.6 kB43322-micrometer-commons-1.12.4.jar47.4 kB503661.8 Yes
    jakarta.annotation-api-1.3.5.jar25.1 kB28153micrometer-observation-1.12.4.jar71.8 kB71566 1.8 Yes
    jakarta.xml.bind-api-2.3.3.jar115.6 kB137111jakarta.activation-api-2.1.3.jar66.5 kB604639Yes
    jakarta.annotation-api-2.1.1.jar26.1 kB311849Yes
    jakarta.xml.bind-api-4.0.2.jar131 kB138115 7-11 Yes
    junit-4.13.2.jar 1.5 Yes
    byte-buddy-1.12.19.jar4 MB27422688byte-buddy-1.14.12.jar4.2 MB29352881 39-9 Yes
    byte-buddy-agent-1.12.19.jar256.4 kBbyte-buddy-agent-1.14.12.jar256.8 kB 90 70 3-9Yes
    accessors-smart-2.5.0.jar29.9 kB241321.8Yes
    json-smart-2.5.0.jar120.2 kB1079351.8 Yes
    httpclient-4.5.14.jar 1.6 Yes
    log4j-api-2.17.2.jar302.5 kB211177log4j-api-2.21.1.jar317.5 kB224190 9-9 Yes
    log4j-to-slf4j-2.17.2.jar18 kB22611.8log4j-to-slf4j-2.21.1.jar23 kB261029 Yes
    tomcat-embed-core-9.0.80.jartomcat-embed-core-10.1.19.jar 3.5 MB1681156016171481 79-11 Yes
    tomcat-embed-el-9.0.80.jar256.1 kB172161tomcat-embed-el-10.1.19.jar261 kB164154 7-11 Yes
    tomcat-embed-websocket-9.0.80.jar279.8 kB195182tomcat-embed-websocket-10.1.19.jar281.6 kB191178 6-11 Yes
    apiguardian-api-1.1.2.jar 9 3 2-9 Yes
    assertj-core-3.22.0.jar5.2 MB3477339864-assertj-core-3.24.2.jar1.3 MB854814289 Yes
    awaitility-4.2.0.jar95.8 kB9276awaitility-4.2.1.jar97.2 kB9377 8 1.8 Yes
    1.8 Yes
    junit-jupiter-5.9.2.jarjunit-jupiter-5.10.1.jar 6.4 kB 5 1 1-9 No
    junit-jupiter-api-5.9.2.jar207.8 kB194179junit-jupiter-api-5.10.2.jar211 kB197182 8-9 Yes
    junit-jupiter-engine-5.9.2.jar246.6 kB151134junit-jupiter-engine-5.10.1.jar244.7 kB147130 9-9 Yes
    junit-jupiter-params-5.9.2.jar579.8 kB377343junit-jupiter-params-5.10.1.jar586 kB381347 22-9 Yes
    junit-platform-commons-1.9.2.jar103 kBjunit-platform-commons-1.10.1.jar106.3 kB 64 44 7-9 Yes
    junit-platform-engine-1.9.2.jar189.2 kB1431279-junit-platform-engine-1.10.1.jar204.8 kB153136109 Yes
    junit-vintage-engine-5.9.2.jar66.9 kBjunit-vintage-engine-5.10.1.jar67.5 kB 49 35 6-9 Yes
    mockito-core-4.11.0.jar684.9 kB651579mockito-core-5.11.0.jar704 kB642570 641.811 Yes
    mockito-junit-jupiter-4.5.1.jar5.4 kB9mockito-junit-jupiter-5.11.0.jar8.9 kB135 211.811 Yes
    objenesis-3.3.jar 1.8 Yes
    opentest4j-1.2.0.jar7.7 kB117opentest4j-1.3.0.jar14.3 kB159 2-9 Yes
    asm-9.3.jar122.2 kB443839Yes
    powermock-api-mockito2-2.0.9.jar 88.4 kB 103 18 1.6 Yes
    powermock-api-support-2.0.9.jar 21.6 kB 24 4 1.6 Yes
    powermock-core-2.0.9.jar 201 kB 208 27 1.6 Yes
    powermock-module-junit4-2.0.9.jar 47.7 kB 35 3 1.6 Yes
    powermock-module-junit4-common-2.0.9.jar 17.7 kB 19 2 1.6 Yes
    powermock-reflect-2.0.9.jar 68.4 kB 52 8 1.6 Yes
    jsonassert-1.5.1.jar 30.5 kB 32 3 1.6 Yes
    jul-to-slf4j-1.7.36.jar4.5 kB11111.5Yes
    slf4j-api-1.7.32.jar41.5 kB463441.5jul-to-slf4j-2.0.12.jar6.3 kB15229 Yes
    spring-aop-5.3.30.jar384.5 kB308279171.8slf4j-api-2.0.7.jar63.6 kB675259 Yes
    spring-beans-5.3.30.jar706.2 kB422392131.8spring-aop-6.1.5.jar415.6 kB3202881717 Yes
    spring-context-5.3.30.jar1.3 MB979892641.8spring-beans-6.1.5.jar857.5 kB4734421317 Yes
    spring-core-5.3.30.jar1.5 MB1037978491.8spring-context-6.1.5.jar1.3 MB9288435817 Yes
    spring-expression-5.3.30.jar293.2 kB16415061.8spring-core-6.1.5.jar1.9 MB122111405921 Yes
    spring-jcl-5.3.30.jar25.1 kB281721.8spring-expression-6.1.5.jar302.6 kB161149617 Yes
    spring-test-5.3.30.jar792.4 kB562507401.8spring-jcl-6.1.5.jar24.5 kB2615217 Yes
    spring-web-5.3.30.jar1.6 MB10811010551.8spring-test-6.1.5.jar854 kB5775184217 Yes
    spring-webmvc-5.3.30.jar1 MB602557281.8spring-web-6.1.5.jar1.9 MB119611175817 Yes
    spring-boot-2.7.16.jar1.5 MB1055931791.8spring-webmvc-6.1.5.jar1 MB5705262717 Yes
    spring-boot-autoconfigure-2.7.16.jar1.7 MB135812301071.8spring-boot-3.2.4.jar1.6 MB11169878117 Yes
    spring-boot-starter-2.7.16.jarspring-boot-autoconfigure-3.2.4.jar1.9 MB1506137211117Yes
    spring-boot-starter-3.2.4.jar 4.8 kB 4 0 0 -No
    spring-boot-starter-json-2.7.16.jar-
    spring-boot-starter-json-3.2.4.jar 4.7 kB 4 0 0 -No
    spring-boot-starter-logging-2.7.16.jar-
    spring-boot-starter-logging-3.2.4.jar 4.8 kB 4 0 0 -No
    spring-boot-starter-test-2.7.16.jar-
    spring-boot-starter-test-3.2.4.jar 4.8 kB 4 0 0 -No
    spring-boot-starter-tomcat-2.7.16.jar-
    spring-boot-starter-tomcat-3.2.4.jar 4.8 kB 4 0 0 -No
    spring-boot-starter-web-2.7.16.jar-
    spring-boot-starter-web-3.2.4.jar 4.8 kB 4 0 0 -No
    spring-boot-test-2.7.16.jar239 kB182149-
    spring-boot-test-3.2.4.jar245.5 kB174141 171.817 Yes
    spring-boot-test-autoconfigure-2.7.16.jar213.8 kB255
    spring-boot-test-autoconfigure-3.2.4.jar219.2 kB256 182 261.817 Yes
    xmlunit-core-2.9.1.jar 175.2 kB 178 9 1.7 Yes
    snakeyaml-2.2.jar 334.4 kB 278 230 24-9Yes
    micrometer-core-1.12.4.jar883.5 kB6065364511 Yes
    micrometer-core-1.9.15.jar663.6 kB42336739micrometer-jakarta9-1.12.4.jar32.4 kB33231 1.8 Yes
    1.6 Yes
    spring-boot-actuator-2.7.16.jar688.1 kB605515731.8spring-boot-actuator-3.2.4.jar650.7 kB5654787117 Yes
    spring-boot-actuator-autoconfigure-2.7.16.jar576.3 kB510395961.8spring-boot-actuator-autoconfigure-3.2.4.jar755.6 kB63951310617 Yes
    spring-boot-autoconfigure-processor-2.7.16.jar21.2 kB219spring-boot-autoconfigure-processor-3.2.4.jar21.1 kB208 11.817 Yes
    spring-boot-configuration-processor-2.7.16.jar119.8 kB6347spring-boot-configuration-processor-3.2.4.jar122 kB6145 51.817 Yes
    spring-boot-starter-actuator-2.7.16.jarspring-boot-starter-actuator-3.2.4.jar 4.8 kB 4 0 0 -No
    -
    Total Size Java Version Debug Information
    8237.3 MB260982351014781.874
    compile: 32compile: 13.3 MBcompile: 10215compile: 8858compile: 768-compile: 29
    test: 45test: 21.8 MBtest: 14785test: 13663test: 664-test: 40
    runtime: 5runtime: 2.1 MBruntime: 1098runtime: 989runtime: 46-runtime: 5
    +88 +36.4 MB +25032 +22298 +1490 +21 +80 + +compile: 34 +compile: 14.9 MB +compile: 11084 +compile: 9653 +compile: 794 +21 +compile: 31 + +runtime: 6 +runtime: 2.6 MB +runtime: 1368 +runtime: 1213 +runtime: 51 +runtime: 6 + +test: 48 +test: 19 MB +test: 12580 +test: 11432 +test: 645 +17 +test: 43
    @@ -2204,7 +2347,7 @@

    Dependency File Details

    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/dependency-info.html b/dependency-info.html index 7108d65..527bf86 100644 --- a/dependency-info.html +++ b/dependency-info.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -79,27 +79,27 @@

    Apache Maven

    <dependency>
       <groupId>com.github.robtimus</groupId>
       <artifactId>connect-sdk-java-spring-boot-starter</artifactId>
    -  <version>3.8</version>
    +  <version>4.0</version>
     </dependency>

    Apache Ivy

    -
    <dependency org="com.github.robtimus" name="connect-sdk-java-spring-boot-starter" rev="3.8">
    +
    <dependency org="com.github.robtimus" name="connect-sdk-java-spring-boot-starter" rev="4.0">
       <artifact name="connect-sdk-java-spring-boot-starter" type="jar" />
     </dependency>

    Groovy Grape

    @Grapes(
    -@Grab(group='com.github.robtimus', module='connect-sdk-java-spring-boot-starter', version='3.8')
    +@Grab(group='com.github.robtimus', module='connect-sdk-java-spring-boot-starter', version='4.0')
     )

    Gradle/Grails

    -
    compile 'com.github.robtimus:connect-sdk-java-spring-boot-starter:3.8'
    +
    implementation 'com.github.robtimus:connect-sdk-java-spring-boot-starter:4.0'

    Scala SBT

    -
    libraryDependencies += "com.github.robtimus" % "connect-sdk-java-spring-boot-starter" % "3.8"
    +
    libraryDependencies += "com.github.robtimus" % "connect-sdk-java-spring-boot-starter" % "4.0"

    Leiningen

    -
    [com.github.robtimus/connect-sdk-java-spring-boot-starter "3.8"]
    +
    [com.github.robtimus/connect-sdk-java-spring-boot-starter "4.0"]
    @@ -107,7 +107,7 @@

    Leiningen

    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/index.html b/index.html index 3a2b65f..e0040a2 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -78,13 +78,13 @@

    Quick Start

     connect.api.endpoint.host=<API endpoint hostname>
     connect.api.integrator=<your company name>
    -connect.api.api-key-id=<your API key id>
    -connect.api.secret-api-key=<your secret API key>
    +connect.api.authorization-id=<your authorization id>
    +connect.api.authorization-secret=<your authorization secret>
     
    -

    With these simple steps a Client will be auto-configured.

    +

    With these simple steps a Client and V1Client will be auto-configured.

    -

    To also have a MerchantClient auto-configured, add the following property as well:

    +

    To also have a MerchantClient auto-configured, add the following property as well:

    @@ -94,9 +94,9 @@ 

    Quick Start

    Actuators

    If you have the org.springframework.boot:spring-boot-starter-actuator dependency in your project and have provided all of the above properties, including connect.api.merchant-id, - then a health indicator will be auto-configured. - This will use the test connection functionality to check your connectivity to the Ingenico Server API. - To prevent too many requests to the Ingenico Server API this is throttled to at most 1 request every minute. This can be changed by adding the following property to your project:

    + then a health indicator will be auto-configured. + This will use the test connection functionality to check your connectivity to the Worldline Connect Server API. + To prevent too many requests to the Worldline Connect Server API this is throttled to at most 1 request every minute. This can be changed by adding the following property to your project:

    @@ -104,7 +104,7 @@ 

    Actuators

    connect.api.health.min-interval=300
    -

    If you want to have an auto-configured MerchantClient but you don't want this health indicator, +

    If you want to have an auto-configured MerchantClient but you don't want this health indicator, you can disable it by adding the following property to your project:

    @@ -121,7 +121,7 @@

    Actuators

    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/issue-management.html b/issue-management.html index 5b28b28..5fbc10c 100644 --- a/issue-management.html +++ b/issue-management.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -86,7 +86,7 @@

    Issue Management

    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/licenses.html b/licenses.html index 9ce322f..f17dc03 100644 --- a/licenses.html +++ b/licenses.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -288,7 +288,7 @@

    The Apache Software
    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/project-info.html b/project-info.html index cbc244c..d5a0f6b 100644 --- a/project-info.html +++ b/project-info.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -108,7 +108,7 @@

    Overview

    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/project-reports.html b/project-reports.html index 272838d..6c946b2 100644 --- a/project-reports.html +++ b/project-reports.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -84,7 +84,7 @@

    Overview

    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/properties.html b/properties.html index c55b3b3..f646cb8 100644 --- a/properties.html +++ b/properties.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -83,9 +83,9 @@

    Properties

    connect.api.endpoint.port=-1 # Port of the API endpoint to use # AUTHENTICATION -connect.api.api-key-id= # Your API key id +connect.api.authorization-id= # Your authorization id +connect.api.authorization-secret= # Your authorization secret connect.api.authorization-type=V1HMAC # Authorization type, should only be V1HMAC -connect.api.secret-api-key= # Your secret API key # CONNECTION connect.api.connect-timeout=5000 # Connect timeout for HTTP requests @@ -112,7 +112,7 @@

    Properties

    # LOGGING connect.api.logger.errorLevel=ERROR # Error log level for the default communicator logger connect.api.logger.level=INFO # Log level for the default communicator logger -connect.api.logger.name=com.ingenico.connect.gateway.sdk.java.Communicator # Name for the default communicator logger +connect.api.logger.name=com.worldline.connect.sdk.java.Communicator # Name for the default communicator logger # HEALTH connect.api.health.min-interval=60 # For health checks, the minimum interval in seconds between calls @@ -127,7 +127,7 @@

    Properties

    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/scm.html b/scm.html index dd31b0b..e12e61c 100644 --- a/scm.html +++ b/scm.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -82,11 +82,11 @@

    Web Browser Access

    Anonymous Access

    The source can be checked out anonymously from Git with this command (See https://git-scm.com/docs/git-clone):

    -
    $ git clone --branch 3.8 git@github.com:robtimus/connect-sdk-java-spring-boot-starter.git
    +
    $ git clone --branch 4.0 git@github.com:robtimus/connect-sdk-java-spring-boot-starter.git

    Developer Access

    Only project developers can access the Git tree via this method (See https://git-scm.com/docs/git-clone).

    -
    $ git clone --branch 3.8 git@github.com:robtimus/connect-sdk-java-spring-boot-starter.git
    +
    $ git clone --branch 4.0 git@github.com:robtimus/connect-sdk-java-spring-boot-starter.git

    Access from Behind a Firewall

    Refer to the documentation of the SCM used for more information about access behind a firewall.

    @@ -96,7 +96,7 @@

    Access from Behind a Firewall
    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/summary.html b/summary.html index de82e38..91ef7e5 100644 --- a/summary.html +++ b/summary.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -84,7 +84,7 @@

    Project Information

    Description -Spring Boot starter for connect-sdk-java (https://github.com/Ingenico-ePayments/connect-sdk-java/) +Spring Boot starter for connect-sdk-java (https://github.com/Worldline-Global-Collectconnect-sdk-java/) Homepage https://robtimus.github.io/connect-sdk-java-spring-boot-starter/
    @@ -103,13 +103,13 @@

    Build Information

    Version -3.8 +4.0 Type jar Java Version -1.8
    +17 @@ -117,7 +117,7 @@

    Build Information

    -

    © 2019–2023 +

    © 2019–2024

    diff --git a/team.html b/team.html index f504633..9faec7b 100644 --- a/team.html +++ b/team.html @@ -2,7 +2,7 @@ @@ -30,9 +30,9 @@ @@ -96,7 +96,7 @@

    Contributors