Package org.glite.jobid

Examples of org.glite.jobid.Jobid


                } catch (URISyntaxException e) {
                    logger.warn("malformed LBAddress (" + userLBAddress + "), using default");
                }
            }

            Jobid lbjob = new Jobid(lb.getHost(), lb.getPort());
            logger.info(job.getId() + " assigned gridJobId " + lbjob.toString());

            /*
             * TODO: remove this code, and assign the grid jobid to this job
             * really
             */
            lbjob = new Jobid(lb.getHost(), lb.getPort(), job.getId());
            logger.info("... but using instead " + lbjob.toString());

            //LBCredentials cred = new LBCredentials(job.getDelegationProxyCertPath(), "/etc/grid-security/certificates");
            //ContextDirect ctxd = new ContextDirect(lb.getHost(), lb.getPort());
            //ctxd.setCredentials(cred);
            //ctxd.setJobid(lbjob);
View Full Code Here


        }

        ctx.setSource(new Sources(Sources.CREAM_INTERFACE));
        ctx.setUser(cmd.getUserId());

        Jobid jobid;
        if (job.getGridJobId() == null || Job.NOT_AVAILABLE_VALUE.equals(job.getGridJobId())) {
            jobid = new Jobid(defaultLBURI.getHost(), defaultLBURI.getPort(), job.getId());
        } else {
            jobid = new Jobid(job.getGridJobId());
        }

        ctx.setJobid(jobid);

        // logger.debug("insertCommand: id = "+ cmd.getId() + " name = " +
View Full Code Here

        }

        ctx.setSource(new Sources(Sources.CREAM_EXECUTOR));
        ctx.setUser(cmd.getUserId());

        Jobid jobid;
        if (job.getGridJobId() == null || Job.NOT_AVAILABLE_VALUE.equals(job.getGridJobId())) {
            jobid = new Jobid(defaultLBURI.getHost(), defaultLBURI.getPort(), job.getId());
        } else {
            jobid = new Jobid(job.getGridJobId());
        }

        ctx.setJobid(jobid);

        EventCREAMCall event = new EventCREAMCall();
View Full Code Here

        }
       
        ctx.setSource(new Sources(Sources.CREAM_EXECUTOR));
        ctx.setUser(job.getUserId());

        Jobid jobid;
        if (job.getGridJobId() == null || Job.NOT_AVAILABLE_VALUE.equals(job.getGridJobId())) {
            jobid = new Jobid(defaultLBURI.getHost(), defaultLBURI.getPort(), job.getId());
        } else {
            jobid = new Jobid(job.getGridJobId());
        }
       
        ctx.setJobid(jobid);

        EventCREAMStatus event = new EventCREAMStatus();
View Full Code Here

        }
       
        ctx.setSource(new Sources(Sources.CREAM_EXECUTOR));
        ctx.setUser(job.getUserId());

        Jobid jobid;
        if (job.getGridJobId() == null || Job.NOT_AVAILABLE_VALUE.equals(job.getGridJobId())) {
            jobid = new Jobid(defaultLBURI.getHost(), defaultLBURI.getPort(), job.getId());
        } else {
            jobid = new Jobid(job.getGridJobId());
        }
       
        ctx.setJobid(jobid);

        EventCREAMAccepted event = new EventCREAMAccepted();
View Full Code Here

TOP

Related Classes of org.glite.jobid.Jobid

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.