final AttributeTransformationDescription description = attributeTransformations.get(attributeName);
if(description == null) {
context.invokeNext(operation);
return;
}
final TransformationContext ctx = context.getContext();
final ModelNode attributeValue = operation.get(ModelDescriptionConstants.VALUE);
//discard what can be discarded
if (description.shouldDiscard(address, attributeValue, operation, context)) {
context.recordTransformedOperation(OperationTransformer.DISCARD.transformOperation(ctx, address, operation));
return;