#631 - Partial Response : [Refactor] Made Main class name as App for consistancy.

This commit is contained in:
Gopinath Langote 2017-09-22 11:57:12 +05:30
parent 5d8d312733
commit 7f9789ce1d

View File

@ -32,15 +32,15 @@ import java.util.Map;
/** /**
* The Partial response pattern is a design pattern in which client specifies fields to fetch to serve. * The Partial response pattern is a design pattern in which client specifies fields to fetch to serve.
* Here {@link VideoClientApp} is playing as client for {@link VideoResource} server. * Here {@link App} is playing as client for {@link VideoResource} server.
* Client ask for specific fields information in video to server. * Client ask for specific fields information in video to server.
* <p> * <p>
* <p> * <p>
* {@link VideoResource} act as server to serve video information. * {@link VideoResource} act as server to serve video information.
*/ */
public class VideoClientApp { public class App {
private static final Logger LOGGER = LoggerFactory.getLogger(VideoClientApp.class); private static final Logger LOGGER = LoggerFactory.getLogger(App.class);
/** /**
* Method as act client and request to server for video details. * Method as act client and request to server for video details.