Package org.fenixedu.academic.domain

Examples of org.fenixedu.academic.domain.PublicCandidacyHashCode


        return mapping.findForward("success");
    }

    private Person readPersonByCandidacyHashCode(String hashCode) {
        if (!StringUtils.isEmpty(hashCode)) {
            PublicCandidacyHashCode publicCandidacyHashCode = PublicCandidacyHashCode.getPublicCandidacyCodeByHash(hashCode);
            return publicCandidacyHashCode != null ? Person.readPersonByEmailAddress(publicCandidacyHashCode.getEmail()) : null;
        }
        return null;
    }
View Full Code Here


                new ArrayList<PublicCandidacyHashCode>(CollectionUtils.select(Bennu.getInstance().getCandidacyHashCodesSet(),
                        new org.apache.commons.collections.Predicate() {

                            @Override
                            public boolean evaluate(Object arg0) {
                                final PublicCandidacyHashCode hashCode = (PublicCandidacyHashCode) arg0;
                                return hashCode.isFromDegreeOffice() && !hashCode.hasCandidacyProcess();
                            }
                        }));

        return publicCandidacyHashCodeList;
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.PublicCandidacyHashCode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.