Package org.sakaiproject.signup.restful
Class SignupGroupItem
- java.lang.Object
-
- org.sakaiproject.signup.restful.SignupGroupItem
-
public class SignupGroupItem extends Object
This class holds the information of sign-up group. It's a wrapper class for SignupGroup
-
-
Constructor Summary
Constructors Constructor Description SignupGroupItem(String title, String groupId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetGroupId()StringgetTitle()get the title for the groupvoidsetGroupId(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
-
-