Package org.paquitosoft.lml.model.action

Examples of org.paquitosoft.lml.model.action.FindEntitiesAction


     * @param params
     * @return collection of entities
     * @throws InternalErrorException (DataNotFoundException, ReflectionException)
     */
    public <T> List<T> finder(String query, Class<T> entityType, Integer detailLevel, Object ... params) throws InternalErrorException {
        IAction action = new FindEntitiesAction(query, entityType, detailLevel, params);
        return new ActionProcessor(action).processAction();
    }
View Full Code Here

TOP

Related Classes of org.paquitosoft.lml.model.action.FindEntitiesAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.