Bug 1326333 - [GSS](6.4.z) Default group sequence does not honour group hierarchy
Summary: [GSS](6.4.z) Default group sequence does not honour group hierarchy
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: JBoss Enterprise Application Platform 6
Classification: JBoss
Component: Hibernate
Version: 6.4.5
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: CR1
: EAP 6.4.9
Assignee: Gail Badner
QA Contact: Martin Simka
URL:
Whiteboard:
Depends On:
Blocks: 1307264 eap649-payload 1326334
TreeView+ depends on / blocked
 
Reported: 2016-04-12 12:56 UTC by Tom Ross
Modified: 2019-11-14 07:46 UTC (History)
7 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
: 1326334 (view as bug list)
Environment:
Last Closed:
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Tom Ross 2016-04-12 12:56:40 UTC
Backport of HV-1055 (https://hibernate.atlassian.net/browse/HV-1055)

Assuming the following
public interface Min {}

public interface Max extends Min {}

@GroupSequence({Max.class, A.class})
public class A {
    @NotNull(groups=Max.class)
    public String foo;

    @NotNull(groups=Min.class)
    public String bar;
}

public class B {
    @NotNull(groups=Max.class)
    public String foo;

    @NotNull(groups=Min.class)
    public String bar;
}
The following code returns as expected
assert validator.validate(new B(), Max.class, B.class).size() == 2
But the following fails
// bar is ignored as Min is not considered when Max is evaluated for default sequence
// so size == 1
assert validator.validate(new A(), Max.class, A.class).size() == 2
Note that the actual test used group sequence provider but that's not relevant I think.

Comment 4 Jiří Bílek 2016-06-27 14:08:27 UTC
Verified with EAP 6.4.9.CP.CR2

Comment 5 Petr Penicka 2017-01-17 12:59:35 UTC
Retroactively bulk-closing issues from released EAP 6.4 cummulative patches.

Comment 6 Petr Penicka 2017-01-17 12:59:37 UTC
Retroactively bulk-closing issues from released EAP 6.4 cummulative patches.


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