Annotation Type AutomapConstructor


@Documented @Retention(RUNTIME) @Target(CONSTRUCTOR) public @interface AutomapConstructor
The marker annotation that indicate a constructor for automatic mapping.

How to use:

public class User {

  private int id;
  private String name;

  public User(int id) {
    this.id = id;
  }

  @AutomapConstructor
  public User(int id, String name) {
    this.id = id;
    this.name = name;
  }
  // ...
}
Since:
3.4.3