Created
May 11, 2017 21:18
-
-
Save mkuehle/76742d339849a143e5f00ddaaf40005d to your computer and use it in GitHub Desktop.
Default Methode aus Interface überschreiben
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
/** | |
* 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