Package org.wildfly.extension.security.manager.deployment

Examples of org.wildfly.extension.security.manager.deployment.PermissionsParseProcessor


        // install the DUP responsible for parsing security permissions found in META-INF/permissions.xml.
        context.addStep(new AbstractDeploymentChainStep() {
            protected void execute(DeploymentProcessorTarget processorTarget) {
                 processorTarget.addDeploymentProcessor(Constants.SUBSYSTEM_NAME, Phase.PARSE, Phase.PARSE_PERMISSIONS,
                        new PermissionsParseProcessor(minimumSet, maximumSet));
            }
        }, OperationContext.Stage.RUNTIME);
    }
View Full Code Here

TOP

Related Classes of org.wildfly.extension.security.manager.deployment.PermissionsParseProcessor

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.