
| Key: |
DIRSERVER-224
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Alex Karasulu
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
01/Sep/05 01:02 PM
|
|
The SubtreeSpecificationParser will need to normalize RDN values for exclusions. To do this it must delegate RDN normalization to the DnParser it uses. It must use the overloaded constructor on the DnParser which takes a NameComponentNormalizer as an argument. This means the SubtreeSpecificationParser's constructor must be overloaded to accept a NameComponentNormalizer to hand off to the DnParser constructor.
|
|
Description
|
The SubtreeSpecificationParser will need to normalize RDN values for exclusions. To do this it must delegate RDN normalization to the DnParser it uses. It must use the overloaded constructor on the DnParser which takes a NameComponentNormalizer as an argument. This means the SubtreeSpecificationParser's constructor must be overloaded to accept a NameComponentNormalizer to hand off to the DnParser constructor. |
Show » |
|
DnParser is instantiated in the antlr generated parser and antlr generated parsers' constructors are generally left as they are. So the code messed a bit to solve this tiny issue.
I've also added a test case for this new feature and it passes :-)