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

This page was automatically generated by Maven