Skip to content

Instantly share code, notes, and snippets.

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