001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/sam/trunk/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/AssessmentGradingSummaryData.java $
003: * $Id: AssessmentGradingSummaryData.java 15083 2006-09-20 20:03:55Z lydial@stanford.edu $
004: ***********************************************************************************
005: *
006: * Copyright (c) 2007 The Sakai Foundation.
007: *
008: * Licensed under the Educational Community License, Version 1.0 (the"License");
009: * you may not use this file except in compliance with the License.
010: * You may obtain a copy of the License at
011: *
012: * http://www.opensource.org/licenses/ecl1.php
013: *
014: * Unless required by applicable law or agreed to in writing, software
015: * distributed under the License is distributed on an "AS IS" BASIS,
016: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017: * See the License for the specific language governing permissions and
018: * limitations under the License.
019: *
020: **********************************************************************************/package org.sakaiproject.tool.assessment.data.dao.grading;
021:
022: import java.util.Date;
023:
024: import org.sakaiproject.tool.assessment.data.ifc.grading.StudentGradingSummaryIfc;
025:
026: /**
027: * <p>Title: </p>
028: * <p>Description: </p>
029: * <p>Copyright: Copyright (c) 2007</p>
030: * <p>Company: </p>
031: * @author not attributable
032: * @version 1.0
033: */
034:
035: public class StudentGradingSummaryData implements
036: StudentGradingSummaryIfc {
037: private Long studentGradingSummaryId;
038: private Long publishedAssessmentId;
039: private String agentId;
040: private Integer numberRetake;
041: private String createdBy;
042: private Date createdDate;
043: private String lastModifiedBy;
044: private Date lastModifiedDate;
045:
046: public StudentGradingSummaryData() {
047: }
048:
049: public Long getStudentGradingSummaryId() {
050: return studentGradingSummaryId;
051: }
052:
053: public void setStudentGradingSummaryId(Long studentGradingSummaryId) {
054: this .studentGradingSummaryId = studentGradingSummaryId;
055: }
056:
057: public Long getPublishedAssessmentId() {
058: return publishedAssessmentId;
059: }
060:
061: public void setPublishedAssessmentId(Long publishedAssessmentId) {
062: this .publishedAssessmentId = publishedAssessmentId;
063: }
064:
065: public String getAgentId() {
066: return agentId;
067: }
068:
069: public void setAgentId(String agentId) {
070: this .agentId = agentId;
071: }
072:
073: public Integer getNumberRetake() {
074: return numberRetake;
075: }
076:
077: public void setNumberRetake(Integer numberRetake) {
078: this .numberRetake = numberRetake;
079: }
080:
081: public String getCreatedBy() {
082: return this .createdBy;
083: }
084:
085: public void setCreatedBy(String createdBy) {
086: this .createdBy = createdBy;
087: }
088:
089: public Date getCreatedDate() {
090: return this .createdDate;
091: }
092:
093: public void setCreatedDate(Date createdDate) {
094: this .createdDate = createdDate;
095: }
096:
097: public String getLastModifiedBy() {
098: return this .lastModifiedBy;
099: }
100:
101: public void setLastModifiedBy(String lastModifiedBy) {
102: this .lastModifiedBy = lastModifiedBy;
103: }
104:
105: public Date getLastModifiedDate() {
106: return this .lastModifiedDate;
107: }
108:
109: public void setLastModifiedDate(Date lastModifiedDate) {
110: this.lastModifiedDate = lastModifiedDate;
111: }
112: }
|