Skip to content
Snippets Groups Projects
Commit 3d49cebc authored by Thorsten Vitt's avatar Thorsten Vitt
Browse files

Refactored PDF generation to its own package

parent 6f77c8a3
No related branches found
No related tags found
No related merge requests found
package info.textgrid.services.aggregator;
package info.textgrid.services.aggregator.pdf;
import info.textgrid._import.RewriteMethod;
import info.textgrid.services.aggregator.ITextGridRep;
import info.textgrid.services.aggregator.RESTUtils;
import info.textgrid.services.aggregator.ITextGridRep.TGOSupplier;
import info.textgrid.utils.linkrewriter.ConfigurableXMLRewriter;
import info.textgrid.utils.linkrewriter.ImportMapping;
......
......@@ -35,7 +35,7 @@ http://cxf.apache.org/schemas/jaxrs.xsd">
<bean class="info.textgrid.services.aggregator.epub.EPUB" scope="singleton">
<constructor-arg ref="stable-repo"/>
</bean>
<bean class="info.textgrid.services.aggregator.PDF" scope="singleton">
<bean class="info.textgrid.services.aggregator.pdf.PDF" scope="singleton">
<constructor-arg ref="stable-repo"/>
</bean>
</jaxrs:serviceBeans>
......@@ -55,7 +55,7 @@ http://cxf.apache.org/schemas/jaxrs.xsd">
<bean class="info.textgrid.services.aggregator.epub.EPUB" scope="singleton">
<constructor-arg ref="dev-repo" />
</bean>
<bean class="info.textgrid.services.aggregator.PDF" scope="singleton">
<bean class="info.textgrid.services.aggregator.pdf.PDF" scope="singleton">
<constructor-arg ref="dev-repo" />
</bean>
</jaxrs:serviceBeans>
......
package info.textgrid.services.aggregator;
import info.textgrid.services.aggregator.pdf.PDF;
import java.net.URI;
import javax.ws.rs.core.Response;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment