congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
PropertySettingJobFactory.setBeanProps
Code IndexAdd Tabnine to your IDE (free)

How to use
setBeanProps
method
in
org.quartz.simpl.PropertySettingJobFactory

Best Java code snippets using org.quartz.simpl.PropertySettingJobFactory.setBeanProps (Showing top 4 results out of 315)

origin: quartz-scheduler/quartz

@Override
public Job newJob(TriggerFiredBundle bundle, Scheduler scheduler) throws SchedulerException {
  Job job = super.newJob(bundle, scheduler);
  
  JobDataMap jobDataMap = new JobDataMap();
  jobDataMap.putAll(scheduler.getContext());
  jobDataMap.putAll(bundle.getJobDetail().getJobDataMap());
  jobDataMap.putAll(bundle.getTrigger().getJobDataMap());
  setBeanProps(job, jobDataMap);
  
  return job;
}

origin: quartz-scheduler/quartz

@Override
public Job newJob(TriggerFiredBundle bundle, Scheduler scheduler) throws SchedulerException {
  Job job = super.newJob(bundle, scheduler);
  
  JobDataMap jobDataMap = new JobDataMap();
  jobDataMap.putAll(scheduler.getContext());
  jobDataMap.putAll(bundle.getJobDetail().getJobDataMap());
  jobDataMap.putAll(bundle.getTrigger().getJobDataMap());
  setBeanProps(job, jobDataMap);
  
  return job;
}

origin: com.opensymphony.quartz/com.springsource.org.quartz

public Job newJob(TriggerFiredBundle bundle) throws SchedulerException {
  Job job = super.newJob(bundle);
  
  JobDataMap jobDataMap = new JobDataMap();
  jobDataMap.putAll(bundle.getJobDetail().getJobDataMap());
  jobDataMap.putAll(bundle.getTrigger().getJobDataMap());
  setBeanProps(job, jobDataMap);
  
  return job;
}

origin: quartz/quartz-all

public Job newJob(TriggerFiredBundle bundle) throws SchedulerException {
  Job job = super.newJob(bundle);
  
  JobDataMap jobDataMap = new JobDataMap();
  jobDataMap.putAll(bundle.getJobDetail().getJobDataMap());
  jobDataMap.putAll(bundle.getTrigger().getJobDataMap());
  setBeanProps(job, jobDataMap);
  
  return job;
}

org.quartz.simplPropertySettingJobFactorysetBeanProps

Popular methods of PropertySettingJobFactory

  • getLog
  • getSetMethod
  • handleError
  • isThrowIfPropertyNotFound
    Whether the JobInstantiation should fail and throw and exception if a key (name) and value (type) fo
  • isWarnIfPropertyNotFound
    Whether a warning should be logged if a key (name) and value (type) found in the JobDataMap does not

Popular in Java

  • Making http post requests using okhttp
  • getApplicationContext (Context)
  • getSupportFragmentManager (FragmentActivity)
  • getContentResolver (Context)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now