#107 Business Delegate JavaDoc improvements

This commit is contained in:
Ilkka Seppala 2015-08-18 21:40:11 +03:00
parent 81dda94abd
commit a0283d60f1
3 changed files with 14 additions and 5 deletions

View File

@ -2,21 +2,25 @@ package com.iluwatar.business.delegate;
/**
*
* The Business Delegate pattern adds an abstraction layer between presentation and business tiers.
* The Business Delegate pattern adds an abstraction layer between the presentation and business tiers.
* By using the pattern we gain loose coupling between the tiers. The Business Delegate encapsulates
* knowledge about how to locate, connect to, and interact with the business objects that make up
* the application.
*
* <p>
* Some of the services the Business Delegate uses are instantiated directly, and some can be retrieved
* through service lookups. The Business Delegate itself may contain business logic too potentially tying
* together multiple service calls, exception handling, retrying etc.
*
* In this example the client (Client) utilizes a business delegate (BusinessDelegate) to execute a task.
* <p>
* In this example the client ({@link Client}) utilizes a business delegate ({@link BusinessDelegate}) to execute a task.
* The Business Delegate then selects the appropriate service and makes the service call.
*
*/
public class App {
/**
* Program entry point
* @param args command line args
*/
public static void main(String[] args) {
BusinessDelegate businessDelegate = new BusinessDelegate();

View File

@ -2,7 +2,7 @@ package com.iluwatar.business.delegate;
/**
*
* BusinessDelegate separates presentation and business tiers
* BusinessDelegate separates the presentation and business tiers
*
*/
public class BusinessDelegate {

View File

@ -4,6 +4,11 @@ import org.junit.Test;
import com.iluwatar.business.delegate.App;
/**
*
* Application test
*
*/
public class AppTest {
@Test