Package org.mifosplatform.portfolio.group.data

Examples of org.mifosplatform.portfolio.group.data.GroupRoleData


        final ApiRequestJsonSerializationSettings settings = this.apiRequestParameterHelper.process(uriInfo.getQueryParameters());

        // associations
        Collection<ClientData> membersOfGroup = null;
        Collection<GroupRoleData> groupRoles = null;
        GroupRoleData selectedRole = null;
        Collection<CalendarData> calendars = null;
        CalendarData collectionMeetingCalendar = null;

        if (!associationParameters.isEmpty()) {
            if (associationParameters.contains("all")) {
View Full Code Here


            final Long clientId = JdbcSupport.getLong(rs, "clientId");
            final String clientName = rs.getString("clientName");
            final Long roleId = JdbcSupport.getLong(rs, "roleId");
            final String roleName = rs.getString("roleName");
            final CodeValueData role = CodeValueData.instance(roleId, roleName);
            return new GroupRoleData(id, role, clientId, clientName);
        }
View Full Code Here

TOP

Related Classes of org.mifosplatform.portfolio.group.data.GroupRoleData

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.