#107 Business Delegate JavaDoc improvements
This commit is contained in:
parent
81dda94abd
commit
a0283d60f1
@ -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
|
* 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
|
* knowledge about how to locate, connect to, and interact with the business objects that make up
|
||||||
* the application.
|
* the application.
|
||||||
*
|
* <p>
|
||||||
* Some of the services the Business Delegate uses are instantiated directly, and some can be retrieved
|
* 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
|
* through service lookups. The Business Delegate itself may contain business logic too potentially tying
|
||||||
* together multiple service calls, exception handling, retrying etc.
|
* together multiple service calls, exception handling, retrying etc.
|
||||||
*
|
* <p>
|
||||||
* In this example the client (Client) utilizes a business delegate (BusinessDelegate) to execute a task.
|
* 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.
|
* The Business Delegate then selects the appropriate service and makes the service call.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class App {
|
public class App {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Program entry point
|
||||||
|
* @param args command line args
|
||||||
|
*/
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
||||||
BusinessDelegate businessDelegate = new BusinessDelegate();
|
BusinessDelegate businessDelegate = new BusinessDelegate();
|
||||||
|
@ -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 {
|
public class BusinessDelegate {
|
||||||
|
@ -4,6 +4,11 @@ import org.junit.Test;
|
|||||||
|
|
||||||
import com.iluwatar.business.delegate.App;
|
import com.iluwatar.business.delegate.App;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Application test
|
||||||
|
*
|
||||||
|
*/
|
||||||
public class AppTest {
|
public class AppTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user