Examples of CallResponse


Examples of com.betfair.testingservice.v1.to.CallResponse

    }

    @Override
    public CallResponse refreshCache(RequestContext ctx, String name, TimeConstraints timeConstraints)
            throws TestingException {
        CallResponse response = new CallResponse();
        boolean found = false;
        for (CacheFrameworkIntegration framework : cacheFrameworkRegistry.getFrameworks()) {
            if (framework.refreshNamedCache(name)) {
                found = true;
            }
        }

        if (!found) {
            throw new TestingException(ResponseCode.NotFound,
                    TestingExceptionErrorCodeEnum.NOT_FOUND);
        } else {
            response.setResult("OK");
        }
        return response;
    }
View Full Code Here

Examples of com.betfair.testingservice.v1.to.CallResponse

    }

    @Override
    public CallResponse refreshAllCaches(RequestContext ctx, TimeConstraints timeConstraints)
            throws TestingException {
        CallResponse response = new CallResponse();
        boolean done = false;
        for (CacheFrameworkIntegration framework : cacheFrameworkRegistry.getFrameworks()) {
            done = true;
            framework.refreshAllCaches();
        }
        if (done) {
            logger.log(Level.INFO, "Refreshed all caches");
            response.setResult("OK");
            return response;
        }
        logger.log(Level.INFO, "No cache frameworks found");
        throw new TestingException(ResponseCode.InternalError,
                TestingExceptionErrorCodeEnum.GENERIC);
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.