Examples of addOperationValidationExclude()


Examples of org.jboss.as.subsystem.test.LegacyKernelServicesInitializer.addOperationValidationExclude()

            .addMavenResourceURL("org.jboss.as:jboss-as-transactions:" + controllerVersion.getMavenGavVersion())
            .configureReverseControllerCheck(AdditionalInitialization.MANAGEMENT, ADD_REMOVED_HORNETQ_STORE_ENABLE_ASYNC_IO, RemoveProcessUUIDOperationFixer.INSTANCE)
            .excludeFromParent(SingleClassFilter.createFilter(TransactionLogger.class));
        if (controllerVersion == ModelTestControllerVersion.EAP_6_0_0) {
            //EAP_6_0_0 does not have OperationFixer, so disable the validation of the ADD operation
            init.addOperationValidationExclude(ADD, subsystemAddress);
        } else {
            init.addOperationValidationFixer(ADD, subsystemAddress, RemoveProcessUUIDOperationFixer.INSTANCE)
            .addSingleChildFirstClass(RemoveProcessUUIDOperationFixer.class);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.