Package com.prowidesoftware.swift.model
Class SwiftMessageNote
- java.lang.Object
-
- com.prowidesoftware.swift.model.SwiftMessageNote
-
@Entity public class SwiftMessageNote extends java.lang.ObjectComments associated to a message for application only usage (not part of the standard).XML metadata may be used to override or augment these JPA annotations.
- Since:
- 7.0
-
-
Constructor Summary
Constructors Constructor Description SwiftMessageNote()SwiftMessageNote(java.lang.String creationUser, java.lang.String text)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.CalendargetCreationDate()java.lang.StringgetCreationUser()java.lang.LonggetId()java.lang.StringgetText()voidsetCreationDate(java.util.Calendar creationDate)voidsetCreationUser(java.lang.String creationUser)voidsetId(java.lang.Long id)voidsetText(java.lang.String text)
-
-
-
Method Detail
-
getId
public java.lang.Long getId()
- Returns:
- the id
-
setId
public void setId(java.lang.Long id)
- Parameters:
id- the id to set
-
getCreationDate
public java.util.Calendar getCreationDate()
- Returns:
- the creationDate
-
setCreationDate
public void setCreationDate(java.util.Calendar creationDate)
- Parameters:
creationDate- the creationDate to set
-
getCreationUser
public java.lang.String getCreationUser()
-
setCreationUser
public void setCreationUser(java.lang.String creationUser)
-
getText
public java.lang.String getText()
- Returns:
- the text
-
setText
public void setText(java.lang.String text)
- Parameters:
text- the text to set
-
-