Tabnine Logo
RemoteMBeanScheduler.getAttribute
Code IndexAdd Tabnine to your IDE (free)

How to use
getAttribute
method
in
org.quartz.impl.RemoteMBeanScheduler

Best Java code snippets using org.quartz.impl.RemoteMBeanScheduler.getAttribute (Showing top 20 results out of 315)

origin: quartz-scheduler/quartz

/**
 * <p>
 * Returns the name of the <code>Scheduler</code>.
 * </p>
 */
public String getSchedulerName() throws SchedulerException {
  return (String)getAttribute("SchedulerName");
}
origin: quartz-scheduler/quartz

      (String)getAttribute(attributeList, 0).getValue(),
      (String)getAttribute(attributeList, 1).getValue(),
      getClass(), true, false,
      (Boolean)getAttribute(attributeList, 2).getValue(),
      (Boolean)getAttribute(attributeList, 3).getValue(),
      null,
      Integer.parseInt(((Map)getAttribute(attributeList, 8).getValue()).get("JobsExecuted").toString()),
      Class.forName((String)getAttribute(attributeList, 4).getValue()),
      false,
      false,
      Class.forName((String)getAttribute(attributeList, 5).getValue()),
      (Integer)getAttribute(attributeList, 6).getValue(),
      (String)getAttribute(attributeList, 7).getValue());
} catch (ClassNotFoundException e) {
  throw new SchedulerException(e);
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
 * passing the <code>SchedulingContext</code> associated with this
 * instance.
 * </p>
 */
@SuppressWarnings("unchecked")
public List<String> getJobGroupNames() throws SchedulerException {
  return (List<String>)getAttribute("JobGroupNames");
}
origin: quartz-scheduler/quartz

      (String)getAttribute(attributeList, 0).getValue(),
      (String)getAttribute(attributeList, 1).getValue(),
      getClass(), true, false,
      (Boolean)getAttribute(attributeList, 2).getValue(),
      (Boolean)getAttribute(attributeList, 3).getValue(),
      null,
      Integer.parseInt(((Map)getAttribute(attributeList, 8).getValue()).get("JobsExecuted").toString()),
      Class.forName((String)getAttribute(attributeList, 4).getValue()),
      false,
      false,
      Class.forName((String)getAttribute(attributeList, 5).getValue()),
      (Integer)getAttribute(attributeList, 6).getValue(),
      (String)getAttribute(attributeList, 7).getValue());
} catch (ClassNotFoundException e) {
  throw new SchedulerException(e);
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
 * passing the <code>SchedulingContext</code> associated with this
 * instance.
 * </p>
 */
@SuppressWarnings("unchecked")
public List<String> getTriggerGroupNames() throws SchedulerException {
  return (List<String>)getAttribute("TriggerGroupNames");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public boolean isInStandbyMode() throws SchedulerException {
  return (Boolean)getAttribute("StandbyMode");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
 * passing the <code>SchedulingContext</code> associated with this
 * instance.
 * </p>
 */
@SuppressWarnings("unchecked")
public List<String> getCalendarNames() throws SchedulerException {
  return (List<String>)getAttribute("CalendarNames");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
 * passing the <code>SchedulingContext</code> associated with this
 * instance.
 * </p>
 */
@SuppressWarnings("unchecked")
public List<String> getTriggerGroupNames() throws SchedulerException {
  return (List<String>)getAttribute("TriggerGroupNames");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Returns the instance Id of the <code>Scheduler</code>.
 * </p>
 */
public String getSchedulerInstanceId() throws SchedulerException {
  return (String)getAttribute("SchedulerInstanceId");
}
origin: quartz-scheduler/quartz

/**
 * @see org.quartz.Scheduler#getPausedTriggerGroups()
 */
@SuppressWarnings("unchecked")
public Set<String> getPausedTriggerGroups() throws SchedulerException {
  return (Set<String>)getAttribute("PausedTriggerGroups");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Returns the name of the <code>Scheduler</code>.
 * </p>
 */
public String getSchedulerName() throws SchedulerException {
  return (String)getAttribute("SchedulerName");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Returns the instance Id of the <code>Scheduler</code>.
 * </p>
 */
public String getSchedulerInstanceId() throws SchedulerException {
  return (String)getAttribute("SchedulerInstanceId");
}
origin: quartz-scheduler/quartz

/**
 * @see org.quartz.Scheduler#getPausedTriggerGroups()
 */
@SuppressWarnings("unchecked")
public Set<String> getPausedTriggerGroups() throws SchedulerException {
  return (Set<String>)getAttribute("PausedTriggerGroups");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
 * passing the <code>SchedulingContext</code> associated with this
 * instance.
 * </p>
 */
@SuppressWarnings("unchecked")
public List<String> getCalendarNames() throws SchedulerException {
  return (List<String>)getAttribute("CalendarNames");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
 * passing the <code>SchedulingContext</code> associated with this
 * instance.
 * </p>
 */
@SuppressWarnings("unchecked")
public List<String> getJobGroupNames() throws SchedulerException {
  return (List<String>)getAttribute("JobGroupNames");
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
 * </p>
 */
public boolean isInStandbyMode() throws SchedulerException {
  return (Boolean)getAttribute("StandbyMode");
}
origin: quartz-scheduler/quartz

/**
 * Whether the scheduler has been started.  
 * 
 * <p>
 * Note: This only reflects whether <code>{@link #start()}</code> has ever
 * been called on this Scheduler, so it will return <code>true</code> even 
 * if the <code>Scheduler</code> is currently in standby mode or has been 
 * since shutdown.
 * </p>
 * 
 * @see #start()
 * @see #isShutdown()
 * @see #isInStandbyMode()
 */    
public boolean isStarted() throws SchedulerException {
  return (Boolean) getAttribute("Started");
}

origin: quartz-scheduler/quartz

/**
 * Whether the scheduler has been started.  
 * 
 * <p>
 * Note: This only reflects whether <code>{@link #start()}</code> has ever
 * been called on this Scheduler, so it will return <code>true</code> even 
 * if the <code>Scheduler</code> is currently in standby mode or has been 
 * since shutdown.
 * </p>
 * 
 * @see #start()
 * @see #isShutdown()
 * @see #isInStandbyMode()
 */    
public boolean isStarted() throws SchedulerException {
  return (Boolean) getAttribute("Started");
}

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

/**
 * <p>
 * Returns the instance Id of the <code>Scheduler</code>.
 * </p>
 */
public String getSchedulerInstanceId() throws SchedulerException {
  return (String)getAttribute("schedulerInstanceId");
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * <p>
 * Returns the name of the <code>Scheduler</code>.
 * </p>
 */
public String getSchedulerName() throws SchedulerException {
  return (String)getAttribute("schedulerName");
}
org.quartz.implRemoteMBeanSchedulergetAttribute

Javadoc

Get the given attribute of the remote Scheduler MBean.

Popular methods of RemoteMBeanScheduler

  • getAttributes
    Get the given attributes of the remote Scheduler MBean.
  • getSchedulerName
    Returns the name of the Scheduler.
  • initialize
    Initialize this RemoteMBeanScheduler instance, connecting to the remote MBean server.
  • invoke
    Invoke the given operation on the remote Scheduler MBean.
  • setSchedulerObjectName
    Set the name under which the Scheduler MBean is registered on the remote MBean server.
  • triggerJob
    Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associ
  • isInStandbyMode
    Calls the equivalent method on the 'proxied' QuartzScheduler.
  • isStarted
    Whether the scheduler has been started. Note: This only reflects whether #start() has ever been call
  • setSchedulingContext
    Set the scheduling context of this proxy.
  • standby
    Calls the equivalent method on the 'proxied' QuartzScheduler.
  • toBoolean
  • triggerJobWithVolatileTrigger
    Calls the equivalent method on the 'proxied' QuartzScheduler, passing the SchedulingContext associ
  • toBoolean,
  • triggerJobWithVolatileTrigger

Popular in Java

  • Creating JSON documents from java classes using gson
  • setRequestProperty (URLConnection)
  • getContentResolver (Context)
  • onCreateOptionsMenu (Activity)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • JList (javax.swing)
  • CodeWhisperer alternatives
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