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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Provider.Servicejava.security

Java 5.0

This nested class represents a single
service (such as a hash algorithm) provided by a security
Provider. The various methods return information
about the service, including the name of the implementing class.

public static class

Provider.Service {
// Public Constructors
public

Service (Provider

provider , String

type , String

algorithm ,
String

className , java.util.List<String>

aliases ,
java.util.Map<String,String>

attributes );
// Public Instance Methods
public final String

getAlgorithm ( );
public final String

getAttribute (String

name );
public final String

getClassName ( );
public final Provider

getProvider ( );
public final String

getType ( );
public Object

newInstance (Object

constructorParameter )
throws NoSuchAlgorithmException;
public boolean

supportsParameter (Object

parameter );
// Public Methods Overriding Object
public String

toString ( );
}


Passed To


Provider.{putService( ), removeService(
)}

Returned By


Provider.getService( )


    / 1191