View Javadoc

1   /**
2    * 
3    */
4   package org.springframework.roo.addon.finder;
5   
6   /**
7    * A simple interface representing tokens in a JPA SQL query.
8    * 
9    * @author Ben Alex
10   * @author Stefan Schmidt
11   * @since 1.0
12   *
13   */
14  public interface Token {
15  	
16  	String getValue();
17  }