Skip to content

Instantly share code, notes, and snippets.

@authsec
Created May 26, 2016 21:37
Show Gist options
  • Save authsec/f514db12dba1d354a16d5d28bfd75b9e to your computer and use it in GitHub Desktop.
Save authsec/f514db12dba1d354a16d5d28bfd75b9e to your computer and use it in GitHub Desktop.
package org.coffeecrew.tutorials.simplepluginmechanism;
public class MoreProcessPlugin implements Processable {
@Override
public String process(String processingToken) {
return processingToken + "[PROCESS] " + this.getClass().getName() + "\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment