Java Doc for CertAttrSet.java in  » 6.0-JDK-Modules » j2me » sun » security » x509 » 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 » sun.security.x509 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


sun.security.x509.CertAttrSet

All known Subclasses:   sun.security.x509.KeyUsageExtension,  sun.security.x509.NameConstraintsExtension,  sun.security.x509.NetscapeCertTypeExtension,  sun.security.x509.CRLNumberExtension,  sun.security.x509.CertificateSubjectName,  sun.security.x509.CertificateSerialNumber,  sun.security.x509.CertificateValidity,  sun.security.x509.X509CertInfo,  sun.security.x509.SubjectAlternativeNameExtension,  sun.security.x509.CertificateExtensions,  sun.security.x509.CRLReasonCodeExtension,  sun.security.x509.CertificateSubjectUniqueIdentity,  sun.security.x509.CertificateIssuerUniqueIdentity,  sun.security.x509.CertificateIssuerName,  sun.security.x509.AuthorityKeyIdentifierExtension,  sun.security.x509.IssuerAlternativeNameExtension,  sun.security.x509.PolicyMappingsExtension,  sun.security.x509.SubjectKeyIdentifierExtension,  sun.security.x509.CertificateAlgorithmId,  sun.security.x509.CertificateX509Key,  sun.security.x509.CertificateVersion,  sun.security.x509.ExtendedKeyUsageExtension,  sun.security.x509.BasicConstraintsExtension,  sun.security.x509.PrivateKeyUsageExtension,  sun.security.x509.PolicyConstraintsExtension,
CertAttrSet
public interface CertAttrSet (Code)
This interface defines the methods required of a certificate attribute. Examples of X.509 certificate attributes are Validity, Issuer_Name, and Subject Name. A CertAttrSet may comprise one attribute or many attributes.

A CertAttrSet itself can also be comprised of other sub-sets. In the case of X.509 V3 certificates, for example, the "extensions" attribute has subattributes, such as those for KeyUsage and AuthorityKeyIdentifier.
author:
   Amit Kapoor
author:
   Hemma Prafullchandra
version:
   1.14
See Also:   CertificateException





Method Summary
 voiddecode(InputStream in)
     Decodes the attribute in the input stream.
 voiddelete(String name)
     Deletes an attribute value from this CertAttrSet.
 voidencode(OutputStream out)
     Encodes the attribute to the output stream in a format that can be parsed by the decode method.
 Objectget(String name)
     Gets an attribute value for this CertAttrSet.
 EnumerationgetElements()
     Returns an enumeration of the names of the attributes existing within this attribute.
 StringgetName()
     Returns the name (identifier) of this CertAttrSet.
 voidset(String name, Object obj)
     Sets an attribute value within this CertAttrSet.
Parameters:
  name - the name of the attribute (e.g.
 StringtoString()
     Returns a short string describing this certificate attribute.



Method Detail
decode
void decode(InputStream in) throws CertificateException, IOException(Code)
Decodes the attribute in the input stream.
Parameters:
  in - the InputStream to read the encoded attribute from.
exception:
  CertificateException - on decoding or validity errors.
exception:
  IOException - on other errors.



delete
void delete(String name) throws CertificateException, IOException(Code)
Deletes an attribute value from this CertAttrSet.
Parameters:
  name - the name of the attribute to delete.
exception:
  CertificateException - on attribute handling errors.
exception:
  IOException - on other errors.



encode
void encode(OutputStream out) throws CertificateException, IOException(Code)
Encodes the attribute to the output stream in a format that can be parsed by the decode method.
Parameters:
  out - the OutputStream to encode the attribute to.
exception:
  CertificateException - on encoding or validity errors.
exception:
  IOException - on other errors.



get
Object get(String name) throws CertificateException, IOException(Code)
Gets an attribute value for this CertAttrSet.
Parameters:
  name - the name of the attribute to return.
exception:
  CertificateException - on attribute handling errors.
exception:
  IOException - on other errors.



getElements
Enumeration getElements()(Code)
Returns an enumeration of the names of the attributes existing within this attribute. an enumeration of the attribute names.



getName
String getName()(Code)
Returns the name (identifier) of this CertAttrSet. the name of this CertAttrSet.



set
void set(String name, Object obj) throws CertificateException, IOException(Code)
Sets an attribute value within this CertAttrSet.
Parameters:
  name - the name of the attribute (e.g. "x509.info.key")
Parameters:
  obj - the attribute object.
exception:
  CertificateException - on attribute handling errors.
exception:
  IOException - on other errors.



toString
String toString()(Code)
Returns a short string describing this certificate attribute. value of this certificate attribute inprintable form.



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