Package org.paquitosoft.lml.model.action

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


     * @param detailLevel
     * @return entity read
     * @throws InternalErrorException (DataNotFoundException, ReflectionException)
     */
    public <T> T read(Class<T> entityType, Object entityId, Integer detailLevel) throws InternalErrorException {
        IAction action = new ReadEntityAction(entityType, entityId, detailLevel);
        return (T) new ActionProcessor(action).processAction();
    }
View Full Code Here

TOP

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

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.