Package org.eurekastreams.server.domain

Examples of org.eurekastreams.server.domain.SystemSettings


        // determine if userActionRequests should be queued.
        boolean queueCreatePerson = createPersonActionKey != null && !createPersonActionKey.isEmpty();
        boolean queueLockAccounts = lockPersonActionKey != null && !lockPersonActionKey.isEmpty();

        // get system setting to determine if emails should be sent to created users.
        SystemSettings settings = settingsMapper.execute(null);
        boolean shouldSendEmail = settings.getSendWelcomeEmails();

        // counts for summary log.
        int toLock = 0;
        int toUnlock = 0;
        int toCreate = 0;
View Full Code Here


        // Even though the membership criteria (a.k.a. ldapGroups form field) are passed in, they don't need
        // to be processed here since they are persisted to the database immediately when added in the UI.
        fields.remove("ldapGroups");
        fields.remove("admins");
        SystemSettings systemSettings = finder.execute(null);

        // set the properties on the system settings
        updater.setProperties(systemSettings, fields);

        // persist the settings
View Full Code Here

TOP

Related Classes of org.eurekastreams.server.domain.SystemSettings

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.