1
2
3
4
5 package nl.dedicon.pipeline.braille.calabash.impl;
6
7 public class EmptyBackCoverStep_Provider_SPI
8 extends nl.dedicon.pipeline.braille.calabash.impl.EmptyBackCoverStep.Provider
9 implements org.daisy.common.spi.ServiceWithProperties
10 {
11
12 private static final org.slf4j.Logger spi_log = org.slf4j.LoggerFactory.getLogger(EmptyBackCoverStep_Provider_SPI.class);
13
14 private final java.util.Map spi_props;
15
16 public EmptyBackCoverStep_Provider_SPI() {
17 super();
18 spi_log.trace("Creating EmptyBackCoverStep.Provider");
19 spi_props = new java.util.HashMap();
20 spi_props.put("component.name", "dedicon:empty-back-cover");
21 spi_props.put("type", "{http://www.dedicon.nl}empty-back-cover");
22 }
23
24 public java.util.Map spi_getProperties() {
25 return spi_props;
26 }
27 }