*/
private List<BlackboardArtifact> getArtifactsHelper(ResultSet rs) throws SQLException {
ArrayList<BlackboardArtifact> artifacts = new ArrayList<BlackboardArtifact>();
while (rs.next()) {
final int artifactTypeID = rs.getInt(3);
final ARTIFACT_TYPE artType = ARTIFACT_TYPE.fromID(artifactTypeID);
artifacts.add(new BlackboardArtifact(this, rs.getLong(1), rs.getLong(2),
artifactTypeID, artType.getLabel(), artType.getDisplayName()));
}
return artifacts;
}