001    package org.apache.oozie.command.coord;
002    
003    import org.apache.oozie.command.XCommand;
004    
005    /**
006     * Abstract coordinator command class derived from XCommand
007     */
008    public abstract class CoordinatorXCommand<T> extends XCommand<T> {
009    
010        /**
011         * Base class constructor for coordinator commands.
012         *
013         * @param name command name
014         * @param type command type
015         * @param priority command priority
016         */
017        public CoordinatorXCommand(String name, String type, int priority) {
018            super(name, type, priority);
019        }
020    
021        /**
022         * Base class constructor for coordinator commands.
023         *
024         * @param name command name
025         * @param type command type
026         * @param priority command priority
027         * @param dryrun true if rerun is enabled for command
028         */
029        public CoordinatorXCommand(String name, String type, int priority, boolean dryrun) {
030            super(name, type, priority, dryrun);
031        }
032    
033    }