Package org.openengsb.domain.userprojects.event

Examples of org.openengsb.domain.userprojects.event.UpdateRolesEvent


        events.raiseEvent(event);
    }

    private void syncRoles() {
        List<Role> roleList = modelManager.findRoles();
        UpdateRolesEvent event = new UpdateRolesEvent();
        event.setUpdatedRoles(roleList);
        events.raiseEvent(event);
    }
View Full Code Here

TOP

Related Classes of org.openengsb.domain.userprojects.event.UpdateRolesEvent

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.