]> git.mxchange.org Git - jcustomer-core.git/blobdiff - src/org/mxchange/jshopcore/model/product/Product.java
Continued:
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / product / Product.java
index 5f0087602632840d26c75498ca73ca7db5b6717f..140dd70c63ed4f5902cee81c2963d17dfbc4382d 100644 (file)
@@ -38,68 +38,68 @@ public interface Product extends Serializable {
         *
         * @return Product availability
         */
-       public Boolean getAvailable ();
+       public Boolean getProductAvailability ();
 
        /**
         * Setter for product availability
         *
-        * @param available Product availability
+        * @param productAvailability Product availability
         */
-       public void setAvailable (final Boolean available);
+       public void setProductAvailability (final Boolean productAvailability);
 
        /**
         * Getter for product category id
         *
         * @return Product category id
         */
-       public Category getCategory ();
+       public Category getProductCategory ();
 
        /**
         * Setter for product category
         *
-        * @param category Product category
+        * @param productCategory Product category
         */
-       public void setCategory (final Category category);
+       public void setProductCategory (final Category productCategory);
 
        /**
         * Getter for id number, suitable for form fields.
         *
         * @return Id number of product
         */
-       public Long getId ();
+       public Long getProductId ();
 
        /**
         * Id number of product
         *
-        * @param id the id number to set
+        * @param productId the id number to set
         */
-       public void setId (final Long id);
+       public void setProductId (final Long productId);
 
        /**
         * Getter for raw price.
         *
         * @return Single price of product
         */
-       public Float getPrice ();
+       public Float getProductPrice ();
 
        /**
         * Price of product
         *
-        * @param price the price to set
+        * @param productPrice the price to set
         */
-       public void setPrice (final Float price);
+       public void setProductPrice (final Float productPrice);
 
        /**
         * Getter for title.
         *
         * @return Title of product
         */
-       public String getTitle ();
+       public String getProductTitle ();
 
        /**
         * Title of product
         *
-        * @param title the title to set
+        * @param productTitle the title to set
         */
-       public void setTitle (final String title);
+       public void setProductTitle (final String productTitle);
 }