Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


SSLSessionBindingListenerjavax.net.ssl

Java 1.4event listener

This
interface
is implemented by an object that want to be notified when it is bound
or unbound in an SSLSession object. If the object
passed to the putValue( ) method of a
SSLSession implements this interface, then its
valueBound( ) method will be called by
putValue( ), and its valueUnbound(
)
method will
be called when that object is removed from the
SSLSession with removeValue( )
or when it is replaced with a new object by putValue(
). The argument to both methods of this interface is a
SSLSessionBindingEvent, which specifies both the
name to which the object was bound or unbound, and the
SSLSession within which it was bound or unbound.


Figure 18-15. javax.net.ssl.SSLSessionBindingListener

public interface

SSLSessionBindingListener extends java.util.EventListener {
// Public Instance Methods
void

valueBound (SSLSessionBindingEvent

event );
void

valueUnbound (SSLSessionBindingEvent

event );
}



    / 1191