]> git.mxchange.org Git - jshop-core.git/blob - src/org/mxchange/jshopcore/events/ShopCheckoutCompletedEvent.java
nope, better set the entire checkout-wrapper object than only customer
[jshop-core.git] / src / org / mxchange / jshopcore / events / ShopCheckoutCompletedEvent.java
1 /*
2  * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jshopcore.events;
18
19 import org.mxchange.jshopcore.wrapper.WrapableCheckout;
20
21 /**
22  * An event being fired when a checkout is completed by user
23  * <p>
24  * @author Roland Haeder<roland@mxchange.org>
25  */
26 public class ShopCheckoutCompletedEvent implements ObservableCheckoutCompletedEvent {
27
28         /**
29          * Serial number
30          */
31         private static final long serialVersionUID = 16_018_592_482_985_714L;
32
33         /**
34          * Checkout wrapper
35          */
36         private final WrapableCheckout wrapper;
37
38         /**
39          * Constructor with checkout wrapper
40          * <p>
41          * @param wrapper Checkout wrapper
42          */
43         public ShopCheckoutCompletedEvent (final WrapableCheckout wrapper) {
44                 this.wrapper = wrapper;
45         }
46
47         @Override
48         public WrapableCheckout getWrapper () {
49                 return this.wrapper;
50         }
51
52 }