com.lionbridge.content.sdk.validations.LBFileConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liox-content-sdk-java Show documentation
Show all versions of liox-content-sdk-java Show documentation
Client for Lionbridge Ondemand API
package com.lionbridge.content.sdk.validations;
import com.fasterxml.jackson.databind.util.StdConverter;
import com.lionbridge.content.sdk.models.LBFile;
public class LBFileConverter extends StdConverter {
@Override
public LBFile convert(LBFile original) {
original.runValidations();
return original;
}
}