/* * Copyright 2013 Amazon Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://aws.amazon.com/apache2.0 * * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES * OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and * limitations under the License. */ package com.amazonaws.eclipse.identitymanagement.group; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.forms.widgets.FormToolkit; import com.amazonaws.eclipse.explorer.identitymanagement.AbstractAddPolicyDialog; import com.amazonaws.services.identitymanagement.AmazonIdentityManagement; import com.amazonaws.services.identitymanagement.model.Group; import com.amazonaws.services.identitymanagement.model.PutGroupPolicyRequest; class AddGroupPolicyDialog extends AbstractAddPolicyDialog { private final Group group; public AddGroupPolicyDialog(AmazonIdentityManagement iam, Shell parentShell, FormToolkit toolkit, Group group, GroupPermissionTable groupPermissionTable) { super(iam, parentShell, toolkit, groupPermissionTable); this.group = group; } @Override protected void configureShell(Shell shell) { super.configureShell(shell); shell.setText("Manage Group Permission"); } protected void putPolicy(String policyName, String policyDoc) { iam.putGroupPolicy(new PutGroupPolicyRequest().withGroupName(group.getGroupName()).withPolicyName(policyName).withPolicyDocument(policyDoc)); } }