Package org.libreplan.business.common.entities

Examples of org.libreplan.business.common.entities.JobSchedulerConfiguration


     * @param jobSchedulerConfiguration
     *            the {@link JobSchedulerConfiguration}
     */
    private boolean existsOtherJobByGroupAndName(
            JobSchedulerConfiguration jobSchedulerConfiguration) {
        JobSchedulerConfiguration found = findByJobGroupAndJobName(
                jobSchedulerConfiguration.getJobGroup(),
                jobSchedulerConfiguration.getJobName());
        return found != null && found != jobSchedulerConfiguration;
    }
View Full Code Here


    public RowRenderer getJobSchedulingRenderer() {
        return new RowRenderer() {

            @Override
            public void render(Row row, Object data) {
                final JobSchedulerConfiguration jobSchedulerConfiguration = (JobSchedulerConfiguration) data;
                row.setValue(data);

                Util.appendLabel(row, jobSchedulerConfiguration.getJobGroup());
                Util.appendLabel(row, jobSchedulerConfiguration.getJobName());
                Util.appendLabel(row,
                        jobSchedulerConfiguration.getCronExpression());
                Util.appendLabel(row,
                        getNextFireTime(jobSchedulerConfiguration));
                Hbox hbox = new Hbox();
                hbox.appendChild(createManualButton(new EventListener() {
View Full Code Here

TOP

Related Classes of org.libreplan.business.common.entities.JobSchedulerConfiguration

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.