Skip to content

Instantly share code, notes, and snippets.

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