package com.dexels.index.api; import java.io.IOException; import org.osgi.annotation.versioning.ProviderType; /** *

* This is an example of an interface that is expected to be implemented by Providers of the API. Adding methods to this * interface is a minor change, because only Providers will be affected. *

* * @see ProviderType * @since 1.0 */ @ProviderType public interface IndexingService { public void insertJson(String jsonString) throws IOException; public void insertJson(String key, String jsonString) throws IOException; }