Package org.jboss.as.controller

Examples of org.jboss.as.controller.AbstractAddStepHandler


    private IORASContextDefinition() {
        super(PathElement.pathElement(JacORBSubsystemConstants.SETTING, JacORBSubsystemConstants.IOR_AS_CONTEXT),
                JacORBExtension.getResourceDescriptionResolver(JacORBSubsystemConstants.IOR_SETTINGS,
                        JacORBSubsystemConstants.IOR_AS_CONTEXT),
                new AbstractAddStepHandler(ATTRIBUTES),
                ReloadRequiredRemoveStepHandler.INSTANCE);
    }
View Full Code Here


    private IORTransportConfigDefinition() {
        super(PathElement.pathElement(JacORBSubsystemConstants.SETTING, JacORBSubsystemConstants.IOR_TRANSPORT_CONFIG),
                JacORBExtension.getResourceDescriptionResolver(JacORBSubsystemConstants.IOR_SETTINGS,
                        JacORBSubsystemConstants.IOR_TRANSPORT_CONFIG),
                new AbstractAddStepHandler(ATTRIBUTES),
                ReloadRequiredRemoveStepHandler.INSTANCE);
    }
View Full Code Here

                    IORSASContextDefinition.INSTANCE));

    private IORSettingsDefinition() {
        super(PathElement.pathElement(JacORBSubsystemConstants.IOR_SETTINGS, JacORBSubsystemConstants.DEFAULT),
                JacORBExtension.getResourceDescriptionResolver(JacORBSubsystemConstants.IOR_SETTINGS),
                new AbstractAddStepHandler(), ReloadRequiredRemoveStepHandler.INSTANCE);
    }
View Full Code Here

    private IORSASContextDefinition() {
        super(PathElement.pathElement(JacORBSubsystemConstants.SETTING, JacORBSubsystemConstants.IOR_SAS_CONTEXT),
                JacORBExtension.getResourceDescriptionResolver(JacORBSubsystemConstants.IOR_SETTINGS,
                        JacORBSubsystemConstants.IOR_SAS_CONTEXT),
                new AbstractAddStepHandler(ATTRIBUTES),
                ReloadRequiredRemoveStepHandler.INSTANCE);
    }
View Full Code Here

            Arrays.asList(PermissionResourceDefinition.INSTANCE));


    PermissionSetResourceDefinition(final String setName) {
        super(PathElement.pathElement(setName, Constants.DEFAULT_VALUE), SecurityManagerExtension.getResolver(setName),
                new AbstractAddStepHandler(), ReloadRequiredRemoveStepHandler.INSTANCE);
        this.setName = setName;

    }
View Full Code Here

    static final PermissionResourceDefinition INSTANCE = new PermissionResourceDefinition();

    private PermissionResourceDefinition() {
        super(PathElement.pathElement(PERMISSION), SecurityManagerExtension.getResolver(PERMISSION),
                new AbstractAddStepHandler(ATTRIBUTES), ReloadRequiredRemoveStepHandler.INSTANCE);
    }
View Full Code Here

            Arrays.asList(new PermissionSetResourceDefinition(Constants.MINIMUM_SET),
                    new PermissionSetResourceDefinition(Constants.MAXIMUM_SET)));

    private DeploymentPermissionsResourceDefinition() {
        super(DEPLOYMENT_PERMISSIONS_PATH, SecurityManagerExtension.getResolver(Constants.DEPLOYMENT_PERMISSIONS),
                new AbstractAddStepHandler(), ReloadRequiredRemoveStepHandler.INSTANCE);
    }
View Full Code Here

    ));

    private HandlerDefinitions() {
        super(UndertowExtension.PATH_HANDLERS,
                UndertowExtension.getResolver(Constants.HANDLER),
                new AbstractAddStepHandler(),
                ReloadRequiredRemoveStepHandler.INSTANCE
        );
    }
View Full Code Here

    ));

    private FilterDefinitions() {
        super(UndertowExtension.PATH_FILTERS,
                UndertowExtension.getResolver(Constants.FILTER),
                new AbstractAddStepHandler(),
                ReloadRequiredRemoveStepHandler.INSTANCE
        );
    }
View Full Code Here

    @Override
    public void registerOperations(ManagementResourceRegistration resourceRegistration) {
        super.registerOperations(resourceRegistration);
        if (resourceRegistration.getOperationEntry(PathAddress.EMPTY_ADDRESS, ModelDescriptionConstants.ADD) == null) {
            registerAddOperation(resourceRegistration, new AbstractAddStepHandler(getAttributes()), OperationEntry.Flag.RESTART_RESOURCE_SERVICES);
        }
        if (resourceRegistration.getOperationEntry(PathAddress.EMPTY_ADDRESS, ModelDescriptionConstants.REMOVE) == null) {
            registerRemoveOperation(resourceRegistration, new DefaultHandlerRemove(), OperationEntry.Flag.RESTART_RESOURCE_SERVICES);
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.controller.AbstractAddStepHandler

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.