Skip to content

Instantly share code, notes, and snippets.

@migue
Last active December 15, 2015 19:19
Show Gist options
  • Save migue/5310850 to your computer and use it in GitHub Desktop.
Save migue/5310850 to your computer and use it in GitHub Desktop.
/**
* Domain model representing the metrics of our system. All the metrics at our
* system should implement this interface
*
* @author migue
*
*/
public interface Metric {
public String name();
public String display();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment