diff --git a/bindings/java/src/org/sleuthkit/datamodel/Account.java b/bindings/java/src/org/sleuthkit/datamodel/Account.java index bec66e453181c5f31af7afebf726adfb0ddb81c9..55af667d4a6fa6446b36d30c32dcbb8d700c59ee 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;