[Minor] throw an exception for not implemented method

This commit is contained in:
Robert von Burg 2014-08-25 22:52:52 +02:00
parent 0b4a1a921c
commit d8a7231855
3 changed files with 7 additions and 7 deletions

View File

@ -82,7 +82,7 @@ public class XmlAuditDao implements AuditDao {
public long querySize(String type, DateRange dateRange) {
long size = 0;
// TODO re-think this nonsense... this has a huge performance penalty
// TODO re-think this nonsense... this might have a huge performance penalty
SubTypeRef subTypeRef = getTypeRef(type);
Set<String> keySet = this.tx.getMetadataDao().queryKeySet(subTypeRef);
for (String key : keySet) {
@ -191,7 +191,7 @@ public class XmlAuditDao implements AuditDao {
@Override
public <U> List<U> doQuery(AuditQuery query, AuditVisitor<U> auditVisitor) {
// TODO Auto-generated method stub
return null;
// TODO implement XML file based querying...
throw new UnsupportedOperationException("not yet implemented!");
}
}

View File

@ -37,7 +37,7 @@ public class XmlOrderDao extends AbstractDao<Order> implements OrderDao {
@Override
public <U> List<U> doQuery(OrderQuery query, OrderVisitor<U> orderVisitor) {
// TODO Auto-generated method stub
return null;
// TODO implement XML file based querying...
throw new UnsupportedOperationException("not yet implemented!");
}
}

View File

@ -37,7 +37,7 @@ public class XmlResourceDao extends AbstractDao<Resource> implements ResourceDao
@Override
public <U> List<U> doQuery(ResourceQuery query, ResourceVisitor<U> resourceVisitor) {
// TODO Auto-generated method stub
return null;
// TODO implement XML file based querying...
throw new UnsupportedOperationException("not yet implemented!");
}
}