コード例 #1
0
ファイル: User.java プロジェクト: BudiPrasetyo20/common
  @Override
  @Transient
  @JsonIgnore
  public <T extends CustomInfo> T getCustomInfo() throws Exception {

    return (T) userCustomInfoHandlerImpl.getCustomInfo(rawCustomInfo);
  }
コード例 #2
0
ファイル: User.java プロジェクト: BudiPrasetyo20/common
  @Override
  public <T extends CustomInfo> void setCustomInfo(T customInfo) throws Exception {

    rawCustomInfo = userCustomInfoHandlerImpl.getRawCustomInfo(customInfo);
  }