Class DELETECommand

  • All Implemented Interfaces:
    Command

    public class DELETECommand
    extends java.lang.Object
    implements Command
    DELETE command. This performs a REST-style DELETE operation, designed to work against the ManifoldCF API. The syntax is: DELETE resultvariable = urlvariable
    • Constructor Detail

      • DELETECommand

        public DELETECommand()
    • Method Detail

      • parseAndExecute

        public boolean parseAndExecute​(ScriptParser sp,
                                       TokenStream currentStream)
                                throws ScriptException
        Parse and execute. Parsing begins right after the command name, and should stop before the trailing semicolon.
        Specified by:
        parseAndExecute in interface Command
        Parameters:
        sp - is the script parser to use to help in the parsing.
        currentStream - is the current token stream.
        Returns:
        true to send a break signal, false otherwise.
        Throws:
        ScriptException
      • parseAndSkip

        public void parseAndSkip​(ScriptParser sp,
                                 TokenStream currentStream)
                          throws ScriptException
        Parse and skip. Parsing begins right after the command name, and should stop before the trailing semicolon.
        Specified by:
        parseAndSkip in interface Command
        Parameters:
        sp - is the script parser to use to help in the parsing.
        currentStream - is the current token stream.
        Throws:
        ScriptException