01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/sam/trunk/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/AssessmentGradingSummaryIfc.java $
03: * $Id: AssessmentGradingSummaryIfc.java 9269 2006-05-10 21:31:31Z daisyf@stanford.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2004, 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the"License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.tool.assessment.data.ifc.grading;
21:
22: import java.util.Date;
23:
24: /**
25: * <p>Title: </p>
26: * <p>Description: </p>
27: * <p>Copyright: Copyright (c) 2007</p>
28: * <p>Company: </p>
29: * @author not attributable
30: * @version 1.0
31: */
32:
33: public interface StudentGradingSummaryIfc extends java.io.Serializable {
34: public Long getStudentGradingSummaryId();
35:
36: public void setStudentGradingSummaryId(Long studentGradingSummaryId);
37:
38: public Long getPublishedAssessmentId();
39:
40: public void setPublishedAssessmentId(Long publishedAssessmentId);
41:
42: public String getAgentId();
43:
44: public void setAgentId(String agentId);
45:
46: public Integer getNumberRetake();
47:
48: public void setNumberRetake(Integer numberRetake);
49:
50: public String getCreatedBy();
51:
52: public void setCreatedBy(String createdBy);
53:
54: public Date getCreatedDate();
55:
56: public void setCreatedDate(Date createdDate);
57:
58: public String getLastModifiedBy();
59:
60: public void setLastModifiedBy(String lastModifiedBy);
61:
62: public Date getLastModifiedDate();
63:
64: public void setLastModifiedDate(Date lastModifiedDate);
65:
66: }
|