提交 b8f7e0fe 编写于 作者: J Joram Barrez

Add missing getters to HistoricActivityInstanceQueryImpl (see...

Add missing getters to HistoricActivityInstanceQueryImpl (see https://forums.activiti.org/content/switching-persistence-layer)
上级 d8bdee3e
......@@ -116,6 +116,10 @@ public class HistoricActivityInstanceQueryImpl extends AbstractQuery<HistoricAct
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return tenantId;
}
public HistoricActivityInstanceQueryImpl activityTenantIdLike(String tenantIdLike) {
if (tenantIdLike == null) {
......@@ -124,11 +128,19 @@ public class HistoricActivityInstanceQueryImpl extends AbstractQuery<HistoricAct
this.tenantIdLike = tenantIdLike;
return this;
}
public String getTenantIdLike() {
return tenantIdLike;
}
public HistoricActivityInstanceQueryImpl activityWithoutTenantId() {
this.withoutTenantId = true;
return this;
}
public boolean isWithoutTenantId() {
return withoutTenantId;
}
// ordering
// /////////////////////////////////////////////////////////////////
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册