Package org.jitterbit.integration.data.entity.schedule

Examples of org.jitterbit.integration.data.entity.schedule.SchedulePriority


     *            a <tt>SchedulePriority</tt> object; cannot be null.
     * @throws NullPointerException
     *             if <tt>priority</tt> is null.
     */
    public void setPriority(SchedulePriority priority) {
        SchedulePriority old = getPriority();
        // Always call setProperty, even if the new priority is identical
        // to the old one. This is to make sure that the key-value pairs
        // get created in the case where this is the first time this method
        // is called and priority is the default priority.
        setProperty(PRIORITY_PROPERTY, String.valueOf(priority.getId()));
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.schedule.SchedulePriority

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.