This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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