Package org.sakaiproject.signup.restful
Class SignupParticipant
- java.lang.Object
-
- org.sakaiproject.signup.restful.SignupParticipant
-
public class SignupParticipant extends Object
This class holds the information of sign-up attendee. It's a wrapper class for RESTful case
-
-
Constructor Summary
Constructors Constructor Description SignupParticipant()ConstructorSignupParticipant(String attendeeUserId, String signupSiteId)This is a constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAttendeeUserId()get the internal user id (not username)StringgetComments()get the commentsStringgetDisplayName()StringgetSignupSiteId()get the site Id, which the attendee is inbooleanisAttended()voidsetAttended(boolean attended)voidsetAttendeeUserId(String attendeeId)this is a setter method and it set the internal user id (not username)voidsetComments(String comment)this is a setter.voidsetDisplayName(String displayName)voidsetSignupSiteId(String signupSiteId)this is a setter.
-
-
-
Method Detail
-
getAttendeeUserId
public String getAttendeeUserId()
get the internal user id (not username)
-
setAttendeeUserId
public void setAttendeeUserId(String attendeeId)
this is a setter method and it set the internal user id (not username)- Parameters:
attendeeId- the internal user id (not username)
-
getDisplayName
public String getDisplayName()
-
setDisplayName
public void setDisplayName(String displayName)
-
getSignupSiteId
public String getSignupSiteId()
get the site Id, which the attendee is in- Returns:
- a site Id
-
setSignupSiteId
public void setSignupSiteId(String signupSiteId)
this is a setter.- Parameters:
signupSiteId- a site Id
-
getComments
public String getComments()
get the comments- Returns:
- a comment string
-
setComments
public void setComments(String comment)
this is a setter.- Parameters:
comment- a comment by user
-
isAttended
public boolean isAttended()
- Returns:
- the attended
-
setAttended
public void setAttended(boolean attended)
- Parameters:
attended- the attended to set
-
-