Package co.kuali.coeus.s3.conv
Interface ConversionService
-
- All Known Implementing Classes:
ConversionServiceImpl
public interface ConversionService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconvert(ConversionInfo info)Moves binary data from a table to S3 while adding an S3_ID column to the target table and removing the binary data from the target table.
-
-
-
Method Detail
-
convert
void convert(ConversionInfo info)
Moves binary data from a table to S3 while adding an S3_ID column to the target table and removing the binary data from the target table. As each record is processed, the db transaction will be committed- Parameters:
info- the information related to the source table to be converted. SeeConversionInfofor more information about which fields are required or optional. Cannot be null.- Throws:
IllegalArgumentException- if any of the required fields on the info are not valid or the info object is null
-
-