/*
* Copyright 2010 Impetus Infotech.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.impetus.kundera.index;
import java.util.List;
import com.impetus.kundera.metadata.EntityMetadata;
/**
* Interface to define the behavior of an Indexer.
*
* @author animesh.kumar
*/
public interface Indexer {
/**
* Unindexed an entity with key:id.
*
* @param metadata
* the metadata
* @param id
* the id
*/
void unindex(EntityMetadata metadata, String id);
/**
* Indexes and object.
*
* @param metadata
* the metadata
* @param object
* the object
*/
void index(EntityMetadata metadata, Object object);
/**
* Searches for an object. Note that the "query" must be in Indexer
* specified form.
*
* @param query
* the query
* @param start
* the start
* @param count
* the count
* @return the list
*/
List<String> search(String query, int start, int count);
}