--- /dev/null
+/*
+ * Copyright (C) 2015 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jshopcore.wrapper;
+
+import java.util.List;
+import org.mxchange.jshopcore.model.basket.AddableBasketItem;
+import org.mxchange.jshopcore.model.customer.Customer;
+
+/**
+ * A wrapper for checkouts (customer, ordered items)
+ *
+ * @author Roland Haeder
+ */
+public class CheckoutWrapper implements WrapableCheckout {
+ /**
+ * Serial number
+ */
+ private static final long serialVersionUID = 94_358_758_475_481_781L;
+
+ /**
+ * Customer instance
+ */
+ private Customer customer;
+
+ /**
+ * List instance
+ */
+ private List<AddableBasketItem> list;
+
+ /**
+ * Default constructor
+ */
+ public CheckoutWrapper () {
+ }
+
+ public Customer getCustomer () {
+ return this.customer;
+ }
+
+ public void setCustomer (final Customer customer) {
+ this.customer = customer;
+ }
+
+ public List<AddableBasketItem> getList () {
+ return this.list;
+ }
+
+ public void setList (final List<AddableBasketItem> list) {
+ this.list = list;
+ }
+
+}
--- /dev/null
+/*
+ * Copyright (C) 2015 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jshopcore.wrapper;
+
+import java.io.Serializable;
+import java.util.List;
+import org.mxchange.jshopcore.model.basket.AddableBasketItem;
+import org.mxchange.jshopcore.model.customer.Customer;
+
+/**
+ * An interface for checkout wrapper
+ *
+ * @author Roland Haeder
+ */
+public interface WrapableCheckout extends Serializable {
+
+ /**
+ * Getter for customer instance
+ *
+ * @return Customer indstance
+ */
+ public Customer getCustomer ();
+
+ /**
+ * Setter for customer instance
+ * @param customer Customer instance
+ */
+ public void setCustomer (final Customer customer);
+
+ /**
+ * Getter for a List of AddableBasktem instances
+ * @return List with AddableBasketItem instances
+ */
+ public List<AddableBasketItem> getList ();
+
+ /**
+ * Setter for a List of AddableBasktem instances
+ * @param list List with AddableBasketItem instances
+ */
+ public void setList (final List<AddableBasketItem> list);
+}