All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.microtweak.jbx4j.descriptor.hibernate.HibernateAttributeLoadChecker Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.microtweak.jbx4j.descriptor.hibernate;

import com.github.microtweak.jbx4j.descriptor.spi.AttributeLoadChecker;

import javax.persistence.Persistence;

public class HibernateAttributeLoadChecker extends AttributeLoadChecker {

    @Override
    public boolean isLoaded(Object entity, String attrName) {
        return Persistence.getPersistenceUtil().isLoaded(entity, attrName);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy