Package org.sakaiproject.signup.model
Class SignupGroup
- java.lang.Object
-
- org.sakaiproject.signup.model.SignupGroup
-
public class SignupGroup extends Object
This class holds the information for signup group. It's mapped directly to the DB storage by Hibernate
-
-
Constructor Summary
Constructors Constructor Description SignupGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCalendarEventId()get the Calendar Event IdStringgetCalendarId()get the Calendar IdStringgetGroupId()StringgetTitle()get the title for the groupvoidsetCalendarEventId(String calendarEventId)this is a setter.voidsetCalendarId(String calendarId)this is a setter.voidsetGroupId(String groupId)this is a setter.voidsetTitle(String title)this is a setter.
-
-
-
Method Detail
-
getGroupId
public String getGroupId()
-
setGroupId
public void setGroupId(String groupId)
this is a setter.- Parameters:
groupId- a unique group Id
-
getTitle
public String getTitle()
get the title for the group- Returns:
- a title
-
setTitle
public void setTitle(String title)
this is a setter.- Parameters:
title- a name for this group
-
getCalendarEventId
public String getCalendarEventId()
get the Calendar Event Id- Returns:
- the Calendar Event Id
-
setCalendarEventId
public void setCalendarEventId(String calendarEventId)
this is a setter.- Parameters:
calendarEventId- the Calendar Event Id
-
getCalendarId
public String getCalendarId()
get the Calendar Id- Returns:
- a Calendar Id
-
setCalendarId
public void setCalendarId(String calendarId)
this is a setter.- Parameters:
calendarId- a unique calendar Id
-
-