Repository: cxf Updated Branches: refs/heads/3.0.x-fixes ffc599764 -> be30f54dc
Deprecating method Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/a2922b76 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a2922b76 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a2922b76 Branch: refs/heads/3.0.x-fixes Commit: a2922b76fd11c79482ec868e0bf3f79189abef4c Parents: ffc5997 Author: Colm O hEigeartaigh <[email protected]> Authored: Fri May 29 11:02:38 2015 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Fri May 29 13:46:24 2015 +0100 ---------------------------------------------------------------------- .../org/apache/cxf/security/transport/TLSSessionInfo.java | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/a2922b76/core/src/main/java/org/apache/cxf/security/transport/TLSSessionInfo.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/cxf/security/transport/TLSSessionInfo.java b/core/src/main/java/org/apache/cxf/security/transport/TLSSessionInfo.java index 27d0deb..34918c7 100644 --- a/core/src/main/java/org/apache/cxf/security/transport/TLSSessionInfo.java +++ b/core/src/main/java/org/apache/cxf/security/transport/TLSSessionInfo.java @@ -71,9 +71,18 @@ public class TLSSessionInfo { * @return the negotiated cipher suite. This attribute is * guaranteed to be non-null. */ + @Deprecated public final String getChipherSuite() { return cipherSuite; } + + /** + * @return the negotiated cipher suite. This attribute is + * guaranteed to be non-null. + */ + public final String getCipherSuite() { + return cipherSuite; + } /** * @return the peer X.509 certificate chain, as negotiated
