Example usage for com.amazonaws.services.identitymanagement.model ListGroupsRequest ListGroupsRequest

List of usage examples for com.amazonaws.services.identitymanagement.model ListGroupsRequest ListGroupsRequest

Introduction

In this page you can find the example usage for com.amazonaws.services.identitymanagement.model ListGroupsRequest ListGroupsRequest.

Prototype

ListGroupsRequest

Source Link

Usage

From source file:com.denismo.aws.iam.LDAPIAMPoller.java

License:Apache License

private void populateGroupsFromIAM() {
    AmazonIdentityManagementClient client = new AmazonIdentityManagementClient(credentials);

    try {/*from   w  ww.  j  av a2 s  .c  om*/
        ListGroupsResult res = client.listGroups();
        Set<String> groupNames = new HashSet<String>();
        while (true) {
            for (Group group : res.getGroups()) {
                try {
                    addGroup(group);
                    groupNames.add(group.getGroupName());
                    LOG.info("Added group " + group.getGroupName() + " at " + groupsDN);
                } catch (Throwable e) {
                    LOG.error("Exception processing group " + group.getGroupName(), e);
                }
            }
            if (res.isTruncated()) {
                res = client.listGroups(new ListGroupsRequest().withMarker(res.getMarker()));
            } else {
                break;
            }
        }
        removeDeletedGroups(groupNames);
    } finally {
        client.shutdown();
    }
}