All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.khubla.telnet.shell.basic.command.QuitCommand Maven / Gradle / Ivy

/*
 * Copyright (C) khubla.com - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited
 * Proprietary and confidential
 * Written by Tom Everett , 2018
 */
package com.khubla.telnet.shell.basic.command;

import java.util.HashMap;

import com.khubla.telnet.TelnetException;
import com.khubla.telnet.nvt.NVT;
import com.khubla.telnet.shell.command.AbstractCommand;

public class QuitCommand extends AbstractCommand {
   private final static String names[] = { "quit" };

   @Override
   public boolean execute(NVT nvt, String line, HashMap sessionParameters) throws TelnetException {
      /*
       * don't continue
       */
      return false;
   }

   @Override
   public String[] getNames() {
      return names;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy