is new.
java.lang.Objectjava.util.Dictionary<K,V>
java.util.Hashtable<Object,Object>
java.util.Properties
java.security.Provider
public abstract class Provider
This class represents a "provider" for the Java Security API, where a provider implements some or all parts of Java Security. Services that a provider may implement include:
Each provider has a name and a version number, and is configured in each runtime it is installed in.
See
The Provider Class
The Provider Class
in the "Java Cryptography Architecture API Specification & Reference" for information about how a particular type of provider, the cryptographic service provider, works and is installed. However, please note that a provider can be used to implement any security service in Java that uses a pluggable architecture with a choice of implementations that fit underneath.
Some provider implementations may encounter unrecoverable internal errors during their operation, for example a failure to communicate with a security token. A ProviderException should be used to indicate such errors.
The service type Provider is reserved for use by the security framework. Services of this type cannot be added, removed, or modified by applications. The following attributes are automatically placed in each Provider object:
| Name | Value |
|---|---|
| Provider.id name | String.valueOf(provider.getName()) |
| Provider.id version | String.valueOf(provider.getVersion()) |
| Provider.id info | String.valueOf(provider.getInfo()) |
| Provider.id className | provider.getClass().getName() |
| Nested Class Summary | |
|---|---|
| static class |
Provider.Service
The description of a security service. |
| Field Summary |
|---|
| Fields inherited from class java.util. Properties |
|---|
| defaults |
| Constructor Summary | |
|---|---|
| protected |
Provider
(
String
name, double version,
String
info) Constructs a provider with the specified name, version number, and information. |
| Method Summary | |
|---|---|
| void |
clear
() Clears this provider so that it no longer contains the properties used to look up facilities implemented by the provider. |
Enumeration
<
Object
|
elements
()
Returns an enumeration of the values in this hashtable.
|
| Set < Map.Entry < Object , Object >> |
entrySet
() Returns an unmodifiable Set view of the property entries contained in this Provider. |
Object
|
get
(
Object
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
|
| String |
getInfo
() Returns a human-readable description of the provider and its services. |
| String |
getName
() Returns the name of this provider. |
String
|
getProperty
(
String
Searches for the property with the specified key in this property list.
|
| Provider.Service |
getService
(
String
type,
String
algorithm) Get the service describing this Provider's implementation of the specified type of this algorithm or alias. |
| Set < Provider.Service > |
getServices
() Get an unmodifiable Set of all services supported by this Provider. |
| double |
getVersion
() Returns the version number for this provider. |
Enumeration
<
Object
|
keys
()
Returns an enumeration of the keys in this hashtable.
|
| Set < Object > |
keySet
() Returns an unmodifiable Set view of the property keys contained in this provider. |
| void |
load
(
InputStream
inStream) Reads a property list (key and element pairs) from the input stream. |
| Object |
put
(
Object
key,
Object
value) Sets the key property to have the specified value. |
| void |
putAll
(
Map
<?,?> t) Copies all of the mappings from the specified Map to this provider. |
| protected void |
putService
(
Provider.Service
s) Add a service. |
| Object |
remove
(
Object
key) Removes the key property (and its corresponding value). |
| protected void |
removeService
(
Provider.Service
s) Remove a service previously added using putService() . |
| String |
toString
() Returns a string with the name and the version number of this provider. |
| Collection < Object > |
values
() Returns an unmodifiable Collection view of the property values contained in this provider. |
| Methods inherited from class java.util. Properties |
|---|
load
,
loadFromXML
,
propertyNames
,
save
,
setProperty
,
store
,
store
,
storeToXML
,
storeToXML
,
stringPropertyNames
|
| Methods inherited from class java.util. Hashtable |
|---|
clone
,
contains
,
containsKey
,
containsValue
,
|
| Methods inherited from class java.lang. Object |
|---|
| finalize , getClass , notify , notifyAll , wait , wait , wait |
| Constructor Detail |
|---|
protected Provider(String name,
double version,
String info)
| Method Detail |
|---|
public String getName()
public double getVersion()
public String getInfo()
public String toString()
public void clear()
First, if there is a security manager, its checkSecurityAccess method is called with the string "clearProviderProperties."+name (where name is the provider name) to see if it's ok to clear this provider. If the default implementation of checkSecurityAccess is used (that is, that method is not overriden), then this results in a call to the security manager's checkPermission method with a SecurityPermission("clearProviderProperties."+name) permission.
public void load(InputStream inStream)
throws IOException
Properties.load(java.io.Reader)
public void putAll(Map<?,?> t)
public Set<Map.Entry<Object,Object>> entrySet()
public Set<Object> keySet()
public Collection<Object> values()
public Object put(Object key,
Object value)
First, if there is a security manager, its checkSecurityAccess method is called with the string "putProviderProperty."+name, where name is the provider name, to see if it's ok to set this provider's property values. If the default implementation of checkSecurityAccess is used (that is, that method is not overriden), then this results in a call to the security manager's checkPermission method with a SecurityPermission("putProviderProperty."+name) permission.
public Object remove(Object key)
First, if there is a security manager, its checkSecurityAccess method is called with the string "removeProviderProperty."+name, where name is the provider name, to see if it's ok to remove this provider's properties. If the default implementation of checkSecurityAccess is used (that is, that method is not overriden), then this results in a call to the security manager's checkPermission method with a SecurityPermission("removeProviderProperty."+name) permission.
get
public
Object
get
(
Object
key)
Description copied from class:
Hashtable
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
More formally, if this map contains a mapping from a key k to a value v such that (key.equals(k)), then this method returns v; otherwise it returns null. (There can be at most one such mapping.)
Specified by:
get
in interface
Map
<
Object
,
Object
>
Overrides:
get
in class
Hashtable
<
Object
,
Object
>
Parameters:
key - the key whose associated value is to be returned
Returns:
the value to which the specified key is mapped, or null if this map contains no mapping for the key
See Also:
Hashtable.put(Object, Object)
keys
public
Enumeration
<
Object
>
keys
()
Description copied from class:
Hashtable
Returns an enumeration of the keys in this hashtable.
Overrides:
keys
in class
Hashtable
<
Object
,
Object
>
Returns:
an enumeration of the keys in this hashtable.
See Also:
Enumeration
,
Hashtable.elements()
,
Hashtable.keySet()
,
Map
elements
public
Enumeration
<
Object
>
elements
()
Description copied from class:
Hashtable
Returns an enumeration of the values in this hashtable. Use the Enumeration methods on the returned object to fetch the elements sequentially.
Overrides:
elements
in class
Hashtable
<
Object
,
Object
>
Returns:
an enumeration of the values in this hashtable.
See Also:
Enumeration
,
Hashtable.keys()
,
Hashtable.values()
,
Map
getProperty
public
String
getProperty
(
String
key)
Description copied from class:
Properties
Searches for the property with the specified key in this property list. If the key is not found in this property list, the default property list, and its defaults, recursively, are then checked. The method returns null if the property is not found.
Overrides:
getProperty
in class
Properties
Parameters:
key - the property key.
Returns:
the value in this property list with the specified key value.
See Also:
Properties.setProperty(java.lang.String, java.lang.String)
,
Properties.defaults
public Provider.Service getService(String type,
String algorithm)
public Set<Provider.Service> getServices()
protected void putService(Provider.Service s)
Java Cryptography Architecture API Specification & Reference
Also, if there is a security manager, its checkSecurityAccess method is called with the string "putProviderProperty."+name, where name is the provider name, to see if it's ok to set this provider's property values. If the default implementation of checkSecurityAccess is used (that is, that method is not overriden), then this results in a call to the security manager's checkPermission method with a SecurityPermission("putProviderProperty."+name) permission.
protected void removeService(Provider.Service s)
Also, if there is a security manager, its checkSecurityAccess method is called with the string "removeProviderProperty."+name, where name is the provider name, to see if it's ok to remove this provider's properties. If the default implementation of checkSecurityAccess is used (that is, that method is not overriden), then this results in a call to the security manager's checkPermission method with a SecurityPermission("removeProviderProperty."+name) permission.