Annotation Type MAC


  • @Retention(RUNTIME)
    @Target({FIELD,METHOD})
    public @interface MAC
    String to store a media access control address (MAC address).

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

    Example:

      @MAC
      @Column(length=17)
      private String mac;
     
    It's synonymous of @Stereotype("MAC").
    Since:
    6.6
    Author:
    Javier Paniza