Package org.eurekastreams.server.domain.dto

Examples of org.eurekastreams.server.domain.dto.DisplayInfoSettable


     */
    private void filterList(final List< ? extends DisplayInfoSettable> list, final Set<Long> allowedPeople)
    {
        for (int i = 0; i < list.size(); i++)
        {
            DisplayInfoSettable item = list.get(i);
            if (EntityType.PERSON.equals(item.getEntityType()) && !allowedPeople.contains(item.getEntityId()))
            {
                list.remove(i);
                i--;
            }
        }
View Full Code Here

TOP

Related Classes of org.eurekastreams.server.domain.dto.DisplayInfoSettable

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.