Class OrderNote
- java.lang.Object
-
- com.broadleafcommerce.order.domain.OrderNote
-
- All Implemented Interfaces:
com.broadleafcommerce.data.tracking.core.ContextStateAware,Serializable
public class OrderNote extends Object implements Serializable, com.broadleafcommerce.data.tracking.core.ContextStateAware
Informational notes manually added for anOrderby an admin for future reference by other admins.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OrderNote()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetAuthor()The user that created this notecom.broadleafcommerce.data.tracking.core.filtering.business.domain.ContextStategetContextState()A subset ofTrackinginformation to expose the context state for this object.InstantgetCreated()When this note was createdStringgetId()The context ID of the order note.StringgetNote()The content of the noteStringgetOrderId()The link to the order that this note applies tointhashCode()voidsetAuthor(String author)The user that created this notevoidsetContextState(com.broadleafcommerce.data.tracking.core.filtering.business.domain.ContextState contextState)A subset ofTrackinginformation to expose the context state for this object.voidsetCreated(Instant created)When this note was createdvoidsetId(String id)The context ID of the order note.voidsetNote(String note)The content of the notevoidsetOrderId(String orderId)The link to the order that this note applies toStringtoString()
-
-
-
Method Detail
-
getId
public String getId()
The context ID of the order note.- Returns:
- the context ID of the order note
-
getOrderId
public String getOrderId()
The link to the order that this note applies to- Returns:
- the context ID of the order that this note applies to
-
getNote
public String getNote()
The content of the note- Returns:
- the content of the note
-
getCreated
public Instant getCreated()
When this note was created- Returns:
- when this note was created
-
getAuthor
public String getAuthor()
The user that created this note- Returns:
- the user that created this note
-
getContextState
public com.broadleafcommerce.data.tracking.core.filtering.business.domain.ContextState getContextState()
A subset ofTrackinginformation to expose the context state for this object.- Specified by:
getContextStatein interfacecom.broadleafcommerce.data.tracking.core.ContextStateAware- Returns:
- a subset of
Trackinginformation to expose the context state for this object.
-
setId
public void setId(String id)
The context ID of the order note.- Parameters:
id- the context ID of the order note
-
setOrderId
public void setOrderId(String orderId)
The link to the order that this note applies to- Parameters:
orderId- the context ID of the order that this note applies to
-
setNote
public void setNote(String note)
The content of the note- Parameters:
note- the content of the note
-
setCreated
public void setCreated(Instant created)
When this note was created- Parameters:
created- when this note was created
-
setAuthor
public void setAuthor(String author)
The user that created this note- Parameters:
author- the user that created this note
-
setContextState
public void setContextState(com.broadleafcommerce.data.tracking.core.filtering.business.domain.ContextState contextState)
A subset ofTrackinginformation to expose the context state for this object.- Specified by:
setContextStatein interfacecom.broadleafcommerce.data.tracking.core.ContextStateAware- Parameters:
contextState- a subset ofTrackinginformation to expose the context state for this object
-
canEqual
protected boolean canEqual(Object other)
-
-