Class DefaultCheckersAndConverter
java.lang.Object
org.jboss.as.controller.transform.description.DiscardAttributeChecker.DefaultDiscardAttributeChecker
org.jboss.as.controller.transform.description.DefaultCheckersAndConverter
- All Implemented Interfaces:
AttributeConverter,DiscardAttributeChecker,RejectAttributeChecker
public abstract class DefaultCheckersAndConverter
extends DiscardAttributeChecker.DefaultDiscardAttributeChecker
implements RejectAttributeChecker, AttributeConverter
Utility class combining the functionality of
DiscardAttributeChecker.DefaultDiscardAttributeChecker, RejectAttributeChecker.DefaultRejectAttributeChecker
and AttributeConverter.DefaultAttributeConverter. Only the parts that are registered in BaseAttributeTransformationDescriptionBuilder will be used.- Author:
- Kabir Khan
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.jboss.as.controller.transform.description.AttributeConverter
AttributeConverter.DefaultAttributeConverter, AttributeConverter.FactoryNested classes/interfaces inherited from interface org.jboss.as.controller.transform.description.DiscardAttributeChecker
DiscardAttributeChecker.DefaultDiscardAttributeChecker, DiscardAttributeChecker.DiscardAttributeValueCheckerNested classes/interfaces inherited from interface org.jboss.as.controller.transform.description.RejectAttributeChecker
RejectAttributeChecker.DefaultRejectAttributeChecker, RejectAttributeChecker.ListRejectAttributeChecker, RejectAttributeChecker.ObjectFieldsRejectAttributeChecker, RejectAttributeChecker.SimpleAcceptAttributeChecker, RejectAttributeChecker.SimpleRejectAttributeChecker -
Field Summary
Fields inherited from class org.jboss.as.controller.transform.description.DiscardAttributeChecker.DefaultDiscardAttributeChecker
discardExpressions, discardUndefinedFields inherited from interface org.jboss.as.controller.transform.description.AttributeConverter
DEFAULT_VALUE, NAME_FROM_ADDRESSFields inherited from interface org.jboss.as.controller.transform.description.DiscardAttributeChecker
ALWAYS, DEFAULT_VALUE, UNDEFINEDFields inherited from interface org.jboss.as.controller.transform.description.RejectAttributeChecker
ALL, DEFINED, SIMPLE_EXPRESSIONS, UNDEFINED -
Constructor Summary
ConstructorsModifierConstructorDescriptionConstructor.protectedDefaultCheckersAndConverter(boolean discardExpressions, boolean discardUndefined) Constructor -
Method Summary
Modifier and TypeMethodDescriptionprotected booleancheckForExpression(org.jboss.dmr.ModelNode node) protected abstract voidconvertAttribute(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, TransformationContext context) Gets called by the default implementations ofconvertOperationParameter(PathAddress, String, ModelNode, ModelNode, TransformationContext)andconvertResourceAttribute(PathAddress, String, ModelNode, TransformationContext).voidconvertOperationParameter(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, org.jboss.dmr.ModelNode operation, TransformationContext context) Converts an operation parametervoidconvertResourceAttribute(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, TransformationContext context) Converts a resource attributeReturns the log message id used by this checker.protected abstract booleanrejectAttribute(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, TransformationContext context) Gets called by the default implementations of#rejectOperationParameter(String, ModelNode, ModelNode, TransformationContext)and#rejectResourceAttribute(String, ModelNode, TransformationContext).booleanrejectOperationParameter(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, org.jboss.dmr.ModelNode operation, TransformationContext context) Determines whether the given operation parameter value is not understandable by the target process and needs to be rejected.booleanrejectResourceAttribute(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, TransformationContext context) Gets whether the given resource attribute value is not understandable by the target process and needs to be rejected.Methods inherited from class org.jboss.as.controller.transform.description.DiscardAttributeChecker.DefaultDiscardAttributeChecker
isDiscardExpressions, isDiscardUndefined, isOperationParameterDiscardable, isResourceAttributeDiscardable, isValueDiscardableMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jboss.as.controller.transform.description.RejectAttributeChecker
getRejectionLogMessage
-
Constructor Details
-
DefaultCheckersAndConverter
protected DefaultCheckersAndConverter(boolean discardExpressions, boolean discardUndefined) Constructor- Parameters:
discardExpressions-trueif the attribute should be discarded if expressions are useddiscardUndefined-trueif the attribute should be discarded if expressions are used
-
DefaultCheckersAndConverter
public DefaultCheckersAndConverter()Constructor. Sets it up withdiscardExpressions==falseanddiscardUndefined==true
-
-
Method Details
-
convertOperationParameter
public void convertOperationParameter(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, org.jboss.dmr.ModelNode operation, TransformationContext context) Converts an operation parameter- Specified by:
convertOperationParameterin interfaceAttributeConverter- Parameters:
address- the address of the operationattributeName- the name of the operation parameterattributeValue- the value of the operation parameter to be convertedoperation- the operation executed. This is unmodifiable.context- the context of the transformation
-
convertResourceAttribute
public void convertResourceAttribute(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, TransformationContext context) Converts a resource attribute- Specified by:
convertResourceAttributein interfaceAttributeConverter- Parameters:
address- the address of the operationattributeName- the name of the attributeattributeValue- the value of the attribute to be convertedcontext- the context of the transformation
-
rejectOperationParameter
public boolean rejectOperationParameter(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, org.jboss.dmr.ModelNode operation, TransformationContext context) Determines whether the given operation parameter value is not understandable by the target process and needs to be rejected.- Specified by:
rejectOperationParameterin interfaceRejectAttributeChecker- Parameters:
address- the address of the operationattributeName- the name of the attributeattributeValue- the value of the attributeoperation- the operation executed. This is unmodifiable.context- the context of the transformation- Returns:
trueif the parameter value is not understandable by the target process and so needs to be rejected,falseotherwise.
-
rejectResourceAttribute
public boolean rejectResourceAttribute(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, TransformationContext context) Gets whether the given resource attribute value is not understandable by the target process and needs to be rejected.- Specified by:
rejectResourceAttributein interfaceRejectAttributeChecker- Parameters:
address- the address of the resourceattributeName- the name of the attributeattributeValue- the value of the attributecontext- the context of the transformation- Returns:
trueif the attribute value is not understandable by the target process and so needs to be rejected,falseotherwise.
-
getRejectionLogMessageId
Returns the log message id used by this checker. This is used to group it so that all attributes failing a type of rejction end up in the same error message. This default implementation uses the formatted log message with an empty attribute map as the id.- Specified by:
getRejectionLogMessageIdin interfaceRejectAttributeChecker- Returns:
- the log message id
-
checkForExpression
protected boolean checkForExpression(org.jboss.dmr.ModelNode node) -
rejectAttribute
protected abstract boolean rejectAttribute(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, TransformationContext context) Gets called by the default implementations of#rejectOperationParameter(String, ModelNode, ModelNode, TransformationContext)and#rejectResourceAttribute(String, ModelNode, TransformationContext).- Parameters:
address- the address of the operationattributeName- the name of the attributeattributeValue- the value of the attributecontext- the context of the transformation- Returns:
trueif the attribute or parameter value is not understandable by the target process and so needs to be rejected,falseotherwise.
-
convertAttribute
protected abstract void convertAttribute(PathAddress address, String attributeName, org.jboss.dmr.ModelNode attributeValue, TransformationContext context) Gets called by the default implementations ofconvertOperationParameter(PathAddress, String, ModelNode, ModelNode, TransformationContext)andconvertResourceAttribute(PathAddress, String, ModelNode, TransformationContext).- Parameters:
address- the address of the operation or resourceattributeName- the name of the attributeattributeValue- the value of the attributecontext- the context of the transformation
-