summaryrefslogtreecommitdiffstats
path: root/pki
Commit message (Collapse)AuthorAgeFilesLines
...
* Removal of unused private methodsAdam Young2011-12-2057-2346/+4
| | | | | | | | | | | | 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
* encode utf-8Adam Young2011-12-201-0/+1
| | | | https://fedorahosted.org/pki/ticket/79
* Fixed missing dependencies in pki-util-test.Endi Sukma Dewata2011-12-201-1/+1
| | | | | | The pki-util-test should depend on pki-nsutil and pki-cmsutil. Tickeet #3
* Added unit tests for pki-util.Endi Sukma Dewata2011-12-1923-5/+1681
| | | | | | | | | | | New unit tests have been added to test string converters indirectly. This is to allow replacing the converters with charset encoder and decoder without changing the test cases. The TestRunner has been moved into a separate package such that it can be reused by other packages. Ticket #3
* Revert "Formatting"Ade Lee2011-12-081314-106002/+110231
| | | | This reverts commit 32150d3ee32f8ac27118af7c792794b538c78a2f.
* Revert "Indent in conditionals"Ade Lee2011-12-087-11/+11
| | | | This reverts commit 0b5c0e0542354edc8cab4da6a1afa1ff00800c0c.
* Indent in conditionalsAdam Young2011-12-087-11/+11
| | | | | Additional Formatting generated by Eclipse 3.7.1 It provides more detailed control of the indentation which is not provided in the earlier version
* FormattingAde Lee2011-12-071314-110231/+106002
| | | | Formatted project according to eclipse project settings
* Comment formatting changeAde Lee2011-12-071-2/+2
|
* Changes to the formatting of commentsAde Lee2011-12-071-3/+3
|
* TreeSetAdam Young2011-12-0752-583/+365
| | | | | | | | | | | | | | | | | | | ArraySet and AttributeNameEnumeration both were not updated to handfle Generics. Neither are really needed, and are likely to introduce errors. ArraySet can be safely replaced by TreeSet. TreeSet provides a stricter ordering constraint than ArraySet did. This will not hurt anything, and may actually be closer to the desired behavior AttributeNameEnumeration was a thin wrapper around Vector. It has been replaced with Vector<String> In addition, this patch cleans up the Type safety in of the collections used in the related files. removed files from cmake Removed custom collection files Supressed watnings generated by the clone method.
* Remove Deprecated Date FunctionsAdam Young2011-12-065-33/+52
| | | | | | Fixed error in parsing for stringToDate https://fedorahosted.org/pki/ticket/3
* call statics staticallyAdam Young2011-12-0637-165/+164
| | | | | | | https://bugzilla.redhat.com/show_bug.cgi?id=728303 Updated with changes from code review Leaving in the warning in GenericASN1Extension, ans that is an indication of a real problem, which will get addressed in a separate patch.
* PKISilent type safety changesAdam Young2011-12-0520-233/+215
| | | | | Specifies the types for the collections. Changes no behavior, and, due to erasure, should not even change the resulting byte code.
* Fixed stack trace in test report.Endi Sukma Dewata2011-12-051-4/+19
| | | | | | | The report generator has been fixed to show the stack trace from the test source code. Ticket #36
* Added JUnit report generator.Endi Sukma Dewata2011-12-054-6/+283
| | | | | | | A custom JUnit test runner has been added to capture test results and generate XML reports. Ticket #36
* Bug 759339 - fixes sporadic blank line in DRMToolMatthew Harmsen2011-12-021-1/+1
|
* Revert "Remove Deprecated Date Functions"Adam Young2011-12-025-51/+32
| | | | | | This reverts commit d7d71804b885118e74928e413a8e7fb91b78706c. It was commited by mistake. It changes the Certificate Geenrate code, and requires a unit test
* SerialVersionIDAdam Young2011-12-02333-11/+1478
| | | | Autogenerated SerialVersionID for all serializable classes
* Remove Deprecated Date FunctionsAdam Young2011-12-025-32/+51
| | | | https://fedorahosted.org/pki/ticket/3
* Adjust classpath for F16Adam Young2011-12-021-2/+2
|
* unnecessary block removalAdam Young2011-12-0218-147/+111
| | | | | | 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
* Code formatting rules for the Java files. This is basically the Eclipse Java ↵Ade Lee2011-12-022-0/+274
| | | | conventions format with no tabs allowed.
* Split make to avoid build failureAdam Young2011-12-011-1/+2
|
* Added support for JUnit in CMake.Endi Sukma Dewata2011-11-285-1/+154
| | | | | | | | A new function add_junit_test() has been added to execute JUnit tests in CMake. The function is used to execute the unit tests in the common package. Ticket #36
* Dead code removaladmiyo2011-11-2137-333/+22
| | | | | | | | 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
* PKISilent in single tree PKISilent was a series of classes, each in the ↵admiyo2011-11-1749-65/+224
| | | | | | Common namespace. Now it is in a single tree and fronted by a single Java class that multiplexes between them. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2295 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Exclude CMake files from classpathadmiyo2011-11-161-7/+7
| | | | | | https://bugzilla.redhat.com/show_bug.cgi?id=728303 git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2294 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Cleanup importsadmiyo2011-11-041198-11445/+14430
| | | | | | | | | | 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
* Fixed bugzilla bug #747019.awnuk2011-11-031-0/+16
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2289 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #747381.awnuk2011-11-031-1/+9
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2286 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* add tests to classpath.admiyo2011-11-021-0/+1
| | | | | | | | Required as a part of the cleanup for https://bugzilla.redhat.com/show_bug.cgi?id=728303 git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2281 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* stub unimplemented abstract methodsadmiyo2011-11-022-0/+121
| | | | | | | | | | the test code has mock objects that implement abstract interfaces, but did not implement all of the methods, causing the compiler to complain. Required as a part of the cleanup for https://bugzilla.redhat.com/show_bug.cgi?id=728303 git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2280 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Bugzilla Bug #737761 - Update Dogtag Packages for Fedora 16mharmsen2011-10-2912-16/+81
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2277 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Bugzilla Bug #749945 - Installation error reported during CA, DRM, OCSP, and ↵mharmsen2011-10-294-76/+84
| | | | | | TKS package installation . . . git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2276 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Bugzilla Bug #749927 - Java class conflicts using Java 7 in Fedora 17 ↵mharmsen2011-10-291-1/+1
| | | | | | (rawhide) . . . git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2275 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Bug 744797 - KRA key recovery (retrieve pkcs#12) fails after the in-place ↵cfu2011-10-223-16/+35
| | | | | | upgrade( CS 8.0->8.1) git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2274 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Bug 737122 - DRM: during archiving and recovering, wrapping unwrapping keys ↵cfu2011-10-216-43/+369
| | | | | | should be done in the token git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2273 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fix Bugzilla Bug 746367 - Typo in the profile name.jmagne2011-10-201-1/+1
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2266 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #743770.awnuk2011-10-081-1/+5
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2260 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #743770.awnuk2011-10-072-1/+9
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2258 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #743770.awnuk2011-10-071-5/+28
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2256 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* eclipse project filesadmiyo2011-10-053-0/+53
| | | | | | | | | | This contains only the files necessary to get the project to import into Eclipse, plus a very small .gitignore file for people that want to use git svn. This patch should have no effects on the way that code currently runs. The difference between this patch and the previous submission is that this one does not attempt to deal with the problems due to the code duplication between the console and common code bases: it does not include the console in the classpath. People that want to use eclipse to work with the console will have to perform additional modifications. Also, it does not include the directory base/common/test that has mock objects for abstract base classes that have not been completely implemented. This version has removed all .class file references from the .gitignore as well. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2253 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #737217.awnuk2011-09-302-4/+36
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2248 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Resolves #737192 - Need script to upgrade proxy configurationvakwetu2011-09-305-83/+598
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2244 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Fixed bugzilla bug #737216awnuk2011-09-302-0/+2
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2242 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* SPEC FILE CHANGE: Specify '_unitdir' macro for F15 platforms, also.mharmsen2011-09-304-4/+4
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2239 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* SPEC FILE CHANGE: Changed "%elseif" to "%else", "%if", and "%endif".mharmsen2011-09-305-9/+47
| | | | | | | SPEC FILE CHANGE: Specified '_unitdir' macro for non-'systemd' platforms. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2238 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Bugzilla Bug #737761 - Update Dogtag Packages for Fedora 16mharmsen2011-09-2918-172/+326
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2237 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
* Resolves #739708 - pki-selinux lacks rules in F16vakwetu2011-09-272-1/+5
| | | | git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2228 c9f7a03b-bd48-0410-a16d-cbbf54688b0b