19 package org.sleuthkit.autopsy.centralrepository.datamodel;
21 import java.sql.ResultSet;
22 import java.sql.SQLException;
36 void process(ResultSet resultSet);
45 static int getId(ResultSet resultSet)
throws SQLException{
46 return resultSet.getInt(
"id");
55 static int getCaseId(ResultSet resultSet)
throws SQLException {
56 return resultSet.getInt(
"case_id");
66 return resultSet.getInt(
"data_source_id");
75 static String
getValue(ResultSet resultSet)
throws SQLException {
76 return resultSet.getString(
"value");
85 static String
getFilePath(ResultSet resultSet)
throws SQLException {
86 return resultSet.getString(
"file_path");
96 return resultSet.getInt(
"known_status");
105 static String
getComment(ResultSet resultSet)
throws SQLException {
106 return resultSet.getString(
"comment");
110 return resultSet.getLong(
"file_obj_id");
static long getFileObjectId(ResultSet resultSet)
static int getKnownStatus(ResultSet resultSet)
static String getFilePath(ResultSet resultSet)
static int getId(ResultSet resultSet)
void process(ResultSet resultSet)
static int getDataSourceId(ResultSet resultSet)
static int getCaseId(ResultSet resultSet)
static String getValue(ResultSet resultSet)
static String getComment(ResultSet resultSet)