]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/beans/checkout/CheckoutWebController.java
Continued:
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / checkout / CheckoutWebController.java
index 4e30f29f417dc44996452519b2c17d0d8e320ee4..f314f02b354e29157ff9b2b9e3cd1b81298c10cf 100644 (file)
@@ -17,6 +17,7 @@
 package org.mxchange.pizzaapplication.beans.checkout;
 
 import java.io.Serializable;
+import org.mxchange.jshopcore.model.customer.Customer;
 
 /**
  * An interface for the shop
@@ -30,4 +31,18 @@ public interface CheckoutWebController extends Serializable {
         * @return Page redirection target
         */
        public String doCheckout ();
+
+       /**
+        * Getter for customer instance
+        *
+        * @return Customer instance
+        */
+       public Customer getCustomer ();
+
+       /**
+        * Setter for customer instance
+        *
+        * @param customer Customer instance
+        */
+       public void setCustomer (final Customer customer);
 }