blob: 51da5c043d757fb564bcd664f0840b516ac3eeb4 [file] [log] [blame]
/*
* Created on May 29, 2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package org.eclipse.update.internal.api.search;
/**
* This interface is used for update site adapter used
* for specific query serches. It adds a mapping ID
* that can be used when mapping file is specified.
* If a matching mapping is found for this ID,
* the replacement URL found in the mapping file will be
* used instead of this adapter.
*/
public interface IQueryUpdateSiteAdapter extends IUpdateSiteAdapter {
/**
* Returns an ID that can be used for matching against the information in the address mapping file.
* @return a mapping Id to compare against the address mapping file.
*/
public String getMappingId();
}