import java.util.*;

public class TheZoo
{
static Timer     timer = new Timer();
static TimerTask task = new GetAttachments();

 public static void main (String[] arg)
 {
  // wait five seconds before executing, then
  // execute every 15 seconds
  timer.schedule( task, 2000, 15000 );
 }
}
