Skip to content

Instantly share code, notes, and snippets.

@authsec
Last active May 26, 2016 21:36
Show Gist options
  • Save authsec/337d2225b5ce3855197fa5f702b6e538 to your computer and use it in GitHub Desktop.
Save authsec/337d2225b5ce3855197fa5f702b6e538 to your computer and use it in GitHub Desktop.
package org.coffeecrew.tutorials.simplepluginmechanism;
public class ProcessPlugin 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