package example;

/**
 * Interface for the Hello session.
 */
public interface Hello {
  /**
   * Returns a hello, world string.
   */
  public String greeting1();

  /**
   * Returns the second constant.
   */
  public String greeting2();
}
