[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:
parent
4883621236
commit
15cd6a8ac0
11 changed files with 87 additions and 67 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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.");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue