Skip to content

Commit

Permalink
Merge pull request #8765 from kabir/WFLY-6340
Browse files Browse the repository at this point in the history
[WFLY-6340] Adding deployment permissions should put server in reload…
  • Loading branch information
n1hility committed Mar 17, 2016
2 parents 97f8a23 + 84b683d commit 8ff050a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -34,12 +34,12 @@
import java.util.Collection;
import java.util.Collections;

import org.jboss.as.controller.AbstractAddStepHandler;
import org.jboss.as.controller.AttributeDefinition;
import org.jboss.as.controller.ObjectListAttributeDefinition;
import org.jboss.as.controller.ObjectTypeAttributeDefinition;
import org.jboss.as.controller.PathElement;
import org.jboss.as.controller.PersistentResourceDefinition;
import org.jboss.as.controller.ReloadRequiredAddStepHandler;
import org.jboss.as.controller.ReloadRequiredRemoveStepHandler;
import org.jboss.as.controller.SimpleAttributeDefinition;
import org.jboss.as.controller.SimpleAttributeDefinitionBuilder;
Expand Down Expand Up @@ -102,7 +102,7 @@ class DeploymentPermissionsResourceDefinition extends PersistentResourceDefiniti

private DeploymentPermissionsResourceDefinition() {
super(DEPLOYMENT_PERMISSIONS_PATH, SecurityManagerExtension.getResolver(Constants.DEPLOYMENT_PERMISSIONS),
new AbstractAddStepHandler(ATTRIBUTES), ReloadRequiredRemoveStepHandler.INSTANCE);
new ReloadRequiredAddStepHandler(ATTRIBUTES), ReloadRequiredRemoveStepHandler.INSTANCE);
}

@Override
Expand Down

0 comments on commit 8ff050a

Please sign in to comment.