congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
PropertySettingJobFactory.isWarnIfPropertyNotFound
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: quartz-scheduler/quartz

private void handleError(String message, Exception e) throws SchedulerException {
  if (isThrowIfPropertyNotFound()) {
    throw new SchedulerException(message, e);
  }
  
  if (isWarnIfPropertyNotFound()) {
    if (e == null) {
      getLog().warn(message);
    } else {
      getLog().warn(message, e);
    }
  }
}

origin: quartz-scheduler/quartz

private void handleError(String message, Exception e) throws SchedulerException {
  if (isThrowIfPropertyNotFound()) {
    throw new SchedulerException(message, e);
  }
  
  if (isWarnIfPropertyNotFound()) {
    if (e == null) {
      getLog().warn(message);
    } else {
      getLog().warn(message, e);
    }
  }
}

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

private void handleError(String message, Exception e) throws SchedulerException {
  if (isThrowIfPropertyNotFound()) {
    throw new SchedulerException(message, e);
  }
  
  if (isWarnIfPropertyNotFound()) {
    if (e == null) {
      getLog().warn(message);
    } else {
      getLog().warn(message, e);
    }
  }
}

origin: quartz/quartz-all

private void handleError(String message, Exception e) throws SchedulerException {
  if (isThrowIfPropertyNotFound()) {
    throw new SchedulerException(message, e);
  }
  
  if (isWarnIfPropertyNotFound()) {
    if (e == null) {
      getLog().warn(message);
    } else {
      getLog().warn(message, e);
    }
  }
}

org.quartz.simplPropertySettingJobFactoryisWarnIfPropertyNotFound

Javadoc

Whether a warning should be logged if a key (name) and value (type) found in the JobDataMap does not correspond to a proptery setter on the Job class.

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
  • setBeanProps

Popular in Java

  • Finding current android device location
  • scheduleAtFixedRate (Timer)
  • setContentView (Activity)
  • onRequestPermissionsResult (Fragment)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • JCheckBox (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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