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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Refreshablejavax.security.auth

Java 1.4

A class implements this interface if its
instances that have a limited period of validity (as some security
credentials
do) and need to be periodically
"refreshed" in order to remain
valid. isCurrent( )
returns true if the object is currently valid, and
false if it has expired and needs to be refreshed.
refresh( ) attempts to revalidate or extend the
validity of the object. It throws a
RefreshFailedException if it does not succeed.
(And may also throw a SecurityException if the
caller does not have the requisite permissions.)

public interface

Refreshable {
// Public Instance Methods
boolean

isCurrent ( );
void

refresh ( ) throws RefreshFailedException;
}


Implementations


javax.security.auth.kerberos.KerberosTicket


    / 1191