26 Jun, 2013
7 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9077 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9076 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9075 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…orkflowelement.localbackend package (clearly not public API). AccessControlHandler.java: Made the code a bit more generic by using the interfaces instead of the concrete LocalBackend*Operation classes. I could not change them all, because methods specific to LocalBackend*Operation classes are sometimes called. Not sure how to fix that fully. *.java: Consequence of the changes to AccessControlHandler. git-svn-id: https://svn.forgerock.org/opendj/trunk@9074 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Removed unused methods getCommonLogElements(), getRequestLogElements() and getResponseLogElements(). *.java: Consequence of the change to Operation. git-svn-id: https://svn.forgerock.org/opendj/trunk@9073 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9072 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Added closeSilently(Iterable<? extends Closeable>) MultiColumnPrinter.java: Used Iterator instead of Enumerable + used foreach. Converted instance variables to List instead of Vector. Fixed typos. PerformanceRunner.java: Reduce variable scope + removed unnecessary toString() git-svn-id: https://svn.forgerock.org/opendj/trunk@9070 41b1ffd8-f28e-4786-ab96-9950f0a78031
25 Jun, 2013
17 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9067 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9066 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9063 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9062 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9061 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9060 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
In the end, it's simpler long term to include the install instructions in the README, and remove these extra files. With additional review from Ludo by mail, I've also fixed up a few small things in the README. I'm leaving the SVR4 related changes to Ludo. git-svn-id: https://svn.forgerock.org/opendj/trunk@9059 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Adjust SVR4 layout according to the changes done for Linux packages. git-svn-id: https://svn.forgerock.org/opendj/trunk@9058 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
replication.properties: Fixed grammar mistakes. git-svn-id: https://svn.forgerock.org/opendj/trunk@9057 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
=> fixed cleanup for operations testsuite => removed traces for sdk tools git-svn-id: https://svn.forgerock.org/opendj/trunk@9056 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Made the test code (hopefully) more readable. git-svn-id: https://svn.forgerock.org/opendj/trunk@9055 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Implemented several methods, removed TODOs, better implemented the offer() methods. git-svn-id: https://svn.forgerock.org/opendj/trunk@9054 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9053 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9052 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9051 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9050 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9049 41b1ffd8-f28e-4786-ab96-9950f0a78031
24 Jun, 2013
7 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9048 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9047 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9046 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Fixed checkstyle error git-svn-id: https://svn.forgerock.org/opendj/trunk@9045 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
The code replaying the replicated operations now handles BUSY and UNAVAILABLE result codes and will retry replaying these operations. Prevented a possible OutOfMemoryError by bounding the queue holding the replicated operations. LDAPReplicationDomain.java, ReplicationDomain.java: In replay(), added the AtomicBoolean shutdown parameter + tested for server shutdown + handled BUSY and UNAVAILABLE result codes + In processUpdate(), added the AtomicBoolean shutdown parameter + tested for server shutdown + ensured the code works with a bounded queue. Extracted logDecodingOperationError() out of replay(). MultimasterReplication.java: Made updateToReplayQueue a bounded queue (it was unbounded before). ReplayThread.java, ListenerThread.java: Converted shutdown boolean instance member into an AtomicBoolean. git-svn-id: https://svn.forgerock.org/opendj/trunk@9044 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Review: Matthew Swift, Ludovic Poitou, Christophe Sovant 1st phase of the changes. LockManager.java: Tripled the wait time for trying to acquire a lock. *.java: Removed the triple attempts at locking anti pattern. PasswordModifyExtendedOperation.java: Extracted method toAttributeValues() from processExtendedOperation(). git-svn-id: https://svn.forgerock.org/opendj/trunk@9043 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Converted comments to javadocs. git-svn-id: https://svn.forgerock.org/opendj/trunk@9042 41b1ffd8-f28e-4786-ab96-9950f0a78031
21 Jun, 2013
9 commits
-
We now request IndexOutputBuffer with the space needed, and allocate a specific temp one, if the key is too large to fit in default buffer. Minor code cleanup and clarification in the IndexOutputBuffer class. git-svn-id: https://svn.forgerock.org/opendj/trunk@9041 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Docs are currently in the SDK part of the tree, which is why the log ref content is downloaded as an artifact. That artifact version needs to correspond to what is built on the server side, not what is built on the SDK side. git-svn-id: https://svn.forgerock.org/opendj/trunk@9039 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Rev version dependencies for the server ready for release. git-svn-id: https://svn.forgerock.org/opendj/trunk@9038 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9034 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9032 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
- inserted new line before license display - fixed the star display(first space was removed by wrapText()) git-svn-id: https://svn.forgerock.org/opendj/trunk@9027 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…uture (to be replaced with builders). git-svn-id: https://svn.forgerock.org/opendj/trunk@9020 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@9019 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Thanks to Matt Swift for the patch git-svn-id: https://svn.forgerock.org/opendj/trunk@9018 41b1ffd8-f28e-4786-ab96-9950f0a78031