Package org.jdesktop.wonderland.runner

Examples of org.jdesktop.wonderland.runner.BaseRemoteRunner


        if (!(r instanceof BaseRemoteRunner)) {
            ResponseBuilder rb = Response.status(Status.NOT_ACCEPTABLE);
            return rb.entity("Only BaseRemoteRunners are valid for setting status").type("text/plain").build();
        }

        BaseRemoteRunner brr = (BaseRemoteRunner) r;
        brr.setRunnerInfo(runnerInfo);

        CheckRunnersTask crt = (CheckRunnersTask) context.getAttribute(TASK_ATTR);
        crt.statusUpdate(brr);
       
        return Response.ok().build();
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.runner.BaseRemoteRunner

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.