You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by am...@apache.org on 2018/08/01 22:03:19 UTC

[cxf] branch master updated (4b7ede2 -> e9acad2)

This is an automated email from the ASF dual-hosted git repository.

amccright pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git.


    from 4b7ede2  update Spring Boot to latest version
     add eaa14b9  [CXF-7673] MP Rest Client 1.1 Impl
     add 504a1b7  Code Review Changes
     add 6631628  [CXF-7673] MP Rest Client 1.1 Impl (continued)
     add b3ea80a  Use testng.xml
     add 4277155  Add cxf.module.name property to pom.xml
     add e0838b9  Remove unnecessary changes for InvocationCallback
     add d185a8f  Avoid direct dependency on 1.1-specific APIs for 1.0 compat
     new e9acad2  Merge pull request #396 from andymc12/mpRest11

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/cxf/jaxrs/impl/ResponseImpl.java    |   3 +
 .../apache/cxf/jaxrs/client/ClientProxyImpl.java   |  36 +++--
 rt/rs/microprofile-client/pom.xml                  |   7 +
 .../client/CxfTypeSafeClientBuilder.java           |  20 ++-
 .../microprofile/client/MPRestClientCallback.java} |  86 +++---------
 .../cxf/microprofile/client/Messages.properties    |   6 +-
 .../client/MicroProfileClientFactoryBean.java      |  13 +-
 .../client/MicroProfileClientProviderFactory.java  |  23 +++-
 .../apache/cxf/microprofile/client/Validator.java  |   2 +-
 .../microprofile/client/cdi/RestClientBean.java    |  36 +++--
 .../proxy/MPAsyncInvocationInterceptorImpl.java    |  74 ++++++++++
 .../MPAsyncInvocationInterceptorPostAsyncImpl.java |  44 +++---
 .../client/proxy/MicroProfileClientProxyImpl.java  |  81 ++++++++++-
 .../client/CxfTypeSafeClientBuilderTest.java       |   4 +-
 systests/microprofile/{ => client/async}/pom.xml   |  39 +++---
 .../microprofile/rest/client/AsyncMethodTest.java  | 153 +++++++++++++++++++++
 .../mock/AsyncClientWithCompletionStage.java       |  14 +-
 .../AsyncInvocationInterceptorFactoryTestImpl.java |  62 +++++++++
 ...AsyncInvocationInterceptorFactoryTestImpl2.java |  57 ++++++++
 .../rest/client/mock/ThreadLocalClientFilter.java  |  27 ++--
 systests/microprofile/client/weld/pom.xml          |   3 +
 systests/microprofile/client/weld/testng.xml       |  27 ++++
 systests/microprofile/pom.xml                      |   9 +-
 23 files changed, 665 insertions(+), 161 deletions(-)
 copy rt/rs/{client/src/main/java/org/apache/cxf/jaxrs/client/JaxrsClientCallback.java => microprofile-client/src/main/java/org/apache/cxf/microprofile/client/MPRestClientCallback.java} (53%)
 create mode 100644 rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/proxy/MPAsyncInvocationInterceptorImpl.java
 copy testutils/src/main/java/org/apache/cxf/greeter_control/FaultThrowingInterceptor.java => rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/proxy/MPAsyncInvocationInterceptorPostAsyncImpl.java (50%)
 copy systests/microprofile/{ => client/async}/pom.xml (82%)
 create mode 100644 systests/microprofile/client/async/src/test/java/org/apache/cxf/systest/microprofile/rest/client/AsyncMethodTest.java
 copy rt/rs/microprofile-client/src/test/java/org/apache/cxf/microprofile/client/mock/ExceptionMappingClient.java => systests/microprofile/client/async/src/test/java/org/apache/cxf/systest/microprofile/rest/client/mock/AsyncClientWithCompletionStage.java (77%)
 create mode 100644 systests/microprofile/client/async/src/test/java/org/apache/cxf/systest/microprofile/rest/client/mock/AsyncInvocationInterceptorFactoryTestImpl.java
 create mode 100644 systests/microprofile/client/async/src/test/java/org/apache/cxf/systest/microprofile/rest/client/mock/AsyncInvocationInterceptorFactoryTestImpl2.java
 copy rt/rs/security/jose-parent/jose-jaxrs/src/main/java/org/apache/cxf/rs/security/jose/jaxrs/multipart/JwsMultipartClientResponseFilter.java => systests/microprofile/client/async/src/test/java/org/apache/cxf/systest/microprofile/rest/client/mock/ThreadLocalClientFilter.java (53%)
 create mode 100644 systests/microprofile/client/weld/testng.xml


[cxf] 01/01: Merge pull request #396 from andymc12/mpRest11

Posted by am...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

amccright pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit e9acad25437e7273a823f32e299599ede9020df9
Merge: 4b7ede2 d185a8f
Author: Andy McCright <j....@gmail.com>
AuthorDate: Wed Aug 1 17:03:15 2018 -0500

    Merge pull request #396 from andymc12/mpRest11
    
    [CXF-7673] MP Rest Client 1.1 Impl

 .../org/apache/cxf/jaxrs/impl/ResponseImpl.java    |   3 +
 .../apache/cxf/jaxrs/client/ClientProxyImpl.java   |  36 +++--
 rt/rs/microprofile-client/pom.xml                  |   7 +
 .../client/CxfTypeSafeClientBuilder.java           |  20 ++-
 .../microprofile/client/MPRestClientCallback.java  | 100 ++++++++++++++
 .../cxf/microprofile/client/Messages.properties    |   6 +-
 .../client/MicroProfileClientFactoryBean.java      |  13 +-
 .../client/MicroProfileClientProviderFactory.java  |  23 +++-
 .../apache/cxf/microprofile/client/Validator.java  |   2 +-
 .../microprofile/client/cdi/RestClientBean.java    |  36 +++--
 .../proxy/MPAsyncInvocationInterceptorImpl.java    |  74 ++++++++++
 .../MPAsyncInvocationInterceptorPostAsyncImpl.java |  58 ++++++++
 .../client/proxy/MicroProfileClientProxyImpl.java  |  81 ++++++++++-
 .../client/CxfTypeSafeClientBuilderTest.java       |   4 +-
 systests/microprofile/{ => client/async}/pom.xml   |  39 +++---
 .../microprofile/rest/client/AsyncMethodTest.java  | 153 +++++++++++++++++++++
 .../mock/AsyncClientWithCompletionStage.java       |  33 +++++
 .../AsyncInvocationInterceptorFactoryTestImpl.java |  62 +++++++++
 ...AsyncInvocationInterceptorFactoryTestImpl2.java |  57 ++++++++
 .../rest/client/mock/ThreadLocalClientFilter.java  |  48 +++++++
 systests/microprofile/client/weld/pom.xml          |   3 +
 systests/microprofile/client/weld/testng.xml       |  27 ++++
 systests/microprofile/pom.xml                      |   9 +-
 23 files changed, 837 insertions(+), 57 deletions(-)