Change to Bundle message.

Convert to lower case.
This commit is contained in:
apriestman 2020-09-17 15:29:14 -04:00
parent 95007b15d7
commit 6cbebfb33f
2 changed files with 14 additions and 6 deletions

View File

@ -72,6 +72,9 @@ ExtractSru_process_errormsg_find_software_hive=Unable to find SOFTWARE HIVE file
ExtractSru_process_errormsg_find_srudb_dat=Unable to find srudb.dat file
ExtractSru_process_errormsg_write_software_hive=Unable to write SOFTWARE HIVE file
ExtractSru_process_errormsg_write_srudb_dat=Unable to write srudb.dat file
ExtractWebAccountType.role.admin=Administrator role
ExtractWebAccountType.role.moderator=Moderator role
ExtractWebAccountType.role.user=User role
ExtractZone_Internet=Internet Zone
ExtractZone_Local_Intranet=Local Intranet Zone
ExtractZone_Local_Machine=Local Machine Zone

View File

@ -95,8 +95,8 @@ class ExtractWebAccountType extends Extract {
return;
}
String url = urlAttr.getValueString();
String domain = domainAttr.getValueString();
String url = urlAttr.getValueString().toLowerCase();
String domain = domainAttr.getValueString().toLowerCase();
findMyBbRole(url, domain, artifact, roleProcessor);
findPhpBbRole(url, domain, artifact, roleProcessor);
@ -250,7 +250,7 @@ class ExtractWebAccountType extends Extract {
continue;
}
String desc = role.getRole().getDesc() + " role (" + role.getPlatform() + ")"; // NON-NLS
String desc = role.getRole().getDesc() + " (" + role.getPlatform() + ")"; // NON-NLS
Collection<BlackboardAttribute> bbattributes = new ArrayList<>();
bbattributes.add(new BlackboardAttribute(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_DOMAIN,
@ -274,10 +274,15 @@ class ExtractWebAccountType extends Extract {
/**
* Possible roles with rank and display name.
*/
@NbBundle.Messages({
"ExtractWebAccountType.role.user=User role",
"ExtractWebAccountType.role.moderator=Moderator role",
"ExtractWebAccountType.role.admin=Administrator role"
})
private enum Role {
USER("User", 0),
MOD("Moderator", 1),
ADMIN("Administrator", 2);
USER(Bundle.ExtractWebAccountType_role_user(), 0),
MOD(Bundle.ExtractWebAccountType_role_moderator(), 1),
ADMIN(Bundle.ExtractWebAccountType_role_admin(), 2);
private final String desc;
private final int rank;