package dataQualityWebSite;

public class GroupElement 
{
	private int groupId;
	private String groupTitle;
	private String groupStatus;
	private int redCount;
	private int amberCount;
	private int greenCount;
	private int greyCount;

	public GroupElement()
	{
		;
	}
	
	public GroupElement
	(
		int groupId, 
		String groupTitle, 
		String groupStatus
	)
	{
		this.groupId = groupId;
		this.groupTitle = groupTitle;
		this.groupStatus = groupStatus;
	}
		
	public int getGroupId() 
	{
		return groupId;
	}
	
	public void setGroupId(int groupId) 
	{
		this.groupId = groupId;
	}
	
	public String getGroupStatus() 
	{
		return groupStatus;
	}
	
	public void setGroupStatus(String groupStatus) 
	{
		this.groupStatus = groupStatus;
	}
	
	public String getGroupTitle() 
	{
		return groupTitle;
	}
	
	public void setGroupTitle(String groupTitle) 
	{
		this.groupTitle = groupTitle;
	}

	public int getAmberCount()
	{
		return amberCount;
	}

	public void setAmberCount(int amberCount)
	{
		this.amberCount = amberCount;
	}

	public int getGreenCount()
	{
		return greenCount;
	}

	public void setGreenCount(int greenCount)
	{
		this.greenCount = greenCount;
	}

	public int getGreyCount()
	{
		return greyCount;
	}

	public void setGreyCount(int greyCount)
	{
		this.greyCount = greyCount;
	}

	public int getRedCount()
	{
		return redCount;
	}

	public void setRedCount(int redCount)
	{
		this.redCount = redCount;
	}
}