1 45 package org.openejb.server.telnet; 46 47 import java.io.DataInputStream ; 48 import java.io.IOException ; 49 import java.io.PrintStream ; 50 51 54 public class Exit extends Command { 55 56 public static void register() { 57 Command.register("exit", Exit.class); 58 } 59 60 public void exec(Arguments args, DataInputStream in, PrintStream out) throws IOException { 61 throw new UnsupportedOperationException (); 62 } 63 64 } 65 66 | Popular Tags |