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
d924c215
Commit
d924c215
authored
11 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
comment updates to java
parent
6daca4a5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
API-CHANGES.txt
+1
-0
1 addition, 0 deletions
API-CHANGES.txt
bindings/java/src/org/sleuthkit/datamodel/SleuthkitCase.java
+9
-9
9 additions, 9 deletions
bindings/java/src/org/sleuthkit/datamodel/SleuthkitCase.java
with
10 additions
and
9 deletions
API-CHANGES.txt
+
1
−
0
View file @
d924c215
...
@@ -2,3 +2,4 @@ Changes to make once we are ready to do a backwards incompatible change.
...
@@ -2,3 +2,4 @@ Changes to make once we are ready to do a backwards incompatible change.
- TSK_SERVICE_ACCOUNT to TSK_ACCOUNT
- TSK_SERVICE_ACCOUNT to TSK_ACCOUNT
- HashDB to use new TSK_BASE_HASHDB enum instead of its own ENUM
- HashDB to use new TSK_BASE_HASHDB enum instead of its own ENUM
- Java SLeuthkitCase.addArtifactType shoudl return different if artifact already exists or getArtifactId should....
- Java SLeuthkitCase.addArtifactType shoudl return different if artifact already exists or getArtifactId should....
- Java SleuthkitCase.findFilesWhere should return AbstractFile liek findFiles
This diff is collapsed.
Click to expand it.
bindings/java/src/org/sleuthkit/datamodel/SleuthkitCase.java
+
9
−
9
View file @
d924c215
...
@@ -2716,8 +2716,8 @@ else if (dataSource instanceof VirtualDirectory) {
...
@@ -2716,8 +2716,8 @@ else if (dataSource instanceof VirtualDirectory) {
/**
/**
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param fileName the name of the file or directory to match (case
* @param fileName
Pattern of
the name of the file or directory to match (case
* insensitive
)
* insensitive
, used in LIKE SQL statement).
* @return a list of AbstractFile for files/directories whose name matches the
* @return a list of AbstractFile for files/directories whose name matches the
* given fileName
* given fileName
* @throws TskCoreException thrown if check failed
* @throws TskCoreException thrown if check failed
...
@@ -2780,10 +2780,10 @@ public List<AbstractFile> findFiles(Content dataSource, String fileName) throws
...
@@ -2780,10 +2780,10 @@ public List<AbstractFile> findFiles(Content dataSource, String fileName) throws
/**
/**
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param fileName the name of the file or directory to match (case
* @param fileName
Pattern of
the name of the file or directory to match (case
* insensitive
)
* insensitive
, used in LIKE SQL statement).
* @param dirName the name of a parent directory of fileName (case
* @param dirName
Pattern of
the name of a parent directory of fileName (case
* insensitive)
* insensitive
, used in LIKE SQL statement
)
* @return a list of AbstractFile for files/directories whose name matches
* @return a list of AbstractFile for files/directories whose name matches
* fileName and whose parent directory contains dirName.
* fileName and whose parent directory contains dirName.
*/
*/
...
@@ -3547,9 +3547,9 @@ public LocalFile addLocalFile(String fileName, String localPath,
...
@@ -3547,9 +3547,9 @@ public LocalFile addLocalFile(String fileName, String localPath,
/**
/**
* Find all files in the data source, by name and parent
* Find all files in the data source, by name and parent
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param dataSource the dataSource (Image, parent-less VirtualDirectory) to search for the given file name
* @param fileName the name of the file or directory to match (case
* @param fileName
Pattern of
the name of the file or directory to match (case
* insensitive
)
* insensitive
, used in LIKE SQL statement).
* @param parentFile
* @param parentFile
Object for parent file/directory to find children in
* @return a list of AbstractFile for files/directories whose name matches
* @return a list of AbstractFile for files/directories whose name matches
* fileName and that were inside a directory described by parentFile.
* fileName and that were inside a directory described by parentFile.
*/
*/
...
...
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