001package javax.visrec.spi; 002 003import javax.visrec.ml.classification.ClassifierBuilder; 004 005/** 006 * Service to provide builders. 007 * 008 * @author Kevin Berendsen 009 * @since 1.0 010 * @Deprecated for removal 011 */ 012@Deprecated 013public interface BuilderService { 014 015 /** 016 * Creates a new instance of the {@link ClassifierBuilder} 017 * @return classifier builder. 018 */ 019 ClassifierBuilder newClassifierBuilder(); 020 021}