Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/JoinColumnOrFormula.java:40: incompatible types
  2. found : org.hibernate.annotations.JoinFormula
  3. required: org.hibernate.annotations.JoinFormula
  4. JoinFormula formula() default @JoinFormula(value="", referencedColumnName="");
  5. ^
  6. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/JoinColumnOrFormula.java:41: incompatible types
  7. found : javax.persistence.JoinColumn
  8. required: javax.persistence.JoinColumn
  9. JoinColumn column() default @JoinColumn();
  10. ^
  11. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/Entity.java:51: incompatible types
  12. found : org.hibernate.annotations.PolymorphismType
  13. required: org.hibernate.annotations.PolymorphismType
  14. PolymorphismType polymorphism() default PolymorphismType.IMPLICIT;
  15. ^
  16. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/Entity.java:55: incompatible types
  17. found : org.hibernate.annotations.OptimisticLockType
  18. required: org.hibernate.annotations.OptimisticLockType
  19. OptimisticLockType optimisticLock() default OptimisticLockType.VERSION;
  20. ^
  21. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/Table.java:57: incompatible types
  22. found : org.hibernate.annotations.ForeignKey
  23. required: org.hibernate.annotations.ForeignKey
  24. ForeignKey foreignKey() default @ForeignKey( name="" );
  25. ^
  26. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/Table.java:70: incompatible types
  27. found : org.hibernate.annotations.FetchMode
  28. required: org.hibernate.annotations.FetchMode
  29. FetchMode fetch() default FetchMode.JOIN;
  30. ^
  31. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/Table.java:92: incompatible types
  32. found : org.hibernate.annotations.SQLInsert
  33. required: org.hibernate.annotations.SQLInsert
  34. SQLInsert sqlInsert() default @SQLInsert(sql="");
  35. ^
  36. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/Table.java:99: incompatible types
  37. found : org.hibernate.annotations.SQLUpdate
  38. required: org.hibernate.annotations.SQLUpdate
  39. SQLUpdate sqlUpdate() default @SQLUpdate(sql="");
  40. ^
  41. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/Table.java:106: incompatible types
  42. found : org.hibernate.annotations.SQLDelete
  43. required: org.hibernate.annotations.SQLDelete
  44. SQLDelete sqlDelete() default @SQLDelete(sql="");
  45. ^
  46. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/SQLInsert.java:53: incompatible types
  47. found : org.hibernate.annotations.ResultCheckStyle
  48. required: org.hibernate.annotations.ResultCheckStyle
  49. ResultCheckStyle check() default ResultCheckStyle.NONE;
  50. ^
  51. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/SQLUpdate.java:54: incompatible types
  52. found : org.hibernate.annotations.ResultCheckStyle
  53. required: org.hibernate.annotations.ResultCheckStyle
  54. ResultCheckStyle check() default ResultCheckStyle.NONE;
  55. ^
  56. /Users/jpav/hibernate/hibernate-core/hibernate-core/src/main/java/org/hibernate/annotations/SQLDelete.java:53: incompatible types
  57. found : org.hibernate.annotations.ResultCheckStyle
  58. required: org.hibernate.annotations.ResultCheckStyle
  59. ResultCheckStyle check() default ResultCheckStyle.NONE;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement