Examples of FindEntitiesAction


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
Copyright © 2018 www.massapi.com. 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.