01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/sections/tags/sakai_2-4-1/sections-impl/standalone/src/java/org/sakaiproject/component/section/EnrollmentRecordImpl.java $
03: * $Id: EnrollmentRecordImpl.java 18134 2006-11-14 18:59:25Z jholtzman@berkeley.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2005, 2006 The Regents of the University of California and The Regents of the University of Michigan
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.component.section;
21:
22: import java.io.Serializable;
23:
24: import org.sakaiproject.section.api.coursemanagement.EnrollmentRecord;
25: import org.sakaiproject.section.api.coursemanagement.LearningContext;
26: import org.sakaiproject.section.api.coursemanagement.User;
27: import org.sakaiproject.section.api.facade.Role;
28:
29: /**
30: * A detachable EnrollmentRecord for persistent storage.
31: *
32: * @author <a href="mailto:jholtzman@berkeley.edu">Josh Holtzman</a>
33: *
34: */
35: public class EnrollmentRecordImpl extends ParticipationRecordImpl
36: implements EnrollmentRecord, Serializable {
37:
38: private static final long serialVersionUID = 1L;
39:
40: protected String status;
41:
42: /**
43: * No-arg constructor needed for hibernate
44: */
45: public EnrollmentRecordImpl() {
46: }
47:
48: public EnrollmentRecordImpl(LearningContext learningContext,
49: String status, User user) {
50: this .learningContext = learningContext;
51: this .status = status;
52: this .user = user;
53: }
54:
55: public Role getRole() {
56: return Role.STUDENT;
57: }
58:
59: public String getStatus() {
60: return status;
61: }
62:
63: public void setStatus(String status) {
64: this.status = status;
65: }
66: }
|