1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-03 06:25:58 +00:00

4381 comment out partially completed adding of artifacts

This commit is contained in:
William Schaefer
2018-11-19 14:57:01 -05:00
parent d99863e770
commit 2a00a770cc

View File

@@ -166,9 +166,11 @@ public class EamArtifactUtil {
} else if (correlationType.getId() == CorrelationAttributeInstance.SSID_TYPE_ID
&& BlackboardArtifact.ARTIFACT_TYPE.TSK_WIFI_NETWORK.getTypeID() == artifactTypeID) {
value = bbArtifact.getAttribute(new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_SSID)).getValueString();
} else if (correlationType.getId() == CorrelationAttributeInstance.MAC_TYPE_ID) {
value = "NEED_MAC_ADDRESS";
}
}
// else if (correlationType.getId() == CorrelationAttributeInstance.MAC_TYPE_ID
// && BlackboardArtifact.ARTIFACT_TYPE.TSK_DEVICE_ATTACHED.getTypeID() == artifactTypeID) {
// value = bbArtifact.getAttribute(new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DEVICE_ID)).getValueString();
// } //WJS-TODO enable actually making the mac address attrs when tsk_artifacts and attrs added
} catch (TskCoreException ex) {
logger.log(Level.SEVERE, "Error getting attribute while getting type from BlackboardArtifact.", ex); // NON-NLS
return null;