Class BaseHttpInterfaceAddStepHandler
- java.lang.Object
-
- org.jboss.as.controller.AbstractAddStepHandler
-
- org.jboss.as.controller.management.ManagementInterfaceAddStepHandler
-
- org.jboss.as.controller.management.BaseHttpInterfaceAddStepHandler
-
- All Implemented Interfaces:
OperationDescriptor,OperationStepHandler
public abstract class BaseHttpInterfaceAddStepHandler extends ManagementInterfaceAddStepHandler
The base add handler for the HTTP Management Interface.- Author:
- Darran Lofthouse
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.jboss.as.controller.AbstractAddStepHandler
AbstractAddStepHandler.Parameters
-
-
Field Summary
Fields Modifier and Type Field Description protected static StringSSL_CONTEXT_CAPABILITY-
Fields inherited from class org.jboss.as.controller.management.ManagementInterfaceAddStepHandler
MANAGEMENT_INTERFACE_KEY
-
Fields inherited from class org.jboss.as.controller.AbstractAddStepHandler
attributes
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBaseHttpInterfaceAddStepHandler(AttributeDefinition[] attributeDefinitions)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract List<org.jboss.msc.service.ServiceName>installServices(OperationContext context, HttpInterfaceCommonPolicy commonPolicy, org.jboss.dmr.ModelNode model)voidperformRuntime(OperationContext context, org.jboss.dmr.ModelNode operation, org.jboss.dmr.ModelNode model)Make any runtime changes necessary to effect the changes indicated by the givenoperation.protected voidpopulateModel(org.jboss.dmr.ModelNode operation, org.jboss.dmr.ModelNode model)Populate the given node in the persistent configuration model based on the values in the given operation.-
Methods inherited from class org.jboss.as.controller.management.ManagementInterfaceAddStepHandler
addVerifyInstallationStep, asStringIfDefined, requiresRuntime
-
Methods inherited from class org.jboss.as.controller.AbstractAddStepHandler
createResource, createResource, execute, getAttributes, performRuntime, populateModel, populateModel, recordCapabilitiesAndRequirements, rollbackRuntime, rollbackRuntime
-
-
-
-
Field Detail
-
SSL_CONTEXT_CAPABILITY
protected static final String SSL_CONTEXT_CAPABILITY
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BaseHttpInterfaceAddStepHandler
protected BaseHttpInterfaceAddStepHandler(AttributeDefinition[] attributeDefinitions)
-
-
Method Detail
-
populateModel
protected void populateModel(org.jboss.dmr.ModelNode operation, org.jboss.dmr.ModelNode model) throws OperationFailedExceptionDescription copied from class:AbstractAddStepHandlerPopulate the given node in the persistent configuration model based on the values in the given operation. This method is invoked duringOperationContext.Stage.MODEL.This default implementation invokes
AttributeDefinition.validateAndSet(org.jboss.dmr.ModelNode, org.jboss.dmr.ModelNode)on any attributes passed to the constructor.- Overrides:
populateModelin classAbstractAddStepHandler- Parameters:
operation- the operationmodel- persistent configuration model node that corresponds to the address ofoperation- Throws:
OperationFailedException- ifoperationis invalid or populating the model otherwise fails
-
performRuntime
public void performRuntime(OperationContext context, org.jboss.dmr.ModelNode operation, org.jboss.dmr.ModelNode model) throws OperationFailedException
Description copied from class:AbstractAddStepHandlerMake any runtime changes necessary to effect the changes indicated by the givenoperation. Executes afterAbstractAddStepHandler.populateModel(org.jboss.dmr.ModelNode, org.jboss.dmr.ModelNode), so the givenresourceparameter will reflect any changes made in that method. This method is invoked duringOperationContext.Stage.RUNTIME. Subclasses that wish to make changes to runtime services should override this method or theAbstractAddStepHandler.performRuntime(OperationContext, org.jboss.dmr.ModelNode, org.jboss.as.controller.registry.Resource)variant.- Overrides:
performRuntimein classAbstractAddStepHandler- Parameters:
context- the operation contextoperation- the operation being executedmodel- persistent configuration model from the resource that corresponds to the address ofoperation- Throws:
OperationFailedException- ifoperationis invalid or updating the runtime otherwise fails
-
installServices
protected abstract List<org.jboss.msc.service.ServiceName> installServices(OperationContext context, HttpInterfaceCommonPolicy commonPolicy, org.jboss.dmr.ModelNode model) throws OperationFailedException
- Throws:
OperationFailedException
-
-