Created
May 11, 2017 21:09
-
-
Save mkuehle/905ae9284881b8a635ba46f8784bcf88 to your computer and use it in GitHub Desktop.
Default Interface Methode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* coodoo Job Engine | |
* Job Execution Parameter Interface | |
*/ | |
public interface JobExcecutionParameter { | |
public default boolean isPriority() { | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment