org.openurp.edu.program.model.ExecutiveCourseGroup Maven / Gradle / Ivy
/*
* OpenURP, Agile University Resource Planning Solution.
*
* Copyright © 2014, The OpenURP Software.
*
* 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
* (at your option) 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 .
*/
package org.openurp.edu.program.model;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.Cacheable;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.OrderBy;
import org.beangle.commons.collection.CollectUtils;
import org.beangle.commons.lang.Objects;
import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import org.openurp.code.edu.model.CourseType;
import org.openurp.base.edu.model.Direction;
/**
* 专业计划课程组.
*/
@Entity(name = "org.openurp.edu.program.model.ExecutiveCourseGroup")
@Cacheable
@Cache(region = "edu.course", usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class ExecutiveCourseGroup extends AbstractCourseGroup {
private static final long serialVersionUID = -6804554057069134031L;
/** 该组针对的专业方向 */
@ManyToOne(fetch = FetchType.LAZY)
private Direction direction;
public boolean isLeafGroup() {
return null != getGivenName();
}
/** 专业计划 */
@ManyToOne(targetEntity = ExecutivePlan.class)
@JoinColumn(name = "plan_id", updatable = false, insertable = false, nullable = false)
private CoursePlan plan;
/** 上级组 */
@ManyToOne(targetEntity = ExecutiveCourseGroup.class)
@JoinColumn(name = "parent_id", nullable = true)
private CourseGroup parent;
/** 下级组列表 */
@OneToMany(targetEntity = ExecutiveCourseGroup.class, cascade = { CascadeType.ALL })
@OrderBy("indexno")
@JoinColumn(name = "parent_id", nullable = true)
@Cache(region = "edu.course", usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
private List children = CollectUtils.newArrayList();
/** 计划课程列表 */
@OneToMany(mappedBy = "group", orphanRemoval = true, targetEntity = ExecutivePlanCourse.class, cascade = {
CascadeType.ALL })
@Cache(region = "edu.course", usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
private List planCourses = CollectUtils.newArrayList();
public void setPlanCourses(List planCourses) {
this.planCourses = planCourses;
}
public List getChildren() {
return children;
}
public void setChildren(List children) {
this.children = children;
}
public CoursePlan getPlan() {
return plan;
}
public void setPlan(CoursePlan plan) {
this.plan = plan;
}
/**
* 添加计划课程
*/
public void addPlanCourses(List givenPlanCourses) {
for (PlanCourse element : givenPlanCourses) {
boolean finded = false;
for (PlanCourse element2 : planCourses) {
if (element.getCourse().getId().equals(element2.getCourse().getId())) {
finded = true;
break;
}
}
if (!finded) {
element.setGroup(this);
planCourses.add(element);
}
}
}
public void updateCoursePlan(CoursePlan plan) {
setPlan(plan);
if (getChildren() != null) {
for (CourseGroup group : getChildren()) {
group.updateCoursePlan(plan);
}
}
}
/**
* 得到全部有效课程.
*/
public Object clone() throws CloneNotSupportedException {
ExecutiveCourseGroup executeCourseGroup = (ExecutiveCourseGroup) super.clone();
executeCourseGroup.setId(null);
executeCourseGroup.setParent(null);
executeCourseGroup.setChildren(new ArrayList());
executeCourseGroup.setPlanCourses(new ArrayList());
// 克隆引用共享组
return executeCourseGroup;
}
public List getExecutePlanCourses() {
return planCourses;
}
public List getPlanCourses() {
return planCourses;
}
public CourseGroup getParent() {
return parent;
}
public void setParent(CourseGroup parent) {
this.parent = parent;
}
public boolean equals(Object object) {
if (!(object instanceof ExecutiveCourseGroup)) { return false; }
ExecutiveCourseGroup rhs = (ExecutiveCourseGroup) object;
return Objects.equalsBuilder().add(this.id, rhs.id).isEquals();
}
private CourseType getParentCourseType() {
if (parent == null) {
return null;
} else {
return parent.getCourseType();
}
}
public boolean isSameGroup(Object object) {
if (!(object instanceof ExecutiveCourseGroup)) { return false; }
ExecutiveCourseGroup other = (ExecutiveCourseGroup) object;
// it will handle null value
return Objects.equalsBuilder().add(getCredits(), other.getCredits())
.add(getCourseType(), other.getCourseType()).add(getParentCourseType(), other.getParentCourseType())
.add(getRemark(), other.getRemark()).add(getTermCredits(), other.getTermCredits())
.add(getPlanCourses(), other.getPlanCourses()).isEquals();
}
public Direction getDirection() {
return direction;
}
public void setDirection(Direction direction) {
this.direction = direction;
}
@Override
public String toString() {
return "ExecuteCourseGroup [alias=" + getGivenName() + ", direction=" + direction + ", parent=" + parent
+ ", courseType=" + courseType + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy