| Summary: | Add missing constructors in AbstractBoottimeAddStepHandler | |||
|---|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Emmanuel Hugonnet (ehsavoie) <ehugonne> | |
| Component: | Domain Management | Assignee: | Emmanuel Hugonnet (ehsavoie) <ehugonne> | |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Michal Karm Babacek <mbabacek> | |
| Severity: | high | Docs Contact: | Russell Dickenson <rdickens> | |
| Priority: | unspecified | |||
| Version: | 6.2.0 | CC: | brian.stansberry, cdewolf, emuckenh, kkhan, mbabacek, vtunka | |
| Target Milestone: | DR1 | |||
| Target Release: | EAP 6.3.0 | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1039875 (view as bug list) | Environment: | ||
| Last Closed: | 2014-06-28 15:40:54 UTC | Type: | Enhancement | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Bug Depends On: | ||||
| Bug Blocks: | 1039875 | |||
The fix is present, VERIFIED. |
org.jboss.as.controller.AbstractBoottimeAddStepHandler hasn't the same constructors as its super class. These have been created in Wildfly (commit c75e36a9) but they are missing from EAP. public AbstractBoottimeAddStepHandler() { } public AbstractBoottimeAddStepHandler(Collection<AttributeDefinition> attributes) { super(attributes); } public AbstractBoottimeAddStepHandler(AttributeDefinition... attributes) { super(attributes); } They are required for the EAP 5 retro-compatibility extension.