Examples of IProfileSelection


Examples of org.jasig.portal.layout.profile.IProfileSelection

    @PortalTransactional
    public void deleteProfileSelection(final IProfileSelection profileSelection) {

        Validate.notNull(profileSelection, "Cannot delete a null profileSelection.");

        final IProfileSelection persistentProfileSelection;

        if (getEntityManager().contains(profileSelection)) {
            persistentProfileSelection = profileSelection;
        } else {
            persistentProfileSelection = getEntityManager().merge(profileSelection);
View Full Code Here

Examples of org.jasig.portal.layout.profile.IProfileSelection

        if (! (object instanceof IProfileSelection)) {
            return false;
        }

        final IProfileSelection otherProfileSelection = (IProfileSelection) object;

        if (! this.profileFName.equals(otherProfileSelection.getProfileFName() )
            || ! this.userName.equals(otherProfileSelection.getProfileFName()) ) {
            return false;
        }

        return true;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.