I'm trying to get objects from database using hibernate class. but it cannot find mehod ".list()" it says "Javadoc not found". I don't know how to use this method.
List users= session.createQuery("FROM User WHERE Email=:email AND Password=:password")
.setParameter("password", password)
.setParameter("email", email).list();