Skip to content

Commit

Permalink
Merge pull request #1651 from Luis-Cruz/feature/ACDM-1775
Browse files Browse the repository at this point in the history
Abstraction for getting an identity validation password for candidades ACDM-1775 #resolve
  • Loading branch information
Luis-Cruz authored Aug 19, 2020
2 parents 65433e2 + 0880122 commit e3525b5
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@
*/
package org.fenixedu.academic.domain.candidacy;

import java.util.Collections;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import org.fenixedu.academic.domain.EntryPhase;
import org.fenixedu.academic.domain.ExecutionDegree;
import org.fenixedu.academic.domain.Person;
Expand All @@ -33,8 +28,16 @@
import org.fenixedu.academic.util.Bundle;
import org.fenixedu.bennu.core.i18n.BundleUtil;

import java.util.Collections;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.function.Function;

public class DegreeCandidacy extends DegreeCandidacy_Base {

public static Function<DegreeCandidacy, String> PASSWORD_FOR_IDENTITY_VALIDATION = candidacy -> null;

public DegreeCandidacy(final Person person, final ExecutionDegree executionDegree) {
super();
init(person, executionDegree);
Expand Down

0 comments on commit e3525b5

Please sign in to comment.