2019-10-22 07:15:35 +02:00
|
|
|
/*
|
2019-10-12 20:05:54 +03:00
|
|
|
* The MIT License
|
|
|
|
* Copyright © 2014-2019 Ilkka Seppälä
|
2017-08-11 16:17:51 +05:30
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
2019-10-12 20:05:54 +03:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2017-08-11 16:17:51 +05:30
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2019-10-12 20:05:54 +03:00
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
2017-08-11 16:17:51 +05:30
|
|
|
*/
|
2019-10-22 07:15:35 +02:00
|
|
|
|
2017-08-11 16:17:51 +05:30
|
|
|
package com.iluwatar.datatransfer;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2019-11-10 22:57:09 +05:30
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
2017-08-11 16:17:51 +05:30
|
|
|
|
|
|
|
/**
|
2019-11-10 22:57:09 +05:30
|
|
|
* The Data Transfer Object pattern is a design pattern in which an data transfer object is used to
|
|
|
|
* serve related information together to avoid multiple call for each piece of information.
|
|
|
|
*
|
2020-07-18 17:10:50 +03:00
|
|
|
* <p>In this example, ({@link App}) as as customer details consumer i.e. client to
|
2019-11-10 22:57:09 +05:30
|
|
|
* request for customer details to server.
|
|
|
|
*
|
|
|
|
* <p>CustomerResource ({@link CustomerResource}) act as server to serve customer information. And
|
|
|
|
* The CustomerDto ({@link CustomerDto} is data transfer object to share customer information.
|
2017-08-11 16:17:51 +05:30
|
|
|
*/
|
2020-07-18 17:10:50 +03:00
|
|
|
public class App {
|
2017-08-14 00:40:29 +05:30
|
|
|
|
2020-07-18 17:10:50 +03:00
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(App.class);
|
2017-08-14 00:40:29 +05:30
|
|
|
|
2017-08-11 16:17:51 +05:30
|
|
|
/**
|
|
|
|
* Method as act client and request to server for details.
|
|
|
|
*
|
|
|
|
* @param args program argument.
|
|
|
|
*/
|
|
|
|
public static void main(String[] args) {
|
2019-12-15 00:02:45 +05:30
|
|
|
var customerOne = new CustomerDto("1", "Kelly", "Brown");
|
|
|
|
var customerTwo = new CustomerDto("2", "Alfonso", "Bass");
|
|
|
|
var customers = new ArrayList<>(List.of(customerOne, customerTwo));
|
2017-08-11 16:17:51 +05:30
|
|
|
|
2019-12-15 00:02:45 +05:30
|
|
|
var customerResource = new CustomerResource(customers);
|
2017-08-11 16:17:51 +05:30
|
|
|
|
2017-08-14 00:40:29 +05:30
|
|
|
LOGGER.info("All customers:-");
|
2019-12-15 00:02:45 +05:30
|
|
|
var allCustomers = customerResource.getAllCustomers();
|
2017-08-11 16:17:51 +05:30
|
|
|
printCustomerDetails(allCustomers);
|
|
|
|
|
2017-08-14 00:40:29 +05:30
|
|
|
LOGGER.info("----------------------------------------------------------");
|
2017-08-11 16:17:51 +05:30
|
|
|
|
2017-08-14 00:40:29 +05:30
|
|
|
LOGGER.info("Deleting customer with id {1}");
|
2017-08-11 16:17:51 +05:30
|
|
|
customerResource.delete(customerOne.getId());
|
|
|
|
allCustomers = customerResource.getAllCustomers();
|
|
|
|
printCustomerDetails(allCustomers);
|
|
|
|
|
2017-08-14 00:40:29 +05:30
|
|
|
LOGGER.info("----------------------------------------------------------");
|
2017-08-11 16:17:51 +05:30
|
|
|
|
2017-08-14 00:40:29 +05:30
|
|
|
LOGGER.info("Adding customer three}");
|
2019-12-15 00:02:45 +05:30
|
|
|
var customerThree = new CustomerDto("3", "Lynda", "Blair");
|
2017-08-11 16:17:51 +05:30
|
|
|
customerResource.save(customerThree);
|
|
|
|
allCustomers = customerResource.getAllCustomers();
|
|
|
|
printCustomerDetails(allCustomers);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void printCustomerDetails(List<CustomerDto> allCustomers) {
|
2017-08-14 00:40:29 +05:30
|
|
|
allCustomers.forEach(customer -> LOGGER.info(customer.getFirstName()));
|
2017-08-11 16:17:51 +05:30
|
|
|
}
|
|
|
|
}
|