提交 00e9c5e8 编写于 作者: F frederikheremans

Fixin namespace mismatch in some entity-mappings

上级 d0825c2f
......@@ -34,7 +34,7 @@ public class GetPropertiesCmd implements Command<Map<String, String>>, Serializa
public Map<String, String> execute(CommandContext commandContext) {
List<PropertyEntity> propertyEntities = commandContext
.getDbSqlSession()
.selectList("org.activiti.persistence.selectProperties");
.selectList("selectProperties");
Map<String, String> properties = new HashMap<String, String>();
for (PropertyEntity propertyEntity: propertyEntities) {
......
......@@ -110,7 +110,7 @@ public class JobManager extends AbstractManager {
@SuppressWarnings("unchecked")
public List<Job> findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page) {
final String query = "org.activiti.persistence.selectJobByQueryCriteria";
final String query = "selectJobByQueryCriteria";
return getDbSqlSession().selectList(query, jobQuery, page);
}
......@@ -119,11 +119,11 @@ public class JobManager extends AbstractManager {
Map<String, String> params = new HashMap<String, String>();
params.put("handlerType", jobHandlerType);
params.put("handlerConfiguration", jobHandlerConfiguration);
return getDbSqlSession().selectList("org.activiti.persistence.selectJobsByConfiguration", params);
return getDbSqlSession().selectList("selectJobsByConfiguration", params);
}
public long findJobCountByQueryCriteria(JobQueryImpl jobQuery) {
return (Long) getDbSqlSession().selectOne("org.activiti.persistence.selectJobCountByQueryCriteria", jobQuery);
return (Long) getDbSqlSession().selectOne("selectJobCountByQueryCriteria", jobQuery);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册