Skip to content
Snippets Groups Projects
Commit 679f15a1 authored by apriestman's avatar apriestman
Browse files

Added correlation attributes

parent be4f1ff7
No related branches found
No related tags found
No related merge requests found
......@@ -609,6 +609,9 @@ public static final class Type implements Serializable {
public static final Type TSK_HOST = new Type(154, "TSK_HOST", bundle.getString("BlackboardAttribute.tskHost.text"), TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING);
public static final Type TSK_HOME_DIR = new Type(155, "TSK_HOME_DIR", bundle.getString("BlackboardAttribute.tskHomeDir.text"), TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING);
public static final Type TSK_IS_ADMIN = new Type(156, "TSK_IS_ADMIN", bundle.getString("BlackboardAttribute.tskIsAdmin.text"), TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER);
public static final Type TSK_CORRELATION_TYPE = new Type(157, "TSK_CORRELATION_TYPE", bundle.getString("BlackboardAttribute.tskCorrelationType.text"), TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING);
public static final Type TSK_CORRELATION_VALUE = new Type(158, "TSK_CORRELATION_VALUE", bundle.getString("BlackboardAttribute.tskCorrelationValue.text"), TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING);
// NOTE: When adding a new standard BlackboardAttribute.Type, add the instance and then add to the STANDARD_TYPES list.
/**
* A list of all the standard attribute types.
......@@ -761,7 +764,9 @@ public static final class Type implements Serializable {
TSK_REALM,
TSK_HOST,
TSK_HOME_DIR,
TSK_IS_ADMIN
TSK_IS_ADMIN,
TSK_CORRELATION_TYPE,
TSK_CORRELATION_VALUE
));
private static final long serialVersionUID = 1L;
......@@ -1529,7 +1534,13 @@ public enum ATTRIBUTE_TYPE {
TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING),
TSK_IS_ADMIN(156, "TSK_IS_ADMIN",
bundle.getString("BlackboardAttribute.tskIsAdmin.text"),
TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER),;
TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER),
TSK_CORRELATION_TYPE(157, "TSK_CORRELATION_TYPE",
bundle.getString("BlackboardAttribute.tskCorrelationType.text"),
TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING),
TSK_CORRELATION_VALUE(158, "TSK_CORRELATION_VALUE",
bundle.getString("BlackboardAttribute.tskCorrelationValue.text"),
TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING),;
private final int typeID;
private final String typeName;
......
......@@ -218,6 +218,8 @@ BlackboardAttribute.tskRealm.text=Realm
BlackboardAttribute.tskHost.text=Host
BlackboardAttribute.tskHomeDir.text=Home Directory
BlackboardAttribute.tskIsAdmin.text=Is Administrator
BlackboardAttribute.tskCorrelationType.text=Correlation Type
BlackboardAttribute.tskCorrelationValue.text=Correlation Value
AbstractFile.readLocal.exception.msg4.text=Error reading local file\: {0}
AbstractFile.readLocal.exception.msg1.text=Error reading local file, local path is not set
AbstractFile.readLocal.exception.msg2.text=Error reading local file, it does not exist at local path\: {0}
......
......@@ -218,6 +218,8 @@ BlackboardAttribute.tskRealm.text=Realm
BlackboardAttribute.tskHost.text=Host
BlackboardAttribute.tskHomeDir.text=Home Directory
BlackboardAttribute.tskIsAdmin.text=Is Administrator
BlackboardAttribute.tskCorrelationType.text=Correlation Type
BlackboardAttribute.tskCorrelationValue.text=Correlation Value
AbstractFile.readLocal.exception.msg4.text=Error reading local file\: {0}
AbstractFile.readLocal.exception.msg1.text=Error reading local file, local path is not set
AbstractFile.readLocal.exception.msg2.text=Error reading local file, it does not exist at local path\: {0}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment