Skip to content

Commit

Permalink
Merge pull request wildfly#17504 from pferraro/WFLY-18868
Browse files Browse the repository at this point in the history
WFLY-18868 Ensure MMR delegates implement getStability()
  • Loading branch information
pferraro authored Dec 21, 2023
2 parents ccdd66b + b9b57ac commit 01550ae
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import org.jboss.as.controller.transform.OperationTransformer;
import org.jboss.as.controller.transform.ResourceTransformer;
import org.jboss.as.controller.transform.TransformersSubRegistration;
import org.jboss.as.version.Stability;
import org.jboss.staxmapper.XMLElementWriter;

/**
Expand Down Expand Up @@ -90,4 +91,9 @@ public R registerSubsystemModel(ResourceDefinition definition) {
public R registerDeploymentModel(ResourceDefinition definition) {
return this.decorator.apply(this.registration.registerDeploymentModel(definition));
}

@Override
public Stability getStability() {
return this.registration.getStability();
}
}

0 comments on commit 01550ae

Please sign in to comment.