1 23 24 package com.sun.enterprise.cli.commands; 25 26 import com.sun.enterprise.cli.framework.*; 27 28 32 public class NYICommand extends Command 33 { 34 38 public void runCommand() 39 throws CommandException, CommandValidationException 40 { 41 CLILogger.getInstance().printError("Command Not Yet Implemented"); 42 throw new CommandException("Command Not Yet Implemented"); 43 } 44 45 52 public boolean validateOptions() throws CommandValidationException 53 { 54 return true; 55 } 56 57 } 58 | Popular Tags |