Class ShippingMethod

java.lang.Object
org.api.mkm.modele.ShippingMethod
All Implemented Interfaces:
java.io.Serializable

public class ShippingMethod
extends java.lang.Object
implements java.io.Serializable
See Also:
Serialized Form
  • Constructor Summary

    Constructors
    Constructor Description
    ShippingMethod()  
  • Method Summary

    Modifier and Type Method Description
    int getIdShippingMethod()  
    java.lang.String getName()  
    double getPrice()  
    boolean isInsured()  
    boolean isLetter()  
    void setIdShippingMethod​(int idShippingMethod)  
    void setInsured​(boolean isInsured)  
    void setLetter​(boolean isLetter)  
    void setName​(java.lang.String name)  
    void setPrice​(double price)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ShippingMethod

      public ShippingMethod()
  • Method Details

    • getIdShippingMethod

      public int getIdShippingMethod()
    • setIdShippingMethod

      public void setIdShippingMethod​(int idShippingMethod)
    • getName

      public java.lang.String getName()
    • setName

      public void setName​(java.lang.String name)
    • getPrice

      public double getPrice()
    • setPrice

      public void setPrice​(double price)
    • isLetter

      public boolean isLetter()
    • setLetter

      public void setLetter​(boolean isLetter)
    • isInsured

      public boolean isInsured()
    • setInsured

      public void setInsured​(boolean isInsured)