Skip to content
Snippets Groups Projects
Commit fe22735b authored by tpylak's avatar tpylak
Browse files

LMS-2502 minor: fix javadoc

SVN: 22850
parent 4cc4c52f
No related branches found
No related tags found
No related merge requests found
...@@ -53,9 +53,6 @@ import ch.systemsx.cisd.openbis.dss.etl.dto.api.v1.transformations.ConvertToolIm ...@@ -53,9 +53,6 @@ import ch.systemsx.cisd.openbis.dss.etl.dto.api.v1.transformations.ConvertToolIm
/** /**
* An {@link IStreamingImageTransformer} using the convert command line tool for transformations. * An {@link IStreamingImageTransformer} using the convert command line tool for transformations.
* <p>
* Warning: The serialized version of this class can be stored in the database for each image.
* Moving this class to a different package would make all the saved transformations invalid.
* *
* @author Kaloyan Enimanev * @author Kaloyan Enimanev
*/ */
......
...@@ -21,6 +21,10 @@ import ch.systemsx.cisd.base.image.IStreamingImageTransformerFactory; ...@@ -21,6 +21,10 @@ import ch.systemsx.cisd.base.image.IStreamingImageTransformerFactory;
/** /**
* A {@link IStreamingImageTransformerFactory} that constructs {@link ConvertToolImageTransformer} * A {@link IStreamingImageTransformerFactory} that constructs {@link ConvertToolImageTransformer}
* instances. * instances.
* <p>
* Warning: The serialized version of this class can be stored in the database for each image.
* Moving this class to a different package or changing it in a backward incompatible way would make
* all the saved transformations invalid.
* *
* @author Kaloyan Enimanev * @author Kaloyan Enimanev
*/ */
...@@ -42,15 +46,14 @@ public class ConvertToolImageTransformerFactory implements IStreamingImageTransf ...@@ -42,15 +46,14 @@ public class ConvertToolImageTransformerFactory implements IStreamingImageTransf
} }
/** /**
* Constructs the factory with {@link ToolChoice#PREFER_IMAGEMAGICK}. * Constructs the factory with {@link ToolChoice#PREFER_IMAGEMAGICK}.
*/ */
public ConvertToolImageTransformerFactory(String convertCliArguments) public ConvertToolImageTransformerFactory(String convertCliArguments)
{ {
this(convertCliArguments, ToolChoice.ENFORCE_IMAGEMAGICK); this(convertCliArguments, ToolChoice.ENFORCE_IMAGEMAGICK);
} }
public ConvertToolImageTransformerFactory(String convertCliArguments, public ConvertToolImageTransformerFactory(String convertCliArguments, ToolChoice choice)
ToolChoice choice)
{ {
this.convertCliArguments = convertCliArguments; this.convertCliArguments = convertCliArguments;
this.choice = choice; this.choice = choice;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment