Annotation Interface IP


@Retention(RUNTIME) @Target({FIELD,METHOD}) public @interface IP
String used to store a IP address.

The data type is String with 15 for length. Applies to properties.

Example:

  @IP
  @Column(length=15)
  private String ip;
 
It's synonymous of @Stereotype("IP").
Since:
6.6
Author:
Javier Paniza