TSK-309: renamed id to workbasketId to prevent collision with HATEOAS Resource Support from Srping.

This commit is contained in:
Holger Hagen 2018-02-19 10:06:58 +01:00 committed by Martin Rojas Miguel Angel
parent 036c7f71b5
commit 072427d132
1 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ import pro.taskana.impl.WorkbasketType;
public class WorkbasketSummaryResource extends ResourceSupport {
public String id;
public String workbasketId;
@NotNull
public String key;
@ -29,10 +29,10 @@ public class WorkbasketSummaryResource extends ResourceSupport {
public String orgLevel3;
public String orgLevel4;
public WorkbasketSummaryResource(String id, String key, String name, String description, String owner,
public WorkbasketSummaryResource(String workbasketId, String key, String name, String description, String owner,
String domain, WorkbasketType type, String orgLevel1, String orgLevel2, String orgLevel3, String orgLevel4) {
super();
this.id = id;
this.workbasketId = workbasketId;
this.key = key;
this.name = name;
this.description = description;