1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.tutorial.timer.client;8 9 import org.jboss.tutorial.timer.bean.ExampleTimer;10 11 import javax.naming.InitialContext ;12 13 14 public class Client15 {16 public static void main(String [] args) throws Exception 17 {18 InitialContext ctx = new InitialContext ();19 ExampleTimer timer = (ExampleTimer) ctx.lookup(ExampleTimer.class.getName());20 timer.scheduleTimer(5000);21 }22 }23