Package co.kuali.coeus.s3.conv
Class ConversionServiceImpl
- java.lang.Object
-
- co.kuali.coeus.s3.conv.ConversionServiceImpl
-
- All Implemented Interfaces:
ConversionService
public class ConversionServiceImpl extends Object implements ConversionService
-
-
Constructor Summary
Constructors Constructor Description ConversionServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete 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.intgetMaxSkip()StringgetPassword()co.kuali.coeus.s3.api.S3FileServicegetS3FileService()StringgetUrl()StringgetUser()voidsetMaxSkip(int maxSkip)voidsetPassword(String password)voidsetS3FileService(co.kuali.coeus.s3.api.S3FileService s3FileService)voidsetUrl(String url)voidsetUser(String user)
-
-
-
Method Detail
-
convert
public void convert(ConversionInfo info)
Description copied from interface:ConversionServiceMoves 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- Specified by:
convertin interfaceConversionService- 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.
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getUser
public String getUser()
-
setUser
public void setUser(String user)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
getS3FileService
public co.kuali.coeus.s3.api.S3FileService getS3FileService()
-
setS3FileService
public void setS3FileService(co.kuali.coeus.s3.api.S3FileService s3FileService)
-
getMaxSkip
public int getMaxSkip()
-
setMaxSkip
public void setMaxSkip(int maxSkip)
-
-