001/**
002 * Copyright 2005-2015 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.demo.uif.lookup;
017
018import org.apache.commons.collections.MapUtils;
019import org.kuali.rice.kim.impl.KIMPropertyConstants;
020import org.kuali.rice.kim.impl.group.GroupBo;
021import org.kuali.rice.kim.impl.identity.principal.PrincipalBo;
022import org.kuali.rice.kim.impl.role.RoleBo;
023import org.kuali.rice.krad.lookup.LookupUtils;
024import org.kuali.rice.krad.lookup.LookupableImpl;
025import org.kuali.rice.krad.lookup.LookupForm;
026
027import java.util.Collection;
028import java.util.List;
029import java.util.Map;
030
031/**
032 * @author Kuali Rice Team (rice.collab@kuali.org)
033 */
034public class UIRoleMemberLookupableImpl extends LookupableImpl {
035
036    @Override
037    public Collection<?> performSearch(LookupForm form, Map<String, String> searchCriteria, boolean bounded) {
038        // removed blank search values and decrypt any encrypted search values
039        Map<String, String> nonBlankSearchCriteria = processSearchCriteria(form, searchCriteria);
040        List<String> wildcardAsLiteralSearchCriteria = identifyWildcardDisabledFields(form, nonBlankSearchCriteria);
041
042        Integer searchResultsLimit = null;
043
044        if (bounded) {
045            searchResultsLimit = LookupUtils.getSearchResultsLimit(getDataObjectClass(), form);
046        }
047
048        Class<?> dataObjectClass = null;
049
050        if ("P".equals(MapUtils.getString(searchCriteria, KIMPropertyConstants.KimMember.MEMBER_TYPE_CODE))) {
051            dataObjectClass = PrincipalBo.class;
052        } else if ("G".equals(MapUtils.getString(searchCriteria, KIMPropertyConstants.KimMember.MEMBER_TYPE_CODE))) {
053            dataObjectClass = GroupBo.class;
054        } else if ("R".equals(MapUtils.getString(searchCriteria, KIMPropertyConstants.KimMember.MEMBER_TYPE_CODE))) {
055            dataObjectClass = RoleBo.class;
056        }
057
058        return getLookupService().findCollectionBySearchHelper(dataObjectClass, nonBlankSearchCriteria,
059                wildcardAsLiteralSearchCriteria, !bounded, searchResultsLimit);
060    }
061}