Class SignupParticipant


  • public class SignupParticipant
    extends Object

    This class holds the information of sign-up attendee. It's a wrapper class for RESTful case

    • Constructor Detail

      • SignupParticipant

        public SignupParticipant()
        Constructor
      • SignupParticipant

        public SignupParticipant​(String attendeeUserId,
                                 String signupSiteId)
        This is a constructor
        Parameters:
        attendeeUserId - the internal user id (not username)
        signupSiteId - a unique id which represents the current site
    • 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