[VIVO-1031] Improve logged in performance by handling a bulk of faux properties statements at once, rather than one-by-one.

This commit is contained in:
grahamtriggs 2015-09-29 17:02:50 +01:00
parent 4883621236
commit 15cd6a8ac0
11 changed files with 87 additions and 67 deletions

View file

@ -209,7 +209,7 @@ public class IndividualStub implements Individual {
}
@Override
public void resolveAsFauxPropertyStatement(ObjectPropertyStatement stmt) {
public void resolveAsFauxPropertyStatements(List<ObjectPropertyStatement> list) {
// Nothing to do: no associated webappDaoFactory
}

View file

@ -231,9 +231,9 @@ public class ObjectPropertyStatementDaoStub implements
}
@Override
public void resolveAsFauxPropertyStatement(ObjectPropertyStatement stmt) {
public void resolveAsFauxPropertyStatements(List<ObjectPropertyStatement> list) {
throw new RuntimeException(
"ObjectPropertyStatementDaoStub.resolveAsFauxPropertyStatement() not implemented.");
"ObjectPropertyStatementDaoStub.resolveAsFauxPropertyStatements() not implemented.");
}
}