Skip to content

Instantly share code, notes, and snippets.

@mkuehle
Created May 11, 2017 21:09
Show Gist options
  • Save mkuehle/905ae9284881b8a635ba46f8784bcf88 to your computer and use it in GitHub Desktop.
Save mkuehle/905ae9284881b8a635ba46f8784bcf88 to your computer and use it in GitHub Desktop.
Default Interface Methode
/**
* 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