Skip to content

Instantly share code, notes, and snippets.

@mkuehle
Created May 11, 2017 21:18
Show Gist options
  • Save mkuehle/76742d339849a143e5f00ddaaf40005d to your computer and use it in GitHub Desktop.
Save mkuehle/76742d339849a143e5f00ddaaf40005d to your computer and use it in GitHub Desktop.
Default Methode aus Interface überschreiben
/**
* Job Exectuion Parmater für Hintergrundjob 'Nutzerdaten erstellen'
*/
public CreateUserEntriesJobExecutinonParameter implements JobExcecutionParameter {
private Long emailId;
private boolean isPriority;
public CreateUserEntriesJobExecutinonParameter(Long eMailId, boolean priority) {
this.emailId = emailId;
this.priority = priority;
}
public boolean isPriority() {
return isPriority;
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment