server
Interface Command


public interface Command

This interface denotes objects that are able to execute actions, once they are invoked. It is defined as in the Command design pattern.

Author:
Fernando

Method Summary
 void execute(DaoImpl d)
          Performs a series of actions on the input object.
 

Method Detail

execute

void execute(DaoImpl d)
Performs a series of actions on the input object.

Parameters:
d - the subject of the actions that will be executed.