mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

sin
17.11.2009 76c87042a9fb3ac7f1a25cc9d836da521eb8547f
opends/src/server/org/opends/server/api/ExtensibleMatchingRule.java
@@ -37,7 +37,7 @@
/**
 * This class defines the set of methods and structures that must be
 * This interface defines the set of methods that must be
 * implemented by a Directory Server module that implements an
 * Extensible matching rule.
 */
@@ -46,7 +46,7 @@
    mayInstantiate = false,
    mayExtend = true,
    mayInvoke = false)
public abstract class ExtensibleMatchingRule extends MatchingRule
public interface ExtensibleMatchingRule extends MatchingRule
{
  /**
   * Returns a collection of extensible indexers associated with this
@@ -58,7 +58,7 @@
   * @return The collection of extensible indexers associated with
   *         this matching rule.
   */
  public abstract Collection<ExtensibleIndexer> getIndexers(
  Collection<ExtensibleIndexer> getIndexers(
      IndexConfig config);
@@ -79,6 +79,6 @@
   * @throws DirectoryException
   *           If an error occurs while generating the index query.
   */
  public abstract <T> T createIndexQuery(ByteSequence assertionValue,
  <T> T createIndexQuery(ByteSequence assertionValue,
      IndexQueryFactory<T> factory) throws DirectoryException;
}
}