1   package org.codehaus.ivory.list;
2   
3   import java.util.List;
4   
5   import org.codehaus.ivory.attributes.NonWebMethod;
6   import org.codehaus.ivory.attributes.ParameterType;
7   
8   /***
9    * Service to test the ability to return the java.util.List class correctly.
10   * 
11   * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
12   * @since May 4, 2003
13   */
14  public interface ListService
15  {
16  	final public static String ROLE = ListService.class.getName();
17  	
18  	/***
19       * @@.return ParameterType(String[].class)
20       */
21  	public List getDevelopers();
22  
23  	/***
24  	 * @@NonWebMethod()
25  	 */
26  	public void secretMethod();	
27  }