Package org.eurekastreams.server.persistence.mappers.requests

Examples of org.eurekastreams.server.persistence.mappers.requests.GetPendingDomainGroupsRequest


        context.checking(new Expectations()
        {
            {
                oneOf(actionMapper).execute(
                        with(IsEqualInternally.equalInternally(new GetPendingDomainGroupsRequest(startIndex,
                                endIndex))));
                will(returnValue(expectedReturnValue));
            }
        });
View Full Code Here


    @Override
    public Serializable execute(final ActionContext inActionContext)
    {
        GetPendingGroupsRequest actionRequest = (GetPendingGroupsRequest) inActionContext.getParams();

        GetPendingDomainGroupsRequest request = new GetPendingDomainGroupsRequest(actionRequest.getStartIndex(),
                actionRequest.getEndIndex());

        PagedSet<DomainGroupModelView> pendingGroups = actionMapper.execute(request);

        if (log.isTraceEnabled())
View Full Code Here

TOP

Related Classes of org.eurekastreams.server.persistence.mappers.requests.GetPendingDomainGroupsRequest

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.