From a4d0f365ca10628b31be7c68810dd900f42324da Mon Sep 17 00:00:00 2001 From: Raman Arora <raman@basistech.com> Date: Tue, 3 Mar 2020 16:59:21 -0500 Subject: [PATCH] 6013: Create accounts in central repo to support personas. --- bindings/java/src/org/sleuthkit/datamodel/Account.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/java/src/org/sleuthkit/datamodel/Account.java b/bindings/java/src/org/sleuthkit/datamodel/Account.java index bec66e453..55af667d4 100644 --- a/bindings/java/src/org/sleuthkit/datamodel/Account.java +++ b/bindings/java/src/org/sleuthkit/datamodel/Account.java @@ -99,7 +99,7 @@ public static final class Type { * @param typeName The type name. * @param displayName The display name for the type. */ - Type(String typeName, String displayName) { + public Type(String typeName, String displayName) { this.typeName = typeName; this.displayName = displayName; } @@ -152,7 +152,7 @@ public String toString() { } } - Account(long account_id, Account.Type accountType, String typeSpecificId) throws TskCoreException { + public Account(long account_id, Account.Type accountType, String typeSpecificId) { this.account_id = account_id; this.accountType = accountType; this.typeSpecificID = typeSpecificId; -- GitLab