org.strutsme.wishlist.persistence.dto
Interface WishDto

All Superinterfaces:
BaseDto
All Known Implementing Classes:
WishDtoImpl

public interface WishDto
extends BaseDto

The Wish DataTransferObject.


Method Summary
 java.lang.String getAuthorId()
           
 java.lang.String getBody()
           
 java.lang.Short getPriority()
          gets the priority of the wish.
 java.lang.String getSubject()
           
 void setAuthorId(java.lang.String authorId)
           
 void setBody(java.lang.String body)
           
 void setPriority(java.lang.Short priority)
          Sets the priority of the wish.
 void setSubject(java.lang.String subject)
           
 
Methods inherited from interface org.strutsme.wishlist.persistence.dto.BaseDto
getCreatedAt, getId, setCreatedAt, setId
 

Method Detail

getAuthorId

java.lang.String getAuthorId()
Returns:
the authorId

setAuthorId

void setAuthorId(java.lang.String authorId)
Parameters:
authorId - the authorId to set

getBody

java.lang.String getBody()
Returns:
the body

setBody

void setBody(java.lang.String body)
Parameters:
body - the body to set

getSubject

java.lang.String getSubject()
Returns:
the subject

setSubject

void setSubject(java.lang.String subject)
Parameters:
subject - the subject to set

getPriority

java.lang.Short getPriority()
gets the priority of the wish.

Returns:
the priority of the wish

setPriority

void setPriority(java.lang.Short priority)
Sets the priority of the wish.

Parameters:
priority - the priority to set