OSDN Git Service

Spiという名前をすべてServiceに変更した.
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / spi / BirthmarkExtractorService.java
@@ -1,7 +1,5 @@
 package jp.sourceforge.stigmata.spi;
 
-import java.util.Locale;
-
 import jp.sourceforge.stigmata.BirthmarkExtractor;
 
 /**
@@ -9,26 +7,17 @@ import jp.sourceforge.stigmata.BirthmarkExtractor;
  *
  * @author Haruaki TAMADA
  */
-public interface BirthmarkExtractorSpi extends ServiceProvider{
+public interface BirthmarkExtractorService{
     /**
      * returns a type of the birthmark this service provides.
      */
     public String getType();
 
     /**
-     * returns a localized description of the birthmark this service provides.
-     */
-    @Override
-    public String getDescription(Locale locale);
-
-    /**
      * returns a localized description of the birthmark in default locale.
      */
-    @Override
     public String getDescription();
 
-    public String getExtractorClassName();
-
     /**
      * returns a extractor for the birthmark of this service.
      */