| | |
| | | import java.util.Collection; |
| | | |
| | | import org.forgerock.opendj.ldap.ByteSequence; |
| | | import org.opends.server.types.DirectoryException; |
| | | import org.forgerock.opendj.ldap.DecodeException; |
| | | import org.opends.server.types.IndexConfig; |
| | | |
| | | |
| | |
| | | * construct the index query. |
| | | * @return The index query appropriate for the provided attribute |
| | | * value assertion. |
| | | * @throws DirectoryException |
| | | * @throws DecodeException |
| | | * If an error occurs while generating the index query. |
| | | */ |
| | | <T> T createIndexQuery(ByteSequence assertionValue, |
| | | IndexQueryFactory<T> factory) throws DirectoryException; |
| | | IndexQueryFactory<T> factory) throws DecodeException; |
| | | } |