Package lv.odylab.evemanage.client.rpc.action

Examples of lv.odylab.evemanage.client.rpc.action.ActionRunner.execute()


        String ipAddress = getThreadLocalRequest().getRemoteAddr();
        String className = action.getClass().getSimpleName();
        logger.info("User {} (ip: {}) executing action: {}", new Object[]{userNickname, ipAddress, className});

        try {
            return (T) actionRunner.execute(action);
        } catch (Exception e) {
            logger.error("Caught Exception", e);
            throw new RpcException(e.getMessage());
        }
    }
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.