Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.ikasan.dashboard.ui.scheduler.component.FileEventJobDialog Maven / Gradle / Ivy
package org.ikasan.dashboard.ui.scheduler.component;
import com.vaadin.flow.component.ClickEvent;
import com.vaadin.flow.component.ComponentEventListener;
import com.vaadin.flow.component.ItemLabelGenerator;
import com.vaadin.flow.component.UI;
import com.vaadin.flow.component.button.Button;
import com.vaadin.flow.component.combobox.ComboBox;
import com.vaadin.flow.component.confirmdialog.ConfirmDialog;
import com.vaadin.flow.component.formlayout.FormLayout;
import com.vaadin.flow.component.html.H3;
import com.vaadin.flow.component.icon.Icon;
import com.vaadin.flow.component.icon.VaadinIcon;
import com.vaadin.flow.component.orderedlayout.FlexComponent;
import com.vaadin.flow.component.orderedlayout.HorizontalLayout;
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
import com.vaadin.flow.component.textfield.TextArea;
import com.vaadin.flow.component.textfield.TextField;
import com.vaadin.flow.data.binder.Binder;
import com.vaadin.flow.data.binder.ValidationException;
import com.vaadin.flow.data.converter.StringToIntegerConverter;
import org.ikasan.dashboard.ui.general.component.AbstractCloseableResizableDialog;
import org.ikasan.dashboard.ui.general.component.NotificationHelper;
import org.ikasan.dashboard.ui.scheduler.listener.JobSynchronisationRequiredListener;
import org.ikasan.dashboard.ui.scheduler.listener.SchedulerJobSelectedListener;
import org.ikasan.dashboard.ui.util.*;
import org.ikasan.scheduled.event.service.ScheduledProcessManagementService;
import org.ikasan.scheduled.job.model.SolrFileEventDrivenJobImpl;
import org.ikasan.scheduled.job.model.SolrFileEventDrivenJobRecordImpl;
import org.ikasan.security.service.authentication.IkasanAuthentication;
import org.ikasan.spec.metadata.ModuleMetaData;
import org.ikasan.spec.module.client.ConfigurationService;
import org.ikasan.spec.module.client.MetaDataService;
import org.ikasan.spec.module.client.ModuleControlService;
import org.ikasan.spec.scheduled.job.model.FileEventDrivenJob;
import org.ikasan.spec.scheduled.job.model.GlobalEventJob;
import org.ikasan.spec.scheduled.job.model.SchedulerJobRecord;
import org.ikasan.spec.scheduled.job.service.SchedulerJobService;
import org.quartz.CronExpression;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.security.core.context.SecurityContextHolder;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
public class FileEventJobDialog extends AbstractCloseableResizableDialog {
Logger logger = LoggerFactory.getLogger(FileEventJobDialog.class);
private ComboBox agentCb;
// Fields to capture schedule job properties.
private TextField jobNameTf;
private TextField jobNameAliasTf;
private TextArea jobDescriptionTa;
private TextField filenameTf;
private TextField filePathTf;
private TextField archiveDirectoryTf;
private TextField cronExpressionTf;
private TextField slaCronExpressionTf;
private ComboBox timezoneCb;
private TextField minFileAgeSecondsTf;
private Button saveButton;
private Button cancelButton;
private ScheduledProcessManagementService scheduledProcessManagementService;
private ConfigurationService configurationRestService;
private ModuleMetaData agent;
private ModuleControlService moduleControlRestService;
private MetaDataService metaDataRestService;
private FileEventDrivenJob fileEventDrivenJob;
private SchedulerJobRecord schedulerJobRecord;
private Binder formBinder;
private EditMode editMode = EditMode.NEW;
private FormLayout formLayout;
private boolean enabled = true;
private boolean showDisplayName;
private SystemEventLogger systemEventLogger;
private SchedulerJobService schedulerJobService;
private List schedulerJobSelectedListeners = new ArrayList<>();
private List jobSynchronisationRequiredListeners = new ArrayList<>();
/**
* Constructor
*
* @param agent
* @param scheduledProcessManagementService
* @param configurationRestService
* @param moduleControlRestService
* @param metaDataRestService
* @param systemEventLogger
*/
public FileEventJobDialog(ModuleMetaData agent, ScheduledProcessManagementService scheduledProcessManagementService,
ConfigurationService configurationRestService, ModuleControlService moduleControlRestService,
MetaDataService metaDataRestService, SystemEventLogger systemEventLogger,
SchedulerJobService schedulerJobService, boolean showDisplayName) {
super.showResize(false);
super.title.setText(getTranslation("label.file-watcher-job", UI.getCurrent().getLocale()));
this.agent = agent;
this.scheduledProcessManagementService = scheduledProcessManagementService;
this.configurationRestService = configurationRestService;
this.moduleControlRestService = moduleControlRestService;
this.metaDataRestService = metaDataRestService;
this.systemEventLogger = systemEventLogger;
this.schedulerJobService = schedulerJobService;
this.showDisplayName = showDisplayName;
this.fileEventDrivenJob = new SolrFileEventDrivenJobImpl();
this.formBinder
= new Binder<>(FileEventDrivenJob.class);
this.setHeight("800px");
this.setWidth("95vw");
saveButton = new Button(getTranslation("button.save", UI.getCurrent().getLocale()));
saveButton.setId("scheduledJobSaveButton");
saveButton.addClickListener((ComponentEventListener>) buttonClickEvent -> {
IkasanAuthentication authentication = (IkasanAuthentication) SecurityContextHolder.getContext().getAuthentication();
if(!this.performFormValidation(this.fileEventDrivenJob)) {
NotificationHelper.showErrorNotification(getTranslation("error.scheduled-job-configuration", UI.getCurrent().getLocale()));
return;
}
try {
createOrUpdateScheduledJob(this.fileEventDrivenJob, authentication);
}
catch (Exception e) {
e.printStackTrace();
NotificationHelper.showErrorNotification(getTranslation("error.scheduled-job-creation", UI.getCurrent().getLocale()));
return;
}
if (this.editMode == EditMode.NEW) {
String action = String.format("New scheduled job created [%s].", this.fileEventDrivenJob);
this.systemEventLogger.logEvent(SystemEventConstants.NEW_SCHEDULED_JOB_CREATED, action, authentication.getName());
}
else if (this.editMode == EditMode.EDIT) {
String action = String.format("Scheduled job edited. \nBefore [%s]\nAfter [%s].", this.schedulerJobRecord.getJob(),
this.fileEventDrivenJob);
this.systemEventLogger.logEvent(SystemEventConstants.SCHEDULED_JOB_EDIT, action, authentication.getName());
}
this.schedulerJobSelectedListeners.forEach(listener -> listener.jobSelected(this.fileEventDrivenJob));
this.jobSynchronisationRequiredListeners.forEach(listener -> listener.jobSynchronisationRequired());
NotificationHelper.showErrorNotification(getTranslation("notification.scheduler-job-saved"
, UI.getCurrent().getLocale()));
});
ComponentSecurityVisibility.applySecurity(saveButton, SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE);
cancelButton = new Button(getTranslation("button.close", UI.getCurrent().getLocale()));
cancelButton.addClickListener((ComponentEventListener>) buttonClickEvent -> this.close());
HorizontalLayout buttonLayout = new HorizontalLayout();
buttonLayout.setMargin(true);
buttonLayout.setSpacing(true);
buttonLayout.add(saveButton, cancelButton);
buttonLayout.getStyle().set("padding-bottom", "40px");
Icon helpIcon = new Icon(VaadinIcon.QUESTION_CIRCLE);
Button helpButton = new Button("Help", helpIcon);
helpButton.setId("helpButton");
helpButton.setIconAfterText(false);
helpButton.addClickListener(iconClickEvent -> {
FileWatcherHelpDialog helpDialog = new FileWatcherHelpDialog();
helpDialog.open();
});
VerticalLayout layout = new VerticalLayout();
layout.add(helpButton);
layout.setHorizontalComponentAlignment(FlexComponent.Alignment.END, helpButton);
layout.setSizeFull();
layout.add(this.createConfigurationForm(), buttonLayout);
layout.setHorizontalComponentAlignment(FlexComponent.Alignment.CENTER, buttonLayout);
layout.getStyle().set("padding-bottom", "40px");
super.content.add(layout);
}
/**
* Initialise the form.
*
* @return
*/
private FormLayout createConfigurationForm() {
formLayout = new FormLayout();
// Fields to capture schedule job properties.
H3 scheduleDetailsLabel = new H3(getTranslation("label.file-watcher-job", UI.getCurrent().getLocale()));
formLayout.add(scheduleDetailsLabel, 2);
this.jobNameTf = new TextField(getTranslation("label.job-name", UI.getCurrent().getLocale()));
this.jobNameTf.setId("jobNameTf");
this.jobNameTf.setRequired(true);
this.jobNameTf.setEnabled(this.editMode == EditMode.NEW &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
formBinder.forField(this.jobNameTf)
.withValidator(jobName -> !jobName.isEmpty(), getTranslation("error.missing-job-name", UI.getCurrent().getLocale()))
.bind(FileEventDrivenJob::getJobName, FileEventDrivenJob::setJobName);
formLayout.add(jobNameTf);
this.agentCb = new ComboBox<>(getTranslation("label.agent", UI.getCurrent().getLocale()));
this.agentCb.setId("agentCb");
this.agentCb.setRequired(true);
this.agentCb.setClearButtonVisible(true);
this.agentCb.setItems(this.scheduledProcessManagementService.getAllAgentNames());
if(agent != null) {
this.agentCb.setValue(agent.getName());
this.agentCb.setEnabled(false);
}
formBinder.forField(this.agentCb)
.withValidator(agentValue -> !agentValue.isEmpty(), getTranslation("error.missing-agent", UI.getCurrent().getLocale()))
.bind(FileEventDrivenJob::getAgentName, FileEventDrivenJob::setAgentName);
formLayout.add(agentCb);
this.jobDescriptionTa = new TextArea(getTranslation("label.job-description", UI.getCurrent().getLocale()));
this.jobDescriptionTa.setRequired(true);
this.jobDescriptionTa.setId("jobDescriptionTa");
jobDescriptionTa.getStyle().set("minHeight", "100px");
formBinder.forField(this.jobDescriptionTa)
.withValidator(jobDescription -> !jobDescription.isEmpty(), getTranslation("error.missing-job-description", UI.getCurrent().getLocale()))
.bind(FileEventDrivenJob::getJobDescription, FileEventDrivenJob::setJobDescription);
if(this.showDisplayName) {
this.jobNameAliasTf = new TextField(getTranslation("label.job-name-alias", UI.getCurrent().getLocale()));
this.jobNameAliasTf.setId("jobNameAliasTf");
this.jobNameAliasTf.setRequired(false);
this.jobNameAliasTf.setEnabled(this.editMode == EditMode.NEW &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
formBinder.forField(this.jobNameAliasTf)
.bind(FileEventDrivenJob::getDisplayName, FileEventDrivenJob::setDisplayName);
formLayout.add(jobNameAliasTf, jobDescriptionTa);
}
else {
formLayout.add(jobDescriptionTa, 2);
}
this.filenameTf = new TextField(getTranslation("label.file-name", UI.getCurrent().getLocale()));
this.filenameTf.setRequired(true);
this.filenameTf.setId("filePathTf");
this.filenameTf.setErrorMessage(getTranslation("error.missing-file-name", UI.getCurrent().getLocale()));
formLayout.add(filenameTf, 2);
this.filePathTf = new TextField(getTranslation("label.file-path", UI.getCurrent().getLocale()));
this.filePathTf.setId("filePathTf");
formBinder.forField(this.filePathTf)
.bind(FileEventDrivenJob::getFilePath, FileEventDrivenJob::setFilePath);
formLayout.add(filePathTf, 2);
archiveDirectoryTf = new TextField(getTranslation("label.archive-directory", UI.getCurrent().getLocale()));
this.archiveDirectoryTf.setId("archiveDirectoryTf");
formBinder.forField(this.archiveDirectoryTf)
.bind(FileEventDrivenJob::getMoveDirectory, FileEventDrivenJob::setMoveDirectory);
formLayout.add(this.archiveDirectoryTf, 2);
Icon builderIconCronExpression = IconDecorator.decorate(VaadinIcon.BUILDING_O.create(), getTranslation("tooltip.build-cron-expression", UI.getCurrent().getLocale()), "14pt", "rgba(241, 90, 35, 1.0)");
builderIconCronExpression.addClickListener(event -> {
CronBuilderDialog dialog = new CronBuilderDialog();
dialog.init(this.cronExpressionTf.getValue());
dialog.open();
dialog.addOpenedChangeListener(openedChangeEvent -> {
if(!openedChangeEvent.isOpened() && dialog.isSaveClose()) {
this.cronExpressionTf.setValue(dialog.getCronExpression());
}
});
});
ComponentSecurityVisibility.applySecurity(builderIconCronExpression, SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE);
this.cronExpressionTf = new TextField(getTranslation("label.file-polling-cron-expression", UI.getCurrent().getLocale()));
this.cronExpressionTf.setRequired(true);
this.cronExpressionTf.setSuffixComponent(builderIconCronExpression);
this.cronExpressionTf.setId("cronExpressionTf");
formBinder.forField(this.cronExpressionTf)
.withValidator(value -> !value.isEmpty(), getTranslation("error.missing-cron-expression", UI.getCurrent().getLocale()))
.withValidator(value -> CronExpression.isValidExpression(value), getTranslation("error.invalid-cron-expression", UI.getCurrent().getLocale()))
.bind(FileEventDrivenJob::getCronExpression, FileEventDrivenJob::setCronExpression);
formLayout.add(cronExpressionTf);
Icon builderIconSlaCronExpression = IconDecorator.decorate(VaadinIcon.BUILDING_O.create(), getTranslation("tooltip.build-cron-expression", UI.getCurrent().getLocale()), "14pt", "rgba(241, 90, 35, 1.0)");
builderIconSlaCronExpression.addClickListener(event -> {
CronBuilderDialog dialog = new CronBuilderDialog();
dialog.init(this.slaCronExpressionTf.getValue());
dialog.open();
dialog.addOpenedChangeListener(openedChangeEvent -> {
if(!openedChangeEvent.isOpened() && dialog.isSaveClose()) {
this.slaCronExpressionTf.setValue(dialog.getCronExpression());
}
});
});
ComponentSecurityVisibility.applySecurity(builderIconSlaCronExpression, SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE);
this.slaCronExpressionTf = new TextField(getTranslation("label.sla-interval-cron-expression", UI.getCurrent().getLocale()));
this.slaCronExpressionTf.setRequired(false);
this.slaCronExpressionTf.setSuffixComponent(builderIconSlaCronExpression);
this.slaCronExpressionTf.setId("slaCronExpressionTf");
formBinder.forField(this.slaCronExpressionTf)
.withValidator(value -> CronExpression.isValidExpression(value), getTranslation("error.invalid-cron-expression", UI.getCurrent().getLocale()))
.bind(FileEventDrivenJob::getSlaCronExpression, FileEventDrivenJob::setSlaCronExpression);
formLayout.add(slaCronExpressionTf);
this.minFileAgeSecondsTf = new TextField(getTranslation("label.min-file-age-seconds", UI.getCurrent().getLocale()));
this.minFileAgeSecondsTf.setRequired(true);
this.minFileAgeSecondsTf.setId("minFileAgeSecondsTf");
formBinder.forField(this.minFileAgeSecondsTf)
.withConverter(new StringToIntegerConverter(getTranslation("error.min-file-age-must-be-a-number", UI.getCurrent().getLocale())))
.bind(FileEventDrivenJob::getMinFileAgeSeconds, FileEventDrivenJob::setMinFileAgeSeconds);
formLayout.add(minFileAgeSecondsTf);
this.timezoneCb = new ComboBox<>(getTranslation("label.timezone", UI.getCurrent().getLocale()));
ComboBox.ItemFilter filter = (element, filterString) ->
element.zoneId.toLowerCase().contains(filterString.toLowerCase());
this.timezoneCb.setId("timezoneCb");
this.timezoneCb.setItems(filter, DateTimeUtil.getAllZoneIdsAndItsOffSet());
this.timezoneCb.setItemLabelGenerator((ItemLabelGenerator) s -> String.format("%35s (UTC%s) %n", s.zoneId, s.offset).trim());
this.timezoneCb.setClearButtonVisible(true);
this.timezoneCb.setPlaceholder(getTranslation("label.choose-a-timezone", UI.getCurrent().getLocale()));
this.timezoneCb.setErrorMessage(getTranslation("error.timezone-required", UI.getCurrent().getLocale()));
formLayout.add(timezoneCb);
return formLayout;
}
/**
* Perform validation of the form.
*
* @param solrFileEventDrivenJob
* @return
*/
private boolean performFormValidation(FileEventDrivenJob solrFileEventDrivenJob) {
try {
AtomicBoolean isValid = new AtomicBoolean(true);
if(this.timezoneCb.getValue() != null) {
solrFileEventDrivenJob.setTimeZone(this.timezoneCb.getValue().zoneId);
}
if(this.filenameTf.getValue() != null && !this.filenameTf.getValue().isEmpty()) {
solrFileEventDrivenJob.setFilenames(List.of(this.filenameTf.getValue()));
this.filenameTf.setInvalid(false);
}
else {
this.filenameTf.setInvalid(true);
isValid.set(false);
}
formBinder.writeBean(solrFileEventDrivenJob);
if(!isValid.get()){
return false;
}
}
catch (ValidationException e) {
return false;
}
return true;
}
/**
* This method interacts with with agent in order to create a new scheduler agent flow or update an existing flow and associated job.
*
* @param fileEventDrivenJob
*/
public void createOrUpdateScheduledJob(FileEventDrivenJob fileEventDrivenJob, IkasanAuthentication authentication) {
fileEventDrivenJob.setIdentifier(fileEventDrivenJob.getAgentName()+"-"+fileEventDrivenJob.getJobName());
SolrFileEventDrivenJobRecordImpl solrFileEventDrivenJobRecord = new SolrFileEventDrivenJobRecordImpl();
solrFileEventDrivenJobRecord.setAgentName(fileEventDrivenJob.getAgentName());
solrFileEventDrivenJobRecord.setJobName(fileEventDrivenJob.getJobName());
solrFileEventDrivenJobRecord.setContextName(fileEventDrivenJob.getContextName());
solrFileEventDrivenJobRecord.setModifiedTimestamp(System.currentTimeMillis());
solrFileEventDrivenJobRecord.setFileEventDrivenJob(fileEventDrivenJob);
solrFileEventDrivenJobRecord.setModifiedBy(authentication.getName());
if(this.schedulerJobRecord != null) {
solrFileEventDrivenJobRecord.setTimestamp(this.schedulerJobRecord.getTimestamp());
}
else {
solrFileEventDrivenJobRecord.setTimestamp(System.currentTimeMillis());
}
this.schedulerJobService.saveFileEventDrivenJobRecord(solrFileEventDrivenJobRecord);
}
/**
* Helper method to set controls on the form elements if the form is read only
* or editable.
*
* @param enabled
*/
public void setEnabled(boolean enabled) {
this.enabled = enabled;
this.timezoneCb.setEnabled(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.jobNameTf.setEnabled(this.editMode == EditMode.NEW &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.jobDescriptionTa.setEnabled(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.cronExpressionTf.setEnabled(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.timezoneCb.setEnabled(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.filenameTf.setEnabled(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.filePathTf.setEnabled(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.archiveDirectoryTf.setEnabled(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.minFileAgeSecondsTf.setEnabled(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.saveButton.setVisible(enabled &&
ComponentSecurityVisibility.hasAuthorisation(SecurityConstants.ALL_AUTHORITY,
SecurityConstants.SCHEDULER_WRITE, SecurityConstants.SCHEDULER_ADMIN,
SecurityConstants.SCHEDULER_ALL_ADMIN, SecurityConstants.SCHEDULER_ALL_WRITE));
this.cancelButton.setVisible(enabled);
}
/**
* Set the underlying pojo for the form along with the edit mode.
*
* @param fileEventDrivenJob
* @param editMode
*/
public void setJob(FileEventDrivenJob fileEventDrivenJob, EditMode editMode) {
this.enabled = editMode == EditMode.NEW || editMode == EditMode.EDIT ? true : false;
this.fileEventDrivenJob = fileEventDrivenJob;
this.formBinder.readBean(this.fileEventDrivenJob);
// because file names are a collection we need to manually set
if(this.fileEventDrivenJob != null &&
this.fileEventDrivenJob.getFilenames() != null &&
!this.fileEventDrivenJob.getFilenames().isEmpty()) {
this.filenameTf.setValue(this.fileEventDrivenJob.getFilenames().get(0));
}
this.timezoneCb.setValue(DateTimeUtil.getTimezonePairForZoneId(fileEventDrivenJob.getTimeZone()));
this.editMode = editMode;
// make sure all value are bound before calling set enabled
this.setEnabled(this.enabled);
}
public void setJob(SchedulerJobRecord internalEventDrivenJobRecord, EditMode editMode) {
this.schedulerJobRecord = internalEventDrivenJobRecord;
this.setJob((FileEventDrivenJob) this.schedulerJobService.findById(internalEventDrivenJobRecord.getId()).getJob(), editMode);
}
public void addSchedulerJobSelectedListener(SchedulerJobSelectedListener listener) {
this.schedulerJobSelectedListeners.add(listener);
}
public void addJobSynchronisationRequiredListener(JobSynchronisationRequiredListener listener) {
this.jobSynchronisationRequiredListeners.add(listener);
}
}