Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
0d1e799b
Commit
0d1e799b
authored
7 years ago
by
Raman
Browse files
Options
Downloads
Patches
Plain Diff
937: Accounts sub-trees do not refresh their contents after being initial viewed
parent
2adff138
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bindings/java/src/org/sleuthkit/datamodel/BlackboardArtifact.java
+14
-1
14 additions, 1 deletion
.../java/src/org/sleuthkit/datamodel/BlackboardArtifact.java
with
14 additions
and
1 deletion
bindings/java/src/org/sleuthkit/datamodel/BlackboardArtifact.java
+
14
−
1
View file @
0d1e799b
...
@@ -53,7 +53,7 @@ public class BlackboardArtifact implements Content {
...
@@ -53,7 +53,7 @@ public class BlackboardArtifact implements Content {
private
final
int
artifactTypeId
;
private
final
int
artifactTypeId
;
private
final
String
artifactTypeName
;
private
final
String
artifactTypeName
;
private
final
String
displayName
;
private
final
String
displayName
;
private
final
ReviewStatus
reviewStatus
;
private
ReviewStatus
reviewStatus
;
private
final
SleuthkitCase
sleuthkitCase
;
private
final
SleuthkitCase
sleuthkitCase
;
private
final
List
<
BlackboardAttribute
>
attrsCache
=
new
ArrayList
<
BlackboardAttribute
>();
private
final
List
<
BlackboardAttribute
>
attrsCache
=
new
ArrayList
<
BlackboardAttribute
>();
private
boolean
loadedCacheFromDb
=
false
;
private
boolean
loadedCacheFromDb
=
false
;
...
@@ -285,6 +285,19 @@ public ReviewStatus getReviewStatus() {
...
@@ -285,6 +285,19 @@ public ReviewStatus getReviewStatus() {
return
reviewStatus
;
return
reviewStatus
;
}
}
/**
* Sets the review status of this artifact, i.e., whether it has been
* approved, rejected, or is still waiting for a decision from the user.
*
* @param newStatus new status of the artifact
*
* @throws TskCoreException If an error occurs
*/
public
void
setReviewStatus
(
ReviewStatus
newStatus
)
throws
TskCoreException
{
getSleuthkitCase
().
setReviewStatus
(
this
,
newStatus
);
reviewStatus
=
newStatus
;
}
/**
/**
* Adds an attribute to this artifact.
* Adds an attribute to this artifact.
*
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment