You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2018/11/13 08:46:43 UTC

[syncope] branch 2_0_X updated: [SYNCOPE-1396] Fix build

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

ilgrosso pushed a commit to branch 2_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/2_0_X by this push:
     new c3c91e3  [SYNCOPE-1396] Fix build
c3c91e3 is described below

commit c3c91e31e635b28886ed9eb0f4a2773dce055f7e
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Nov 13 09:44:01 2018 +0100

    [SYNCOPE-1396] Fix build
---
 .../src/test/java/org/apache/syncope/fit/core/RESTITCase.java         | 3 ++-
 .../reference-guide/workingwithapachesyncope/restfulservices.adoc     | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java
index 66419eb..c226631 100644
--- a/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java
+++ b/fit/core-reference/src/test/java/org/apache/syncope/fit/core/RESTITCase.java
@@ -176,7 +176,8 @@ public class RESTITCase extends AbstractITCase {
                 factory.getRestClientFactoryBean(),
                 factory.getExceptionMapper(),
                 new BasicAuthenticationHandler(ADMIN_UNAME, ADMIN_PWD),
-                false);
+                false,
+                null);
 
         // perform operation
         AnyTypeClassService service = client.getService(AnyTypeClassService.class);
diff --git a/src/main/asciidoc/reference-guide/workingwithapachesyncope/restfulservices.adoc b/src/main/asciidoc/reference-guide/workingwithapachesyncope/restfulservices.adoc
index 71e6bc6..baeafcf 100644
--- a/src/main/asciidoc/reference-guide/workingwithapachesyncope/restfulservices.adoc
+++ b/src/main/asciidoc/reference-guide/workingwithapachesyncope/restfulservices.adoc
@@ -408,9 +408,9 @@ SyncopeClientFactoryBean clientFactory = new SyncopeClientFactoryBean().
 You might also select a specific <<domains,domain>> - other than `Master`, choose to exchange XML payloads - rather
 than JSON (default), to select 
 https://en.wikipedia.org/wiki/HTTP_compression[HTTP compression^] or to set the
-https://cxf.apache.org/javadoc/latest/org/apache/cxf/configuration/jsse/TLSClientParameters.html[TLS client configuration^]
+http://cxf.apache.org/javadoc/latest-3.0.x/org/apache/cxf/configuration/jsse/TLSClientParameters.html[TLS client configuration^]
 (more options in the
-http://cxf.apache.org/javadoc/latest-3.0.x/org/apache/cxf/configuration/jsse/TLSClientParameters.html[Javadoc^]):
+http://syncope.apache.org/apidocs/2.0/org/apache/syncope/client/lib/SyncopeClientFactoryBean.html[Javadoc^]):
 
 [source,java]
 ----