Skip to content

Instantly share code, notes, and snippets.

@authsec
Created May 26, 2016 21:21
Show Gist options
  • Save authsec/8b04fe00c4d26e312e03d7cd53cb0177 to your computer and use it in GitHub Desktop.
Save authsec/8b04fe00c4d26e312e03d7cd53cb0177 to your computer and use it in GitHub Desktop.
package org.coffeecrew.tutorials.simplepluginmechanism;
/**
Simple plugin interface.
<p/>
@author Jens Frey
*/
public interface Plugin {
/**
Simple worker method that will append data on the processingToken.
<p/>
And another.
<p/>
@param processingToken Token where data should be appended during
processing.
<p/>
@return processingToken that has been worked on.
*/
public String process(String processingToken);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment