package net.sourceforge.fenixedu.domain.accessControl; import net.sourceforge.fenixedu.domain.ExecutionCourse; /** * Base group for every group that computes the elements from an * ExecutionCoursse. * * @author cfgi */ public abstract class ExecutionCourseGroup extends DomainBackedGroup { private static final long serialVersionUID = 1L; public ExecutionCourseGroup(ExecutionCourse executionCourse) { super(executionCourse); } public ExecutionCourse getExecutionCourse() { return getObject(); } public boolean hasExecutionCourse() { return getExecutionCourse() != null; } }