Class Reservation
- java.lang.Object
-
- be.business.connector.recipe.executor.domain.Reservation
-
public class Reservation extends Object
The Class Reservation.
-
-
Constructor Summary
Constructors Constructor Description Reservation()Instantiates a new reservation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetCreationDate()Gets the creation date.DategetLastupdate()Gets the lastupdate.StringgetRid()Gets the rid.voidsetCreationDate(Date creationDate)Sets the creation date.voidsetLastupdate(Date lastupdate)Sets the lastupdate.voidsetRid(String rid)Sets the rid.
-
-
-
Method Detail
-
getRid
public String getRid()
Gets the rid.- Returns:
- the rid
-
setRid
public void setRid(String rid)
Sets the rid.- Parameters:
rid- the new rid
-
getCreationDate
public Date getCreationDate()
Gets the creation date.- Returns:
- the creation date
-
setCreationDate
public void setCreationDate(Date creationDate)
Sets the creation date.- Parameters:
creationDate- the new creation date
-
getLastupdate
public Date getLastupdate()
Gets the lastupdate.- Returns:
- the lastupdate
-
setLastupdate
public void setLastupdate(Date lastupdate)
Sets the lastupdate.- Parameters:
lastupdate- the new lastupdate
-
-