2015-07-24 11:32:22 +03:00
|
|
|
package com.iluwatar.front.controller;
|
2015-07-19 12:44:51 +03:00
|
|
|
|
2015-07-19 13:54:07 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Commands are the intermediary between requests and views.
|
|
|
|
*
|
|
|
|
*/
|
2015-07-19 12:44:51 +03:00
|
|
|
public interface Command {
|
2015-12-25 23:49:28 +02:00
|
|
|
|
|
|
|
void process();
|
2015-07-19 12:44:51 +03:00
|
|
|
}
|