Skip to content

Instantly share code, notes, and snippets.

@koert
Created July 5, 2015 07:55
Show Gist options
  • Select an option

  • Save koert/642ea7d74d61441bde3d to your computer and use it in GitHub Desktop.

Select an option

Save koert/642ea7d74d61441bde3d to your computer and use it in GitHub Desktop.
Example repository that produces a greeting
/**
* Example repository.
* @author Koert Zeilstra
*/
public class HelloRepository {
/**
* @return Example greeting.
*/
public String getGreeting(String name) {
return "Hello world " + name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment