Class SupportedSourceAndTarget
- java.lang.Object
-
- org.alfresco.transform.client.model.config.SupportedSourceAndTarget
-
public class SupportedSourceAndTarget extends java.lang.ObjectRepresents a single source and target combination supported by a transformer. File extensions are used to keep the json human readable. Each par also has an optional maximum size for the source content.
-
-
Constructor Summary
Constructors Constructor Description SupportedSourceAndTarget()SupportedSourceAndTarget(java.lang.String sourceExt, java.lang.String targetExt, long maxSourceSizeBytes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetMaxSourceSizeBytes()java.lang.StringgetSourceExt()java.lang.StringgetTargetExt()voidsetMaxSourceSizeBytes(long maxSourceSizeBytes)voidsetSourceExt(java.lang.String sourceExt)voidsetTargetExt(java.lang.String targetExt)
-
-
-
Method Detail
-
getSourceExt
public java.lang.String getSourceExt()
-
setSourceExt
public void setSourceExt(java.lang.String sourceExt)
-
getMaxSourceSizeBytes
public long getMaxSourceSizeBytes()
-
setMaxSourceSizeBytes
public void setMaxSourceSizeBytes(long maxSourceSizeBytes)
-
getTargetExt
public java.lang.String getTargetExt()
-
setTargetExt
public void setTargetExt(java.lang.String targetExt)
-
-