package tutorial.sample6;

import java.util.List;
import java.util.ArrayList;
import java.util.Date;

public class HelloWorldService{

  public Object helloGenericWorld(){
    return "Hi there";
  }

  public List helloListWorld(){
    ArrayList list = new ArrayList();

    list.add( "Hi there" );
    list.add( new Date() );
    list.add( new Integer( 10 ) );

    return list;
  }
}

