Annotation Type Discussion


  • @Retention(RUNTIME)
    @Target({FIELD,METHOD})
    public @interface Discussion
    Field that contains a discussion thread, just like the ones in forums, trackers, blogs, etc.

    The data type is String with a length of 32. Applies to properties.

    Example:

      @Discussion
      @Column(length=32)
      private String discussion;
     
    It's synonymous of @Stereotype("DISCUSSION").
    Since:
    6.6
    Author:
    Javier Paniza