Top Description Inners Fields Constructors Methods
com.sun.security.sasl.gsskerb

public final Class JdkSASL

extends Provider
Class Inheritance
Imports
java.security.AccessController, .PrivilegedAction, .Provider, .NoSuchAlgorithmException, .InvalidParameterException, .ProviderException

The JdkSASL provider class - provides client and server support for GSSAPI/Kerberos v5

Nested and Inner Type Summary

Modifier and TypeClass and Description
private static class

Field Summary

Modifier and TypeField and Description
private static final String
private static final long

Constructor Summary

AccessConstructor and Description
public

Method Summary

Inherited from java.security.Provider:
clearcomputecomputeIfAbsentcomputeIfPresentconfigureelementsentrySetforEachgetgetInfogetNamegetOrDefaultgetPropertygetServicegetServicesgetVersiongetVersionStrisConfiguredkeyskeySetloadmergeputputAllputIfAbsentputServiceremoveremoveremoveServicereplacereplacereplaceAlltoStringvalues

Field Detail

infoback to summary
private static final String info

Hides java.security.Provider.info.

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.security.Provider.serialVersionUID.

Constructor Detail

JdkSASLback to summary
public JdkSASL()
Annotations
@SuppressWarnings:removal
com.sun.security.sasl.gsskerb back to summary

private final Class JdkSASL.ProviderService

extends Service
Class Inheritance

Constructor Summary

AccessConstructor and Description
pack-priv

Method Summary

Modifier and TypeMethod and Description
public Object
newInstance(Object
the value to pass to the constructor, or null if this type of service does not use a constructorParameter.
ctrParamObj
)

Overrides java.security.Provider.Service.newInstance.

Return a new instance of the implementation described by this service.

Inherited from java.security.Provider.Service:
getAlgorithmgetAttributegetClassNamegetProvidergetTypesupportsParametertoString

Constructor Detail

ProviderServiceback to summary
pack-priv ProviderService(Provider p, String type, String algo, String cn)

Method Detail

newInstanceback to summary
public Object newInstance(Object ctrParamObj) throws NoSuchAlgorithmException

Overrides java.security.Provider.Service.newInstance.

Doc from java.security.Provider.Service.newInstance.

Return a new instance of the implementation described by this service. The security provider framework uses this method to construct implementations. Applications will typically not need to call it.

The default implementation uses reflection to invoke the standard constructor for this type of service. Security providers can override this method to implement instantiation in a different way. For details and the values of constructorParameter that are valid for the various types of services see the Java Cryptography Architecture (JCA) Reference Guide.

Parameters
ctrParamObj:Object

the value to pass to the constructor, or null if this type of service does not use a constructorParameter.

Returns:Object

a new implementation of this service

Annotations
@Override
Exceptions
NoSuchAlgorithmException:
if instantiation failed for any other reason.