Hexagonal pattern: Update test application description

This commit is contained in:
Ilkka Seppälä 2016-09-15 21:56:15 +03:00
parent df32a7b893
commit 914d1353a1

View File

@ -49,13 +49,13 @@ import com.iluwatar.hexagonal.sampledata.SampleData;
* The application core is separate from the services that drive it and * The application core is separate from the services that drive it and
* from the services it uses.<p> * from the services it uses.<p>
* *
* The primary ports for the application are {@link LotteryAdministration} * The primary ports for the application are console interfaces
* through which the lottery round is initiated and run and * {@link ConsoleAdministration} through which the lottery round is
* {@link LotteryService} that allows players to submit lottery tickets for * initiated and run and {@link ConsoleLottery} that allows players to
* the draw.<p> * submit lottery tickets for the draw.<p>
* *
* The secondary ports that application core uses are {@link WireTransfers} * The secondary ports that application core uses are {@link WireTransfers}
* which is a banking service, {@link LotteryNotifications} that delivers * which is a banking service, {@link LotteryEventLog} that delivers
* eventlog as lottery events occur and {@link LotteryTicketRepository} * eventlog as lottery events occur and {@link LotteryTicketRepository}
* that is the storage for the lottery tickets. * that is the storage for the lottery tickets.
* *