1   package org.codehaus.ivory.list;
2   
3   import java.util.ArrayList;
4   import java.util.List;
5   
6   import org.codehaus.ivory.attributes.NonWebMethod;
7   import org.codehaus.ivory.attributes.ParameterType;
8   
9   /***
10   * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
11   * @since May 4, 2003
12   */
13  public class DefaultListService
14  	implements ListService
15  {
16  	private NonWebMethod nwm;
17      private ParameterType pt;
18      
19      public List getDevelopers()
20      {
21          List list = new ArrayList();
22          list.add( "Dan Diephouse" );
23          list.add( "Jason van Zyl" );
24          
25          return list;
26      }
27  
28      public void secretMethod()
29      {
30      }
31  }