/* * JBoss, Home of Professional Open Source. * Copyright 2017, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.wildfly.test.security.common.elytron; import org.jboss.as.controller.PathAddress; import org.jboss.as.controller.client.ModelControllerClient; import org.jboss.as.controller.operations.common.Util; import org.jboss.as.test.integration.management.util.CLIWrapper; import org.jboss.as.test.integration.security.common.Utils; import org.jboss.dmr.ModelNode; /** * Configuration for constant-permission-mapper Elytron resource. * * @author Josef Cacek */ public class ConstantPermissionMapper extends AbstractConfigurableElement implements PermissionMapper { private static final String CONSTANT_PERMISSION_MAPPER = "constant-permission-mapper"; private static final PathAddress PATH_ELYTRON = PathAddress.pathAddress().append("subsystem", "elytron"); private final PermissionRef[] permissions; private ConstantPermissionMapper(Builder builder) { super(builder); this.permissions = builder.permissions; } @Override public void create(ModelControllerClient client, CLIWrapper cli) throws Exception { ModelNode op = Util.createAddOperation(PATH_ELYTRON.append(CONSTANT_PERMISSION_MAPPER, name)); if (permissions != null) { ModelNode permissionsNode = op.get("permissions"); for (PermissionRef permissionRef : permissions) { ModelNode permissionRefNode = new ModelNode(); permissionRefNode.get("class-name").set(permissionRef.getClassName()); setAttribute(permissionRefNode, "module", permissionRef.getModule()); setAttribute(permissionRefNode, "target-name", permissionRef.getTargetName()); setAttribute(permissionRefNode, "action", permissionRef.getAction()); permissionsNode.add(permissionRefNode); } } Utils.applyUpdate(op, client); } @Override public void remove(ModelControllerClient client, CLIWrapper cli) throws Exception { Utils.applyUpdate(Util.createRemoveOperation(PATH_ELYTRON.append(CONSTANT_PERMISSION_MAPPER, name)), client); } private void setAttribute(ModelNode node, String attribute, String value) { if (value != null) { node.get(attribute).set(value); } } public static Builder builder() { return new Builder(); } /** * Builder for this class. */ public static final class Builder extends AbstractConfigurableElement.Builder<ConstantPermissionMapper.Builder> { private PermissionRef[] permissions; private Builder() { } @Override protected Builder self() { return this; } public ConstantPermissionMapper build() { return new ConstantPermissionMapper(this); } public Builder withPermissions(PermissionRef... permissions) { this.permissions = permissions; return this; } } }