org.codehaus.groovy.grails.orm.hibernate.metaclass
Class ListPersistentMethod
java.lang.Object
org.codehaus.groovy.grails.commons.metaclass.AbstractStaticMethodInvocation
org.codehaus.groovy.grails.orm.hibernate.metaclass.AbstractStaticPersistentMethod
org.codehaus.groovy.grails.orm.hibernate.metaclass.ListPersistentMethod
- All Implemented Interfaces:
- StaticMethodInvocation
public class ListPersistentMethod
- extends AbstractStaticPersistentMethod
The "list" persistent static method. This method lists of of the persistent
instances up the maximum specified amount (if any)
eg.
Account.list(); // list all
Account.list(max:10,offset:50,sort:"holder",order:"desc"); // list up to 10, offset by 50, sorted by holder and in descending order
- Author:
- Graeme Rocher
ListPersistentMethod
public ListPersistentMethod(org.hibernate.SessionFactory sessionFactory,
ClassLoader classLoader)
doInvokeInternal
protected Object doInvokeInternal(Class clazz,
String methodName,
Object[] arguments)
- Specified by:
doInvokeInternal
in class AbstractStaticPersistentMethod
Copyright (c) 2005-2006 The Grails project