]> git.mxchange.org Git - jshop-core.git/commitdiff
resorted members
authorRoland Haeder <roland@mxchange.org>
Sat, 20 Feb 2016 21:07:26 +0000 (22:07 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 20 Feb 2016 21:07:26 +0000 (22:07 +0100)
src/org/mxchange/jshopcore/model/basket/items/BasketItem.java

index 527031a8e81b823429edfb6fec5798affd2cdc72..3dc05dc54c713453d951be1e327a06ade62fcb14 100644 (file)
@@ -44,13 +44,6 @@ public class BasketItem extends BaseItem implements AddableBasketItem {
         */
        private static final long serialVersionUID = 52_749_158_492_581_578L;
 
-       /**
-        * Item orderedAmount
-        */
-       @Basic (optional = false)
-       @Column (name = "ordered_amount", nullable = false, length = 20)
-       private Long orderedAmount;
-
        /**
         * Entry itemId (from database backend)
         */
@@ -59,6 +52,13 @@ public class BasketItem extends BaseItem implements AddableBasketItem {
        @Column (name = "item_id", nullable = false, updatable = false)
        private Long itemId;
 
+       /**
+        * Product instance
+        */
+       @JoinColumn (name = "product_id", updatable = false)
+       @OneToOne (targetEntity = GenericProduct.class, cascade = CascadeType.MERGE)
+       private Product itemProduct;
+
        /**
         * Item type
         */
@@ -67,11 +67,11 @@ public class BasketItem extends BaseItem implements AddableBasketItem {
        private String itemType;
 
        /**
-        * Product instance
+        * Item orderedAmount
         */
-       @JoinColumn (name = "product_id", updatable = false)
-       @OneToOne (targetEntity = GenericProduct.class, cascade = CascadeType.MERGE)
-       private Product itemProduct;
+       @Basic (optional = false)
+       @Column (name = "ordered_amount", nullable = false, length = 20)
+       private Long orderedAmount;
 
        /**
         * Default constructor
@@ -122,23 +122,23 @@ public class BasketItem extends BaseItem implements AddableBasketItem {
        }
 
        @Override
-       public Long getOrderedAmount () {
-               return this.orderedAmount;
+       public Long getItemId () {
+               return this.itemId;
        }
 
        @Override
-       public void setOrderedAmount (final Long orderedAmount) {
-               this.orderedAmount = orderedAmount;
+       public void setItemId (final Long itemId) {
+               this.itemId = itemId;
        }
 
        @Override
-       public Long getItemId () {
-               return this.itemId;
+       public Product getItemProduct () {
+               return this.itemProduct;
        }
 
        @Override
-       public void setItemId (final Long itemId) {
-               this.itemId = itemId;
+       public void setItemProduct (final Product itemProduct) {
+               this.itemProduct = itemProduct;
        }
 
        @Override
@@ -152,12 +152,12 @@ public class BasketItem extends BaseItem implements AddableBasketItem {
        }
 
        @Override
-       public Product getItemProduct () {
-               return this.itemProduct;
+       public Long getOrderedAmount () {
+               return this.orderedAmount;
        }
 
        @Override
-       public void setItemProduct (final Product itemProduct) {
-               this.itemProduct = itemProduct;
+       public void setOrderedAmount (final Long orderedAmount) {
+               this.orderedAmount = orderedAmount;
        }
 }