Java Doc for AuthenticationUtil.java in  » ESB » cbesb-1.2 » com » bostechcorp » cbesb » ui » util » 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 » ESB » cbesb 1.2 » com.bostechcorp.cbesb.ui.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.bostechcorp.cbesb.ui.util.AuthenticationUtil

AuthenticationUtil
public class AuthenticationUtil (Code)

Inner Class :protected class ProcessMonitor extends Thread

Field Summary
public static  StringMULTIPLE_FILE_SEPARATOR
    
protected static  StringcommandResult
    
protected static  Loglog
    


Method Summary
public static  voiddeleteTrustedCertificate(File jksTrustStoreFile, String password, String entryName)
     Delete a trusted certificate from a jks trust store file. entryName should be an alias name in the truststore.
public static  voidexportCertificateSigningRequest(File jksKeyFile, String password, File exportFileToCreate)
     Export a Certificate Signing Request from a private key jks file to a base-64 encoded export file.
public static  StringexportFileToString(File exportFile)
     Return a human readable string summarizing the contents of a base-64 encoded export file.
public static  voidexportPublicKeyCertificate(File jksKeyFile, String password, File exportFileToCreate)
    
public static  voidexportTrustedCertificate(File jksTrustStoreFile, String password, String entryName, File exportFileToCreate)
     Export a trusted certificate from a jks trust store file to a base-64 encoded export file. entryName should be an alias name in the truststore.
public static  voidgenerateKey(File jksFileToCreate, String dName, String password)
     Generate a private/public key pair and self signed certificate and write it to a file in JKS format.
public static  StringgetCommandResult()
    
protected static  StringgetKeyToolPath()
    
public static  String[]getTrustStoreEntries(File jksTrustStoreFile, String password)
     Get a list of the entries in a trust store file.
public static  voidimportSignedCertificate(File jksKeyFile, String password, File importFile, String preRequiredFiles)
     Import a base-64 encoded signed certificate chain into a jks key file.
public static  voidimportTrustedCertificate(File jksTrustStoreFile, String password, File importFile)
    
public static  StringkeyFileToString(File jksKeyFile, String password)
     Return a readable string summarizing a key file Used to "view" a key file.
public static  voidmain(String args)
    
protected static  voidrunKeyTool(String cmd)
    
public static  StringtrustStoreFileToString(File jksTrustStoreFile, String password)
     Return a readable string summarizing the contents of a trust store file.

Field Detail
MULTIPLE_FILE_SEPARATOR
public static String MULTIPLE_FILE_SEPARATOR(Code)



commandResult
protected static String commandResult(Code)



log
protected static Log log(Code)





Method Detail
deleteTrustedCertificate
public static void deleteTrustedCertificate(File jksTrustStoreFile, String password, String entryName) throws Exception(Code)
Delete a trusted certificate from a jks trust store file. entryName should be an alias name in the truststore. Valid entries can be found with getTrustStoreEntries()



exportCertificateSigningRequest
public static void exportCertificateSigningRequest(File jksKeyFile, String password, File exportFileToCreate) throws Exception(Code)
Export a Certificate Signing Request from a private key jks file to a base-64 encoded export file.



exportFileToString
public static String exportFileToString(File exportFile) throws Exception(Code)
Return a human readable string summarizing the contents of a base-64 encoded export file. Use to "view" and export file.



exportPublicKeyCertificate
public static void exportPublicKeyCertificate(File jksKeyFile, String password, File exportFileToCreate) throws Exception(Code)
Export the public key certificate (or certificate chain) from a private key jks file to a base-64 encoded export file



exportTrustedCertificate
public static void exportTrustedCertificate(File jksTrustStoreFile, String password, String entryName, File exportFileToCreate) throws Exception(Code)
Export a trusted certificate from a jks trust store file to a base-64 encoded export file. entryName should be an alias name in the truststore. Valid entries can be found with getTrustStoreEntries()



generateKey
public static void generateKey(File jksFileToCreate, String dName, String password) throws Exception(Code)
Generate a private/public key pair and self signed certificate and write it to a file in JKS format. This will overwite an existing file.



getCommandResult
public static String getCommandResult()(Code)



getKeyToolPath
protected static String getKeyToolPath()(Code)



getTrustStoreEntries
public static String[] getTrustStoreEntries(File jksTrustStoreFile, String password) throws Exception(Code)
Get a list of the entries in a trust store file. Use this to browse a trust file for exporting or deleting an entry.



importSignedCertificate
public static void importSignedCertificate(File jksKeyFile, String password, File importFile, String preRequiredFiles) throws Exception(Code)
Import a base-64 encoded signed certificate chain into a jks key file. This replaces the existing certificate in the key file.



importTrustedCertificate
public static void importTrustedCertificate(File jksTrustStoreFile, String password, File importFile) throws Exception(Code)
Import a base-64 encoded certificate file into a trust store



keyFileToString
public static String keyFileToString(File jksKeyFile, String password) throws Exception(Code)
Return a readable string summarizing a key file Used to "view" a key file.



main
public static void main(String args) throws Exception(Code)



runKeyTool
protected static void runKeyTool(String cmd) throws Exception(Code)



trustStoreFileToString
public static String trustStoreFileToString(File jksTrustStoreFile, String password) throws Exception(Code)
Return a readable string summarizing the contents of a trust store file. Used to "view" a trust store.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(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.