summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cmscore/cert
Commit message (Collapse)AuthorAgeFilesLines
* Fixed exceptions during shutdown.Endi Sukma Dewata2012-08-281-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | The shutdown() methods in several classes have been fixed to allow more graceful shutdown and clean restart. There are two types of object attributes that need to be handled differently. Attributes that are initialized by the constructor should not be nulled during shutdown because they won't be reinitialized during restart. If they require a cleanup (e.g. emptying collections, closing LDAP connections) it's not necessary to check for null before calling the cleanup method because they're never null. For attributes that are initialized during init(), it may not be necessary to do a cleanup or null the attribute since they might still be used by other threads and they will be reinitialized during restart so the old objects will be garbage collected. If they do need a cleanup they should be checked for null because they might still be null due to init() failure or initialization conditionals. If the attributes are initialized conditionally, the logic has been modified to ensure the attributes are either initialized or set to null. Ticket #247
* Misc Fixes Remaining part of the code.Abhishek Koneru2012-07-182-2/+5
|
* Coverity CATCH_REXCEPTION and UNREAD_FIELD_CASESAbhishek Koneru2012-07-061-22/+27
|
* Fixes for Guarded_By_Violation issues shown in CoverityAbhishek Koneru2012-07-023-4/+6
|
* Fixes for Forward Null Cases in Coverity for DogTag10Abhishek Koneru2012-06-291-0/+7
| | | | Addressed review coments.
* Fixes for Coverity issues of type Resource Leaks - RemainingAbhishek Koneru2012-06-251-12/+23
|
* Fixes for Null_Returns Cases - 1 For CommitAbhishek Koneru2012-06-051-3/+9
|
* Patch for fixes for Review CommentsAbhishek Koneru2012-05-241-2/+1
|
* Fixes for Coverity Defects of Category : FB.SBSC_USE_STRINGBUFFER_CONCATENATIONAbhishek Koneru2012-05-241-7/+7
|
* Removed unnecessary type casts.Endi Sukma Dewata2012-04-095-8/+8
| | | | | | Unnecessary type casts have been removed using Eclipse Quick Fix. Ticket #134
* Removed whitespaces from Java code.Endi Sukma Dewata2012-04-0912-41/+41
| | | | | | | | Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134
* Replaced deprecated AlgorithmId.getAlgorithmId().Endi Sukma Dewata2012-03-281-20/+19
| | | | | | | The deprecated getAlgorithmId() method in AlgorithmId has been replaced with get(). Ticket #3
* Removed unnecessary pki folder.Endi Sukma Dewata2012-03-2613-0/+3278
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