View Javadoc
1   package com.guinetik.examples;
2   
3   /**
4    * Interface for all RocketRest examples
5    */
6   public interface Example {
7       /**
8        * Get the name of the example to display in the menu
9        * @return The example name
10       */
11      String getName();
12      
13      /**
14       * Run the example
15       */
16      void run();
17  }