Bug 1039864 - Add missing constructors in AbstractBoottimeAddStepHandler
Summary: Add missing constructors in AbstractBoottimeAddStepHandler
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: JBoss Enterprise Application Platform 6
Classification: JBoss
Component: Domain Management
Version: 6.2.0
Hardware: Unspecified
OS: Unspecified
unspecified
high
Target Milestone: DR1
: EAP 6.3.0
Assignee: Emmanuel Hugonnet (ehsavoie)
QA Contact: Michal Karm Babacek
Russell Dickenson
URL:
Whiteboard:
Depends On:
Blocks: 1039875
TreeView+ depends on / blocked
 
Reported: 2013-12-10 08:25 UTC by Emmanuel Hugonnet (ehsavoie)
Modified: 2014-06-28 15:40 UTC (History)
6 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
: 1039875 (view as bug list)
Environment:
Last Closed: 2014-06-28 15:40:54 UTC
Type: Enhancement
Embargoed:


Attachments (Terms of Use)

Description Emmanuel Hugonnet (ehsavoie) 2013-12-10 08:25:02 UTC
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.

Comment 1 Emmanuel Hugonnet (ehsavoie) 2013-12-10 15:10:32 UTC
PR : https://github.com/jbossas/jboss-eap/pull/726

Comment 2 Michal Karm Babacek 2014-02-28 18:05:06 UTC
The fix is present, VERIFIED.


Note You need to log in before you can comment on or make changes to this bug.