| | |
| | | * Header, with the fields enclosed by brackets [] replaced by your own identifying |
| | | * information: "Portions Copyright [year] [name of copyright owner]". |
| | | * |
| | | * Copyright 2015 ForgeRock AS. |
| | | * Copyright 2015-2016 ForgeRock AS. |
| | | */ |
| | | package org.opends.server.schema; |
| | | |
| | |
| | | |
| | | FakeByteStringIndex(String mrName) throws DecodeException |
| | | { |
| | | matchingRule = DirectoryServer.getMatchingRule(mrName.toLowerCase()); |
| | | matchingRule = DirectoryServer.getMatchingRule(mrName); |
| | | IndexingOptions options = mock(IndexingOptions.class); |
| | | indexer = matchingRule.createIndexers(options).iterator().next(); |
| | | } |