Skip to content

Instantly share code, notes, and snippets.

@john-nash-rs
Created July 12, 2018 13:38
Embed
What would you like to do?
import io.dropwizard.hibernate.AbstractDAO;
import org.hibernate.SessionFactory;
import java.util.List;
/**
* Created by harshvardhan on 10/07/18.
*/
public class InfoDao extends AbstractDAO<Info> {
public InfoDao(SessionFactory factory) {
super(factory);
}
public List<Info> findAll() {
return list(namedQuery("com.wordpress.nullpointerexception1.info.findAll"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment