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 2019/01/04 20:38:29 UTC

[cxf] branch master updated (7225b3a -> 550ca91)

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 7225b3a  cxf-rt-transports-jms: improve test stability
     add 7f8033f  [CXF-7926] Initial MP Rest Client 1.2 impl
     add 7aee657  [CXF-7926] Code review comments
     add 1a18c6e  [CXF-7926] New ClientProperties interface for common client props
     add 5a5d6ea  [CXF-7926] Use CDI annotated types rather than normal Java reflection
     new 550ca91  Merge pull request #482 from andymc12/mpRest12initial

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:
 .../apache/cxf/jaxrs/client/ClientProperties.java  |  42 +++++++
 .../cxf/jaxrs/client/spec/ClientBuilderImpl.java   |   7 +-
 .../apache/cxf/jaxrs/client/spec/ClientImpl.java   |  30 ++---
 rt/rs/microprofile-client/pom.xml                  |   7 +-
 .../client/CxfTypeSafeClientBuilder.java           |  82 +++++++++++-
 .../cxf/microprofile/client/Messages.properties    |   5 +-
 .../client/MicroProfileClientConfigurableImpl.java |   5 +-
 .../client/MicroProfileClientFactoryBean.java      |   6 +-
 .../client/cdi/CDIInterceptorWrapper.java          |  69 +++++++++++
 .../client/cdi/CDIInterceptorWrapperImpl.java      | 138 +++++++++++++++++++++
 .../client/cdi/InterceptorInvoker.java             |  25 ++--
 .../cdi/MPRestClientInvocationContextImpl.java     | 129 +++++++++++++++++++
 .../microprofile/client/cdi/RestClientBean.java    |  31 +++--
 .../microprofile/client/config/ConfigFacade.java   |  16 ++-
 .../proxy/MPAsyncInvocationInterceptorImpl.java    |  27 ++--
 ...yncInvocationInterceptorRemoveContextImpl.java} |  12 +-
 .../client/proxy/MicroProfileClientProxyImpl.java  | 110 +++++++++++++++-
 systests/microprofile/client/async/pom.xml         |   2 +-
 .../AsyncInvocationInterceptorFactoryTestImpl.java |   8 ++
 ...AsyncInvocationInterceptorFactoryTestImpl2.java |   8 ++
 systests/microprofile/client/weld/testng.xml       |  22 +---
 systests/microprofile/pom.xml                      |   2 +-
 22 files changed, 681 insertions(+), 102 deletions(-)
 create mode 100644 rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/ClientProperties.java
 create mode 100644 rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/cdi/CDIInterceptorWrapper.java
 create mode 100644 rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/cdi/CDIInterceptorWrapperImpl.java
 copy services/xkms/xkms-common/src/main/java/org/apache/cxf/xkms/handlers/HandlerContext.java => rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/cdi/InterceptorInvoker.java (55%)
 create mode 100644 rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/cdi/MPRestClientInvocationContextImpl.java
 copy rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/proxy/{MPAsyncInvocationInterceptorPostAsyncImpl.java => MPAsyncInvocationInterceptorRemoveContextImpl.java} (83%)


[cxf] 01/01: Merge pull request #482 from andymc12/mpRest12initial

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 550ca9107d794365c4b85581e1433a821bc1ca1c
Merge: 7225b3a 5a5d6ea
Author: Andy McCright <j....@gmail.com>
AuthorDate: Fri Jan 4 14:38:24 2019 -0600

    Merge pull request #482 from andymc12/mpRest12initial
    
    [CXF-7926] Initial MP Rest Client 1.2 impl

 .../apache/cxf/jaxrs/client/ClientProperties.java  |  42 +++++++
 .../cxf/jaxrs/client/spec/ClientBuilderImpl.java   |   7 +-
 .../apache/cxf/jaxrs/client/spec/ClientImpl.java   |  30 ++---
 rt/rs/microprofile-client/pom.xml                  |   7 +-
 .../client/CxfTypeSafeClientBuilder.java           |  82 +++++++++++-
 .../cxf/microprofile/client/Messages.properties    |   5 +-
 .../client/MicroProfileClientConfigurableImpl.java |   5 +-
 .../client/MicroProfileClientFactoryBean.java      |   6 +-
 .../client/cdi/CDIInterceptorWrapper.java          |  69 +++++++++++
 .../client/cdi/CDIInterceptorWrapperImpl.java      | 138 +++++++++++++++++++++
 .../client/cdi/InterceptorInvoker.java             |  43 +++++++
 .../cdi/MPRestClientInvocationContextImpl.java     | 129 +++++++++++++++++++
 .../microprofile/client/cdi/RestClientBean.java    |  31 +++--
 .../microprofile/client/config/ConfigFacade.java   |  16 ++-
 .../proxy/MPAsyncInvocationInterceptorImpl.java    |  27 ++--
 ...yncInvocationInterceptorRemoveContextImpl.java} |  44 +++----
 .../client/proxy/MicroProfileClientProxyImpl.java  | 110 +++++++++++++++-
 systests/microprofile/client/async/pom.xml         |   2 +-
 .../AsyncInvocationInterceptorFactoryTestImpl.java |   8 ++
 ...AsyncInvocationInterceptorFactoryTestImpl2.java |   8 ++
 systests/microprofile/client/weld/testng.xml       |  22 +---
 systests/microprofile/pom.xml                      |   2 +-
 22 files changed, 718 insertions(+), 115 deletions(-)