internal.org.springframework.content.jpa.io.GenericBlobResource Maven / Gradle / Ivy
package internal.org.springframework.content.jpa.io;
import org.springframework.content.jpa.io.AbstractBlobResource;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.transaction.PlatformTransactionManager;
public class GenericBlobResource extends AbstractBlobResource {
public GenericBlobResource(Object id, JdbcTemplate template,
PlatformTransactionManager txnMgr) {
super(id, template, txnMgr);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy