aQute.bnd.service
Interface CommandPlugin


public interface CommandPlugin

A plugin that makes it possible to

Author:
aqute

Method Summary
 void after(Project project, String command, Throwable outcome)
          Is run after a command is executed.
 void before(Project project, String command)
          Is run before a command is executed.
 

Method Detail

before

void before(Project project,
            String command)
Is run before a command is executed. These plugins are called in the order of declaration.

Parameters:
project - The project for which the command runs
command - the command name

after

void after(Project project,
           String command,
           Throwable outcome)
Is run after a command is executed. These plugins are called in the reverse order of declaration.

Parameters:
project - The project for which the command runs
command - the command name


Copyright © 2012 aQute SARL. All Rights Reserved.