Java Doc for Provider.java in  » 6.0-JDK-Modules » j2me » java » security » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.security 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.util.Hashtable
      java.util.Properties
         java.security.Provider

All known Subclasses:   com.sun.satsa.crypto.SunSATSA,  com.sun.j2me.crypto.SunSATSA,  sun.security.provider.Sun,
Provider
abstract public class Provider extends Properties (Code)
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:
  • Algorithms (such as DSA, RSA, MD5 or SHA-1).
  • Key generation, conversion, and management facilities (such as for algorithm-specific keys).

Each provider has a name and a version number, and is configured in each runtime it is installed in.

See 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.
version:
   1.48, 02/02/00
author:
   Benjamin Renaud



Field Summary
final static  longserialVersionUID
    

Constructor Summary
protected  Provider(String name, double version, String info)
     Constructs a provider with the specified name, version number, and information.
 Provider(String name)
     Constructs a provider with the specified name.

Method Summary
public synchronized  voidclear()
     Clears this provider so that it no longer contains the properties used to look up facilities implemented by the provider.
public synchronized  SetentrySet()
     Returns an unmodifiable Set view of the property entries contained in this Provider.
public  StringgetInfo()
     Returns a human-readable description of the provider and its services.
public  StringgetName()
     Returns the name of this provider.
public  doublegetVersion()
     Returns the version number for this provider.
public  SetkeySet()
     Returns an unmodifiable Set view of the property keys contained in this provider.
public synchronized  voidload(InputStream inStream)
     Reads a property list (key and element pairs) from the input stream.
static  ProviderloadProvider(String name)
    
public synchronized  Objectput(Object key, Object value)
     Sets the key property to have the specified 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.
Parameters:
  key - the property key.
Parameters:
  value - the property value.

public synchronized  voidputAll(Map t)
     Copies all of the mappings from the specified Map to this provider. These mappings will replace any properties that this provider had for any of the keys currently in the specified Map.
public synchronized  Objectremove(Object key)
     Removes the key property (and its corresponding value).

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.

public  StringtoString()
     Returns a string with the name and the version number of this provider.
public  Collectionvalues()
     Returns an unmodifiable Collection view of the property values contained in this provider.

Field Detail
serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
Provider
protected Provider(String name, double version, String info)(Code)
Constructs a provider with the specified name, version number, and information.
Parameters:
  name - the provider name.
Parameters:
  version - the provider version number.
Parameters:
  info - a description of the provider and its services.



Provider
Provider(String name)(Code)
Constructs a provider with the specified name. Assigns it version 1.0.
Parameters:
  name - the provider name.




Method Detail
clear
public synchronized void clear()(Code)
Clears this provider so that it no longer contains the properties used to look up facilities implemented by the provider.

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.
throws:
  SecurityException - if a security manager exists and its java.lang.SecurityManager.checkSecurityAccess method deniesaccess to clear this provider
since:
   1.2




entrySet
public synchronized Set entrySet()(Code)
Returns an unmodifiable Set view of the property entries contained in this Provider.
See Also:   java.util.Map.Entry
since:
   1.2



getInfo
public String getInfo()(Code)
Returns a human-readable description of the provider and its services. This may return an HTML page, with relevant links. a description of the provider and its services.



getName
public String getName()(Code)
Returns the name of this provider. the name of this provider.



getVersion
public double getVersion()(Code)
Returns the version number for this provider. the version number for this provider.



keySet
public Set keySet()(Code)
Returns an unmodifiable Set view of the property keys contained in this provider.
since:
   1.2



load
public synchronized void load(InputStream inStream) throws IOException(Code)
Reads a property list (key and element pairs) from the input stream.
Parameters:
  inStream - the input stream.
exception:
  IOException - if an error occurred when reading from theinput stream.
See Also:   java.util.Properties.load



loadProvider
static Provider loadProvider(String name)(Code)



put
public synchronized Object put(Object key, Object value)(Code)
Sets the key property to have the specified 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.
Parameters:
  key - the property key.
Parameters:
  value - the property value. the previous value of the specified property(key), or null if it did not have one.
throws:
  SecurityException - if a security manager exists and its java.lang.SecurityManager.checkSecurityAccess method deniesaccess to set property values.
since:
   1.2




putAll
public synchronized void putAll(Map t)(Code)
Copies all of the mappings from the specified Map to this provider. These mappings will replace any properties that this provider had for any of the keys currently in the specified Map.
since:
   1.2



remove
public synchronized Object remove(Object key)(Code)
Removes the key property (and its corresponding value).

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.
Parameters:
  key - the key for the property to be removed. the value to which the key had been mapped,or null if the key did not have a mapping.
throws:
  SecurityException - if a security manager exists and its java.lang.SecurityManager.checkSecurityAccess method deniesaccess to remove this provider's properties.
since:
   1.2




toString
public String toString()(Code)
Returns a string with the name and the version number of this provider. the string with the name and the version numberfor this provider.



values
public Collection values()(Code)
Returns an unmodifiable Collection view of the property values contained in this provider.
since:
   1.2



Fields inherited from java.util.Properties
protected Properties defaults(Code)(Java Doc)

Methods inherited from java.util.Properties
public String getProperty(String key)(Code)(Java Doc)
public String getProperty(String key, String defaultValue)(Code)(Java Doc)
public void list(PrintStream out)(Code)(Java Doc)
public void list(PrintWriter out)(Code)(Java Doc)
public synchronized void load(InputStream inStream) throws IOException(Code)(Java Doc)
public Enumeration propertyNames()(Code)(Java Doc)
public synchronized void save(OutputStream out, String header)(Code)(Java Doc)
public synchronized Object setProperty(String key, String value)(Code)(Java Doc)
public synchronized void store(OutputStream out, String header) throws IOException(Code)(Java Doc)

Methods inherited from java.util.Hashtable
public synchronized void clear()(Code)(Java Doc)
public synchronized boolean contains(Object value)(Code)(Java Doc)
public synchronized boolean containsKey(Object key)(Code)(Java Doc)
public synchronized Enumeration elements()(Code)(Java Doc)
public synchronized Object get(Object key)(Code)(Java Doc)
public boolean isEmpty()(Code)(Java Doc)
public synchronized Enumeration keys()(Code)(Java Doc)
public synchronized Object put(Object key, Object value)(Code)(Java Doc)
protected void rehash()(Code)(Java Doc)
public synchronized Object remove(Object key)(Code)(Java Doc)
public int size()(Code)(Java Doc)
public synchronized String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.