When setting up an IDEA project for Seam's booking example I found that Idea complains about this code snippet:
@Basic @Temporal(TemporalType.DATE)
public Date getCheckinDate() {
The error is
More than one attribute configured for method 'getCheckinDate'
I double checked with the EJB3 spec, see section "9.1.20 Temporal Annotation":
"The Temporal annotation may be used in conjunction with the Basic annotation."
Description
When setting up an IDEA project for Seam's booking example I found that Idea complains about this code snippet:
@Basic @Temporal(TemporalType.DATE)
public Date getCheckinDate() {
The error is
More than one attribute configured for method 'getCheckinDate'
I double checked with the EJB3 spec, see section "9.1.20 Temporal Annotation":
"The Temporal annotation may be used in conjunction with the Basic annotation."