Port DS-3579_Context-mode-and-cache-management-CLI-commands to master

This commit is contained in:
Tom Desair
2017-06-28 14:49:11 -07:00
parent 207a9e64be
commit 10e028918a
37 changed files with 398 additions and 388 deletions

View File

@@ -21,6 +21,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import java.io.IOException;
import java.sql.SQLException;
import java.util.Iterator;
import java.util.List;
/**
@@ -98,7 +99,7 @@ public class MetadataValueServiceImpl implements MetadataValueService {
}
@Override
public List<MetadataValue> findByValueLike(Context context, String value) throws SQLException {
public Iterator<MetadataValue> findByValueLike(Context context, String value) throws SQLException {
return metadataValueDAO.findByValueLike(context, value);
}