You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2016/04/14 13:10:05 UTC

cxf-fediz git commit: Add accessors for AuthnRequestParser

Repository: cxf-fediz
Updated Branches:
  refs/heads/master cc8708e1b -> e280eb1a5


Add accessors for AuthnRequestParser


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

Branch: refs/heads/master
Commit: e280eb1a5f8ac7270d388e9e71017e4351ff2184
Parents: cc8708e
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Thu Apr 14 12:09:44 2016 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Thu Apr 14 12:09:44 2016 +0100

----------------------------------------------------------------------
 .../fediz/service/idp/beans/samlsso/AuthnRequestParser.java   | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/e280eb1a/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/samlsso/AuthnRequestParser.java
----------------------------------------------------------------------
diff --git a/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/samlsso/AuthnRequestParser.java b/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/samlsso/AuthnRequestParser.java
index 8a09b03..b9e15f8 100644
--- a/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/samlsso/AuthnRequestParser.java
+++ b/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/samlsso/AuthnRequestParser.java
@@ -152,4 +152,11 @@ public class AuthnRequestParser {
         return request;
     }
     
+    public boolean isSupportDeflateEncoding() {
+        return supportDeflateEncoding;
+    }
+
+    public void setSupportDeflateEncoding(boolean supportDeflateEncoding) {
+        this.supportDeflateEncoding = supportDeflateEncoding;
+    }
 }