You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/02/07 20:01:45 UTC

cxf-fediz git commit: [FEDIZ-187] Fixing the finalize method qualifier to public

Repository: cxf-fediz
Updated Branches:
  refs/heads/master 7387d9a34 -> 325089aa2


[FEDIZ-187] Fixing the finalize method qualifier to public


Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/325089aa
Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/325089aa
Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/325089aa

Branch: refs/heads/master
Commit: 325089aa25e6bd7c6ed55cc08a859a236ff1434f
Parents: 7387d9a
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Tue Feb 7 20:01:26 2017 +0000
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Tue Feb 7 20:01:26 2017 +0000

----------------------------------------------------------------------
 .../org/apache/cxf/fediz/service/oidc/logout/LogoutService.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/325089aa/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/logout/LogoutService.java
----------------------------------------------------------------------
diff --git a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/logout/LogoutService.java b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/logout/LogoutService.java
index 5c6a10a..431c020 100644
--- a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/logout/LogoutService.java
+++ b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/logout/LogoutService.java
@@ -77,13 +77,13 @@ public class LogoutService {
     
     @GET
     @Path("/finalize")
-    protected Response finalizeLogoutGet() {
+    public Response finalizeLogoutGet() {
         // This method won't be needed if IDP will itself redirect to the client logout URI
         return doFinalizeLogout(mc.getUriInfo().getQueryParameters());    
     }
     @POST
     @Path("/finalize")
-    protected Response finalizeLogoutPost(MultivaluedMap<String, String> params) {
+    public Response finalizeLogoutPost(MultivaluedMap<String, String> params) {
      // This method won't be needed if IDP will itself redirect to the client logout URI
         return doFinalizeLogout(params);    
     }