package net.sourceforge.fenixedu.domain.student.registrationStates; import net.sourceforge.fenixedu.domain.Person; import net.sourceforge.fenixedu.domain.student.Registration; import org.joda.time.DateTime; import com.linkare.commons.metainfo.Linkare; /** * * @author - Shezad Anavarali (shezad@ist.utl.pt) * */ @Linkare(author = "Paulo Zenida", comments = "Removed the method getValidStates() since the default implementation now delegates on the enum type.") public class InternalAbandonState extends InternalAbandonState_Base { protected InternalAbandonState(Registration registration, Person person, DateTime dateTime) { super(); init(registration, person, dateTime); } @Override public RegistrationStateType getStateType() { return RegistrationStateType.INTERNAL_ABANDON; } }