/** * File ./src/main/java/de/lemo/dms/db/mapping/CourseResource.java * Lemo-Data-Management-Server for learning analytics. * Copyright (C) 2015 * Leonard Kappe, Andreas Pursian, Sebastian Schwarzrock, Boris Wenzlaff * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ /** * File ./main/java/de/lemo/dms/db/miningDBclass/CourseResource.java * Date 2014-02-05 * Project Lemo Learning Analytics */ package de.lemo.dms.db.mapping; import java.util.Map; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import javax.persistence.Transient; import de.lemo.dms.db.mapping.abstractions.ICourseLORelation; import de.lemo.dms.db.mapping.abstractions.IMapping; /** This class represents the relationship between courses and resources. */ @Entity @Table(name = "lemo_course_learning") public class CourseLearning implements IMapping, ICourseLORelation { private long id; private Course course; private LearningObj learning; public boolean equals(final IMapping o) { if (!(o instanceof CourseLearning)) { return false; } if ((o.getId() == this.getId()) && (o instanceof CourseLearning)) { return true; } return false; } @Override public int hashCode() { return (int) id; } /** * @return the course */ @ManyToOne(fetch=FetchType.LAZY) @JoinColumn(name="course_id") public Course getCourse() { return course; } /** * @param course the course to set */ public void setCourse(Course course) { this.course = course; } public void setCourse(final long course, final Map<Long, Course> courses, final Map<Long, Course> oldCourses) { if (courses.get(course) != null) { this.course = courses.get(course); courses.get(course).addCourseLearning(this); } if ((this.course == null) && (oldCourses.get(course) != null)) { this.course = oldCourses.get(course); oldCourses.get(course).addCourseLearning(this); } } public void setLearning(final long learningObject, final Map<Long, LearningObj> learningObjects, final Map<Long, LearningObj> oldLearningObjects) { if (learningObjects.get(learningObject) != null) { this.learning = learningObjects.get(learningObject); learningObjects.get(learningObject).addCourseLearningObject(this); } if ((this.learning == null) && (oldLearningObjects.get(learningObject) != null)) { this.learning = oldLearningObjects.get(learningObject); oldLearningObjects.get(learningObject).addCourseLearningObject(this); } } /** * @return the resource */ @ManyToOne(fetch=FetchType.LAZY) @JoinColumn(name="learning_id") public LearningObj getLearning() { return this.learning; } /** * @param learningObject the resource to set */ public void setLearning(LearningObj learning) { this.learning = learning; } /** * @return the id */ @Id public long getId() { return id; } /** * @param id the id to set */ public void setId(long id) { this.id = id; } @Override @Transient public String getType() { return this.getLearning().getInteractionType(); } }