ATS-175 : JavaDoc

This commit is contained in:
Cezar.Leahu
2018-10-30 18:17:54 +02:00
parent 7200933923
commit 77326ad759
4 changed files with 12 additions and 0 deletions

View File

@@ -7,6 +7,8 @@ import org.alfresco.util.exec.RuntimeExec;
import org.springframework.stereotype.Component;
/**
* CommandExecutor implementation for running PDF Renderer transformations. It runs the
* transformation logic as a separate Shell process.
*/
@Component
public class PdfRendererCommandExecutor extends AbstractCommandExecutor

View File

@@ -7,6 +7,8 @@ import org.alfresco.util.exec.RuntimeExec;
import org.springframework.stereotype.Component;
/**
* CommandExecutor implementation for running ImageMagick transformations. It runs the
* transformation logic as a separate Shell process.
*/
@Component
public class ImageMagickCommandExecutor extends AbstractCommandExecutor

View File

@@ -21,6 +21,10 @@ import org.springframework.stereotype.Component;
import com.sun.star.task.ErrorCodeIOException;
/**
* JavaExecutor implementation for running LibreOffice transformations. It loads the
* transformation logic in the same JVM (check the {@link JodConverter} implementation).
*/
@Component
public class LibreOfficeJavaExecutor implements JavaExecutor
{

View File

@@ -15,6 +15,10 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.xml.sax.SAXException;
/**
* JavaExecutor implementation for running TIKA transformations. It loads the
* transformation logic in the same JVM (check {@link Tika}).
*/
@Component
public class TikaJavaExecutor implements JavaExecutor
{