@Entity public class DeliveryDetails extends Object implements Auditable
Constructor and Description |
---|
DeliveryDetails() |
DeliveryDetails(Order order) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
int |
getActualDays() |
String |
getAddress() |
Address |
getAddressObj() |
Amount |
getAmount()
Amount charged for Delivery/Shipping only |
Date |
getDispatchDate() |
int |
getEstimatedDays() |
Long |
getId() |
Date |
getLastStatusDate() |
String |
getNotes() |
Order |
getOrder() |
String |
getOrderItemWiseBreakUp()
If we want to capture the delivery charges for all OrderItems within an Order
JSON Array String that has <orderId>:<base amount in same currency as that of |
String |
getServiceName()
Service used to deliver/ship
|
String |
getServiceTrackingId()
Tracking ID provided by the service that handles the delivery
|
String |
getState()
Current state of Delivery
|
String |
getTrackingLink()
Service providers may offer a way to track the product; the details of the link
|
int |
hashCode() |
void |
setActualDays(int actualDays) |
void |
setAddress(String address) |
void |
setAddressObj(Address address) |
void |
setAmount(Amount amount)
Amount charged for Delivery/Shipping only |
void |
setDispatchDate(Date dispatchDate) |
void |
setEstimatedDays(int estimatedDays) |
void |
setId(Long id) |
void |
setLastStatusDate(Date lastStatusDate) |
void |
setNotes(String notes) |
void |
setOrder(Order order) |
void |
setOrderItemWiseBreakUp(String orderItemWiseBreakUp)
If we want to capture the delivery charges for all OrderItems within an Order
JSON Array String that has <orderId>:<base amount in same currency as that of |
void |
setServiceName(String serviceName)
Service used to deliver/ship
|
void |
setServiceTrackingId(String serviceTrackingId)
Tracking ID provided by the service that handles the delivery
|
void |
setState(String state)
Current state of Delivery
|
void |
setTrackingLink(String trackingLink)
Service providers may offer a way to track the product; the details of the link
|
String |
toString() |
public DeliveryDetails()
public DeliveryDetails(Order order)
public Long getId()
public void setId(Long id)
public Order getOrder()
public void setOrder(Order order)
public String getServiceName()
public void setServiceName(String serviceName)
public String getServiceTrackingId()
public void setServiceTrackingId(String serviceTrackingId)
public Date getDispatchDate()
public void setDispatchDate(Date dispatchDate)
public Date getLastStatusDate()
public void setLastStatusDate(Date lastStatusDate)
public int getEstimatedDays()
public void setEstimatedDays(int estimatedDays)
public int getActualDays()
public void setActualDays(int actualDays)
public String getAddress()
public void setAddress(String address)
public Address getAddressObj()
public void setAddressObj(Address address)
public String getNotes()
public void setNotes(String notes)
public String getOrderItemWiseBreakUp()
<orderId>:<base amount in same currency as that of amount
>
public void setOrderItemWiseBreakUp(String orderItemWiseBreakUp)
<orderId>:<base amount in same currency as that of amount
>
public String getState()
public void setState(String state)
public String getTrackingLink()
public void setTrackingLink(String trackingLink)
Copyright © 2018. All rights reserved.