09 Oct, 2006

2 commits


08 Oct, 2006

5 commits


07 Oct, 2006

5 commits


06 Oct, 2006

3 commits


05 Oct, 2006

5 commits


04 Oct, 2006

2 commits


03 Oct, 2006

7 commits


02 Oct, 2006

3 commits

  • git-svn-id: https://svn.forgerock.org/opendj/trunk@497 41b1ffd8-f28e-4786-ab96-9950f0a78031
    coulbeck
     
  • make it easier for external developers to extend OpenDS.  In particular, this
    is a big step towards eliminating the need for developers to reference anything
    in the core package, and it's also a signficant simplification to the plugin
    API because it helps expose which operation methods are safe to call at various
    points in the plugin processing.
    
    The most significant changes in this commit include:
    
    - I've created a new org.opends.server.types.operation package and added 
    a lot of interfaces into it.  These interfaces define the set of methods 
    that may be called on operations at various points in plugin processing 
    (e.g., there's a PreParseAddOperation interface that exposes the methods 
    of the AddOperation class that are safe to call from a pre-parse 
    plugin).  All of the core operation types now implement the appropriate 
    set of interfaces, and the plugin API methods now take these interfaces 
    as arguments rather than the Operation subclass itself.
    
    - I've moved a number of classes from the core package to the types 
    package.  All references to these classes anywhere in the code were 
    updated to reflect the change.  The classes that were moved include:
       * CancelledOperationException
       * CancelRequest
       * CancelResult
       * CryptoManager
       * DirectoryException
       * InitializationException
       * LockManager
       * OperationType
       * Schema
    
    - I've also moved the test cases for the DirectoryException and 
    InitializationException classes from the core to the types package.
    
    - Some general cleanup in the core operation classes.  Virtually all 
    methods should now be marked final.  All methods inherited from the 
    abstract Operation class now use "{@inheritDoc}" for the javadoc 
    documentation and have the "@override" annotation.
    
    - The DirectoryServerPlugin class has been updated so that the default 
    implementations for all plugin methods now throw a runtime exception to 
    indicate that the requested functionality has not been implemented.
    
    
    git-svn-id: https://svn.forgerock.org/opendj/trunk@495 41b1ffd8-f28e-4786-ab96-9950f0a78031
    neil_a_wilson
     
  • * make ObjectClass immutable
    * pull out common schema definition elements into a separate common base class and refactor both ObjectClass and AttributeType to use it
    * create test suite for common schema definition elements.
    
    
    git-svn-id: https://svn.forgerock.org/opendj/trunk@494 41b1ffd8-f28e-4786-ab96-9950f0a78031
    matthew_swift
     

29 Sep, 2006

4 commits


27 Sep, 2006

3 commits


26 Sep, 2006

1 commit