use of net.geoprism.registry.ws.GlobalNotificationMessage in project geoprism-registry by terraframe.
the class PublishMasterListJob method execute.
@Override
public void execute(ExecutionContext executionContext) throws Throwable {
NotificationFacade.queue(new GlobalNotificationMessage(MessageType.PUBLISH_JOB_CHANGE, null));
this.getMasterList().publishFrequencyVersions();
}
use of net.geoprism.registry.ws.GlobalNotificationMessage in project geoprism-registry by terraframe.
the class PublishMasterListJob method afterJobExecute.
@Override
public void afterJobExecute(JobHistory history) {
super.afterJobExecute(history);
NotificationFacade.queue(new GlobalNotificationMessage(MessageType.PUBLISH_JOB_CHANGE, null));
}
use of net.geoprism.registry.ws.GlobalNotificationMessage in project geoprism-registry by terraframe.
the class PublishMasterListVersionJob method afterJobExecute.
@Override
public void afterJobExecute(JobHistory history) {
super.afterJobExecute(history);
NotificationFacade.queue(new GlobalNotificationMessage(MessageType.PUBLISH_JOB_CHANGE, null));
}
use of net.geoprism.registry.ws.GlobalNotificationMessage in project geoprism-registry by terraframe.
the class PublishShapefileJob method afterJobExecute.
@Override
public void afterJobExecute(JobHistory history) {
super.afterJobExecute(history);
NotificationFacade.queue(new GlobalNotificationMessage(MessageType.PUBLISH_JOB_CHANGE, null));
}
use of net.geoprism.registry.ws.GlobalNotificationMessage in project geoprism-registry by terraframe.
the class DataExportJob method setStage.
private void setStage(ExportHistory history, ExportStage stage) {
history.appLock();
history.clearStage();
history.addStage(stage);
history.apply();
NotificationFacade.queue(new GlobalNotificationMessage(MessageType.DATA_EXPORT_JOB_CHANGE, null));
}
Aggregations