summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cmscore/dbs
Commit message (Collapse)AuthorAgeFilesLines
* Removed unnecessary pki folder.Endi Sukma Dewata2012-03-2640-10323/+0
| | | | | | | | | Previously the source code was located inside a pki folder. This folder was created during svn migration and is no longer needed. This folder has now been removed and the contents have been moved up one level. Ticket #131
* Removed unused variables (part 2).Endi Sukma Dewata2012-03-235-42/+36
| | | | | | This patch brings down the warnings from 1943 to 1221. Ticket #103
* Replaced daemon threads with executor service.Endi Sukma Dewata2012-03-122-123/+175
| | | | | | | | | | | | The certificate status update and retrieving modifications tasks have been modified to use the executor service. Unlike daemon threads, the service will allow existing task to exit gracefully before shutting down. An abandon operation is used terminate the persistent search used for retrieving modifications. Some methods have been moved to CertificateRepository class to simplify synchronizations. Ticket #73
* Refactored JobsScheduler.Endi Sukma Dewata2012-03-121-5/+2
| | | | | | | | | | | | | | The JobsScheduler has been modified to stop all jobs on shutdown. This is done by setting a flag in each job instead of stopping the job thread abruptly. Long running jobs should check this flag periodically and then exit gracefully. None of the existing jobs need to do this since they do not run very long. Other threads that run background services have been converted into daemons such that they will terminate automatically when the JVM exits. Ticket #73
* Removed unused variables (part 1).Endi Sukma Dewata2012-02-202-10/+0
| | | | | | This patch brings down the warnings from 2917 to 2406. Ticket #103
* Added generics (part 4).Endi Sukma Dewata2012-02-148-61/+76
| | | | | | This patch brings down the warnings from 3427 to 2917. Ticket #2
* KRA changes for archiving and recovering symmetric keys and passphrases.Jack Magne2012-02-133-0/+57
| | | | | | | | | | | | Ticket #66 and #68. Add ability to archive and recover symmetric keys and passphrases using rest interface. Enhanced test client to test out new functionality. Provided support to return recovered data either wrapped by symmetric key or wrapped in PBE password based encryption blob. DRM symmetric key support cleanup changes. Consists of suggested cleanup measures based on review comments.
* Added generics (part 3).Endi Sukma Dewata2012-02-066-34/+36
| | | | | | This patch brings down the warnings from 3992 to 3500. Ticket #2
* Added generics (part 2).Endi Sukma Dewata2012-01-1813-81/+82
| | | | | | This patch brings down the warnings from 4648 to 3992. Ticket #2
* Added generics (part 1).Endi Sukma Dewata2012-01-185-28/+29
| | | | | | | This patch is based on Adam's patch. It brings down the warnings from 6139 to 4648. Ticket #2
* Formatting - fix bad wrapsAde Lee2012-01-111-2/+4
|
* Formatting - line wrap > 120 in codeAde Lee2012-01-115-12/+24
|
* Formatting (no line wrap in comments or code)Ade Lee2012-01-1140-1413/+1332
|
* typesafety ACL Impls Random type safety cleanups.Adam Young2012-01-041-2/+2
|
* typesafe returns on IDBSession for VirtualListAdam Young2012-01-042-40/+42
|
* typesafety db and loggingAdam Young2012-01-044-34/+35
|
* typesafety certserv and cmscoreAdam Young2012-01-044-16/+13
| | | | Using interface instead of implementing class
* Removal of unused private methodsAdam Young2011-12-201-16/+0
| | | | | | | | | | | | These methods are uncallable. There might be some discussion about the private default constructores. The Rules of Java are different from C++: If there is any constructor defined, all the other defaults befome uncallable. Thus, the private default constructors are not needed. https://bugzilla.redhat.com/show_bug.cgi?id=728303 Conflicts: pki/base/ca/src/com/netscape/ca/CRLIssuingPoint.java
* Revert "Formatting"Ade Lee2011-12-0840-2281/+2335
| | | | This reverts commit 32150d3ee32f8ac27118af7c792794b538c78a2f.
* FormattingAde Lee2011-12-0740-2335/+2281
| | | | Formatted project according to eclipse project settings
* SerialVersionIDAdam Young2011-12-025-0/+20
| | | | Autogenerated SerialVersionID for all serializable classes
* unnecessary block removalAdam Young2011-12-021-3/+1
| | | | | | This patch removes all of the unneeded blocks that surrounded code cleaned up with the dead code removal. https://bugzilla.redhat.com/show_bug.cgi?id=728303
* Dead code removaladmiyo2011-11-212-12/+1
| | | | | | | | This patch removes all of the locations that Eclipse identified as Dead code. Only the Eclipse automated cleanups were performed, which means that some of the locations which were in *if* blocks still have the corresponding brackets around them. These ensure that the original variable semantics weren't changed, but are safe to remove in the future. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2296 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Cleanup importsadmiyo2011-11-0440-324/+464
| | | | | | | | | | Automated changes done by Eclipse Minor tweak to one file where Eclipse was tring to find an import for Any Due to finding it in an annotated comment. https://bugzilla.redhat.com/show_bug.cgi?id=728303 git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2292 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Bugzilla Bug #717813 - EV_AUDIT_LOG_SHUTDOWN audit log not generated for tps ↵jmagne2011-06-302-6/+6
| | | | | | and ca on server shutdown git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2033 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fix bugzilla bug #673614.awnuk2011-01-311-1/+1
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1796 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #491183.awnuk2010-12-241-1/+1
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1677 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #649343.awnuk2010-12-213-7/+21
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1659 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Bugzilla Bug #224945 - javadocs has missing descriptions, contains empty ↵mharmsen2010-08-1840-40/+40
| | | | | | packages (applied 'svn:keywords' per attachment 439032). git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1211 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #553423awnuk2010-04-271-0/+3
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1086 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #478909.awnuk2009-03-241-1/+0
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@321 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #478909.awnuk2009-03-241-6/+12
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@320 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* BZ472006 Serial number managementalee2009-01-055-90/+817
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@168 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fix for bug #243804awnuk2008-07-111-1/+3
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@69 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Initial open source version based upon proprietary Red Hat Certificate ↵PKI Team2008-03-1839-0/+9399
System (RHCS) 7.3. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2 c9f7a03b-bd48-0410-a16d-cbbf54688b0b