SSLSessionBindingListener
Stay organized with collections
Save and categorize content based on your preferences.
Public Method Summary
abstract
void
|
|
abstract
void
|
|
Public Methods
This is called to notify the listener that it is being bound into
an SSLSession.
Parameters
event |
the event identifying the SSLSession into
which the listener is being bound.
|
This is called to notify the listener that it is being unbound
from a SSLSession.
Parameters
event |
the event identifying the SSLSession from
which the listener is being unbound.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eSSLSessionBindingListener\u003c/code\u003e interface allows objects to be notified when they are bound to or unbound from an \u003ccode\u003eSSLSession\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eImplementations of this interface receive \u003ccode\u003eSSLSessionBindingEvent\u003c/code\u003e notifications when bound or unbound using \u003ccode\u003eSSLSession.putValue\u003c/code\u003e or \u003ccode\u003eSSLSession.removeValue\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003evalueBound\u003c/code\u003e method is called when the listener is bound to an \u003ccode\u003eSSLSession\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003evalueUnbound\u003c/code\u003e method is called when the listener is unbound from an \u003ccode\u003eSSLSession\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["public interface **SSLSessionBindingListener** implements [EventListener](../../../../reference/java/util/EventListener.html) \nThis interface is implemented by objects which want to know when\nthey are being bound or unbound from a SSLSession. When either event\noccurs via [SSLSession.putValue(String, Object)](../../../../reference/javax/net/ssl/SSLSession.html#putValue(java.lang.String,%20java.lang.Object))\nor [SSLSession.removeValue(String)](../../../../reference/javax/net/ssl/SSLSession.html#removeValue(java.lang.String)), the event is communicated\nthrough a SSLSessionBindingEvent identifying the session. \n\nSee Also\n\n- [SSLSession](../../../../reference/javax/net/ssl/SSLSession.html)\n- [SSLSessionBindingEvent](../../../../reference/javax/net/ssl/SSLSessionBindingEvent.html) \n\nPublic Method Summary\n\n|---------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| abstract void | [valueBound](../../../../reference/javax/net/ssl/SSLSessionBindingListener.html#valueBound(javax.net.ssl.SSLSessionBindingEvent))([SSLSessionBindingEvent](../../../../reference/javax/net/ssl/SSLSessionBindingEvent.html) event) This is called to notify the listener that it is being bound into an SSLSession. |\n| abstract void | [valueUnbound](../../../../reference/javax/net/ssl/SSLSessionBindingListener.html#valueUnbound(javax.net.ssl.SSLSessionBindingEvent))([SSLSessionBindingEvent](../../../../reference/javax/net/ssl/SSLSessionBindingEvent.html) event) This is called to notify the listener that it is being unbound from a SSLSession. |\n\nPublic Methods \n\npublic abstract void\n**valueBound**\n([SSLSessionBindingEvent](../../../../reference/javax/net/ssl/SSLSessionBindingEvent.html) event) \nThis is called to notify the listener that it is being bound into\nan SSLSession. \n\nParameters\n\n| event | the event identifying the SSLSession into which the listener is being bound. |\n|-------|------------------------------------------------------------------------------|\n\npublic abstract void\n**valueUnbound**\n([SSLSessionBindingEvent](../../../../reference/javax/net/ssl/SSLSessionBindingEvent.html) event) \nThis is called to notify the listener that it is being unbound\nfrom a SSLSession. \n\nParameters\n\n| event | the event identifying the SSLSession from which the listener is being unbound. |\n|-------|--------------------------------------------------------------------------------|"]]