Autopsy
4.19.3
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Classes | |
class | CaseForAccountInstanceQueryCallback |
enum | Confidence |
class | DatasourceForAccountInstanceQueryCallback |
class | PersonaFromAccountInstanceQueryCallback |
class | PersonaQueryCallback |
enum | PersonaStatus |
Public Member Functions | |
PersonaAccount | addAccount (CentralRepoAccount account, String justification, Persona.Confidence confidence) throws CentralRepoException |
PersonaAlias | addAlias (String alias, String justification, Persona.Confidence confidence) throws CentralRepoException |
PersonaMetadata | addMetadata (String name, String value, String justification, Persona.Confidence confidence) throws CentralRepoException |
void | delete () throws CentralRepoException |
boolean | equals (Object obj) |
Collection< PersonaAlias > | getAliases () throws CentralRepoException |
Collection< CorrelationCase > | getCases () throws CentralRepoException |
String | getComment () |
long | getCreatedDate () |
Collection< CorrelationDataSource > | getDataSources () throws CentralRepoException |
CentralRepoExaminer | getExaminer () |
long | getId () |
Collection< PersonaMetadata > | getMetadata () throws CentralRepoException |
long | getModifiedDate () |
String | getName () |
Collection< PersonaAccount > | getPersonaAccounts () throws CentralRepoException |
PersonaStatus | getStatus () |
String | getUuidStr () |
int | hashCode () |
void | modifyAccount (PersonaAccount account, Confidence confidence, String justification) throws CentralRepoException |
void | modifyAlias (PersonaAlias key, Confidence confidence, String justification) throws CentralRepoException |
void | modifyMetadata (PersonaMetadata key, Confidence confidence, String justification) throws CentralRepoException |
void | removeAccount (PersonaAccount account) throws CentralRepoException |
void | removeAlias (PersonaAlias alias) throws CentralRepoException |
void | removeMetadata (PersonaMetadata metadata) throws CentralRepoException |
void | setComment (String comment) throws CentralRepoException |
void | setName (String name) throws CentralRepoException |
Static Public Member Functions | |
static Persona | createPersonaForAccount (String personaName, String comment, PersonaStatus status, CentralRepoAccount account, String justification, Persona.Confidence confidence) throws CentralRepoException |
static String | getDefaultName () |
static Collection< Persona > | getPersonaByAccountIdentifierLike (String partialName) throws CentralRepoException |
static Collection< Persona > | getPersonaByName (String partialName) throws CentralRepoException |
static Collection< Persona > | getPersonasForCase (CorrelationCase correlationCase) throws CentralRepoException |
static Collection< Persona > | getPersonasForDataSource (CorrelationDataSource dataSource) throws CentralRepoException |
Static Private Member Functions | |
static Persona | createPersona (String name, String comment, PersonaStatus status) throws CentralRepoException |
static CentralRepository | getCRInstance () throws CentralRepoException |
static String | getLikeEscaped (String initial) |
static Persona | getPersonaByUUID (String uuid) throws CentralRepoException |
static String | getPersonaFromInstanceTableQueryTemplate (CentralRepoAccount.CentralRepoAccountType crAccountType) throws CentralRepoException |
Private Attributes | |
final String | comment |
final long | createdDate |
final CentralRepoExaminer | examiner |
final long | id |
final long | modifiedDate |
final String | name |
final PersonaStatus | status |
final String | uuidStr |
Static Private Attributes | |
static final String | PERSONA_QUERY |
This class abstracts a persona.
An examiner may create a persona from an account.
Definition at line 39 of file Persona.java.
PersonaAccount org.sleuthkit.autopsy.centralrepository.datamodel.Persona.addAccount | ( | CentralRepoAccount | account, |
String | justification, | ||
Persona.Confidence | confidence | ||
) | throws CentralRepoException |
Associates an account with a persona by creating a row in the PersonaAccounts table.
account | Account to add to persona. |
justification | Reason for adding the account to persona, may be null. |
confidence | Confidence level. |
CentralRepoException | If there is an error. |
Definition at line 309 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.createPersonaForAccount().
PersonaAlias org.sleuthkit.autopsy.centralrepository.datamodel.Persona.addAlias | ( | String | alias, |
String | justification, | ||
Persona.Confidence | confidence | ||
) | throws CentralRepoException |
Creates an alias for the Persona.
alias | Alias name. |
justification | Reason for assigning the alias, may be null. |
confidence | Confidence level. |
CentralRepoException | If there is an error in creating the alias. |
Definition at line 522 of file Persona.java.
PersonaMetadata org.sleuthkit.autopsy.centralrepository.datamodel.Persona.addMetadata | ( | String | name, |
String | value, | ||
String | justification, | ||
Persona.Confidence | confidence | ||
) | throws CentralRepoException |
Adds specified metadata to the persona.
name | Metadata name. |
value | Metadata value. |
justification | Reason for adding the metadata, may be null. |
confidence | Confidence level. |
CentralRepoException | If there is an error in adding metadata. |
Definition at line 575 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId().
|
staticprivate |
Inserts a row in the Persona tables.
name | Persona name, may be null - default name is used in that case. |
comment | Comment to associate with persona, may be null. |
status | Persona status. |
CentralRepoException | If there is an error in adding a row to personas table. |
Definition at line 235 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.comment, org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeCommand(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getDefaultName(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepoExaminer.getId(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getOrInsertExaminer(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaByUUID(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PersonaStatus.getStatusId(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.name.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.createPersonaForAccount().
|
static |
Creates a Persona and associates the specified account with it.
personaName | Persona name. |
comment | Comment to associate with persona, may be null. |
status | Persona status |
account | Account for which the persona is being created. |
justification | Justification for why this account belongs to this persona, may be null. |
confidence | Confidence level for this association of Persona & account. |
CentralRepoException | If there is an error creating the Persona. |
Definition at line 216 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.addAccount(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.createPersona().
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.delete | ( | ) | throws CentralRepoException |
Marks this persona as deleted
Definition at line 342 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PersonaStatus.DELETED, org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeCommand(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getInstance().
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonasTopComponent.PersonasTopComponent().
boolean org.sleuthkit.autopsy.centralrepository.datamodel.Persona.equals | ( | Object | obj | ) |
Definition at line 183 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getUuidStr().
Collection<PersonaAlias> org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getAliases | ( | ) | throws CentralRepoException |
Gets all aliases for the persona.
CentralRepoException | If there is an error in retrieving aliases. |
Definition at line 559 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId(), and org.sleuthkit.autopsy.centralrepository.datamodel.PersonaAlias.getPersonaAliases().
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonaDetailsPanel.loadPersona().
Collection<CorrelationCase> org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCases | ( | ) | throws CentralRepoException |
Gets a list of cases that the persona appears in.
CentralRepoException | If there is an error in getting the cases from the database. |
Definition at line 659 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepoDbUtil.correlationTypeToInstanceTableName(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeQuery(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getCorrelationTypeById(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId().
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonaDetailsPanel.loadPersona().
String org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getComment | ( | ) |
Definition at line 143 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.comment.
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonaDetailsPanel.loadPersona().
long org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCreatedDate | ( | ) |
Definition at line 147 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.createdDate.
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonaDetailsPanel.loadPersona().
|
staticprivate |
Wraps the call to CentralRepository.getInstance() throwing an exception if instance is null;
CentralRepoException |
Definition at line 903 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getInstance().
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.createPersona(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.delete(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCases(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getDataSources(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaByAccountIdentifierLike(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaByName(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaByUUID(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaFromInstanceTableQueryTemplate(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonasForCase(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonasForDataSource(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.CaseForAccountInstanceQueryCallback.process(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.DatasourceForAccountInstanceQueryCallback.process(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.setComment(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.setName().
Collection<CorrelationDataSource> org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getDataSources | ( | ) | throws CentralRepoException |
Gets all data sources that the persona appears in.
CentralRepoException |
Definition at line 727 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepoDbUtil.correlationTypeToInstanceTableName(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeQuery(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getCorrelationTypeById(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId().
|
static |
Definition at line 127 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.createPersona(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.setName().
CentralRepoExaminer org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getExaminer | ( | ) |
Definition at line 159 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.examiner.
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonaDetailsPanel.loadPersona().
long org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId | ( | ) |
Definition at line 131 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.id.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.addMetadata(), org.sleuthkit.autopsy.communications.relationships.SummaryPersonaPane.PersonaCreateCallbackImpl.callback(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.equals(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getAliases(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCases(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getDataSources(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getMetadata(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaAccounts().
|
staticprivate |
Escapes string for use with like statements removing '', '_', '\'. This uses '!' as the escape character and the sql should reflect this accordingly. See https://stackoverflow.com/questions/8247970/using-like-wildcard-in-prepared-statement, https://www.postgresql.org/docs/8.3/functions-matching.html and https://www.sqlite.org/lang_expr.html for more information.
initial | The initial string. |
Definition at line 466 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaByAccountIdentifierLike(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaByName().
Collection<PersonaMetadata> org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getMetadata | ( | ) | throws CentralRepoException |
Gets all metadata for the persona.
CentralRepoException | If there is an error in retrieving aliases. |
Definition at line 612 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId().
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonaDetailsPanel.loadPersona().
long org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getModifiedDate | ( | ) |
Definition at line 151 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.modifiedDate.
String org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getName | ( | ) |
Definition at line 139 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.name.
Referenced by org.sleuthkit.autopsy.communications.relationships.SummaryPersonaPane.PersonaCreateCallbackImpl.callback(), org.sleuthkit.autopsy.contentviewers.artifactviewers.MessageAccountPanel.AccountContainer.initalizeSwingControls(), org.sleuthkit.autopsy.centralrepository.persona.PersonaDetailsPanel.loadPersona(), org.sleuthkit.autopsy.centralrepository.persona.PersonasTopComponent.PersonasTopComponent(), org.sleuthkit.autopsy.contentviewers.artifactviewers.MessageAccountPanel.AccountContainer.setPersona(), and org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.showPersona().
Collection<PersonaAccount> org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaAccounts | ( | ) | throws CentralRepoException |
Gets all the Accounts for the Persona.
CentralRepoException | If there is an error in getting the persona_account. |
Definition at line 624 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId().
Referenced by org.sleuthkit.autopsy.communications.relationships.SummaryPersonaPane.PersonaCreateCallbackImpl.callback(), org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.ContactPersonaSearcherTask.doInBackground(), and org.sleuthkit.autopsy.centralrepository.persona.PersonaDetailsPanel.loadPersona().
|
static |
Gets the rows from the Personas table where persona accounts' names are similar to the given one. Persona marked as DELETED are not returned.
partialName | Name substring to match. |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 489 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PersonaStatus.DELETED, org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeQuery(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getLikeEscaped().
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonasTopComponent.executeSearch().
|
static |
Gets the rows from the Personas table with matching name. Persona marked as DELETED are not returned.
partialName | Name substring to match. |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 438 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PersonaStatus.DELETED, org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeQuery(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getLikeEscaped(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PERSONA_QUERY.
Referenced by org.sleuthkit.autopsy.centralrepository.persona.PersonasTopComponent.executeSearch().
|
staticprivate |
Gets the row from the Personas table with the given UUID, creates and returns the Persona from that data.
uuid | Persona UUID to match. |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 409 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeQuery(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PERSONA_QUERY.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.createPersona().
|
staticprivate |
Returns a query string for selecting personas for a case/datasource from the X_instance table for the given account type.
crAccountType | Account type to generate the query string for. |
CentralRepoException |
Definition at line 805 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepoDbUtil.correlationTypeToInstanceTableName(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getCorrelationTypeById(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance().
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonasForCase(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonasForDataSource().
|
static |
Get all the persona for a given case.
correlationCase | Case to look the persona in. |
CentralRepoException |
Definition at line 830 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PersonaStatus.DELETED, org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeQuery(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getAllAccountTypes(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaFromInstanceTableQueryTemplate().
|
static |
Get all the persona for a given data source.
dataSource | Data source to look the persona in. |
CentralRepoException |
Definition at line 867 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PersonaStatus.DELETED, org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeQuery(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getAllAccountTypes(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaFromInstanceTableQueryTemplate().
PersonaStatus org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getStatus | ( | ) |
Definition at line 155 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.status.
String org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getUuidStr | ( | ) |
Definition at line 135 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.uuidStr.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.equals().
int org.sleuthkit.autopsy.centralrepository.datamodel.Persona.hashCode | ( | ) |
Definition at line 175 of file Persona.java.
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.modifyAccount | ( | PersonaAccount | account, |
Confidence | confidence, | ||
String | justification | ||
) | throws CentralRepoException |
Modifies the confidence / justification of the given PersonaAccount
account | Account to modify. |
confidence | Level of confidence. |
justification | Justification. |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 335 of file Persona.java.
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.modifyAlias | ( | PersonaAlias | key, |
Confidence | confidence, | ||
String | justification | ||
) | throws CentralRepoException |
Modifies the given alias.
key | Key for the alias to modify. |
confidence | Level of confidence. |
justification | Justification. |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 548 of file Persona.java.
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.modifyMetadata | ( | PersonaMetadata | key, |
Confidence | confidence, | ||
String | justification | ||
) | throws CentralRepoException |
Modifies the given metadata.
key | Key for the metadata to modify. |
confidence | Level of confidence. |
justification | Justification. |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 601 of file Persona.java.
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.removeAccount | ( | PersonaAccount | account | ) | throws CentralRepoException |
Removes the given PersonaAccount (persona/account association)
account | account to remove |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 321 of file Persona.java.
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.removeAlias | ( | PersonaAlias | alias | ) | throws CentralRepoException |
Removes the given alias.
alias | alias to remove |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 534 of file Persona.java.
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.removeMetadata | ( | PersonaMetadata | metadata | ) | throws CentralRepoException |
Removes the given metadata from this persona.
metadata | metadata to remove |
CentralRepoException | If there is an error in querying the Personas table. |
Definition at line 587 of file Persona.java.
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.setComment | ( | String | comment | ) | throws CentralRepoException |
Sets the comment of this persona.
comment | The new comment. |
CentralRepoException | If there is an error. |
Definition at line 265 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.Persona.comment, org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeCommand(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getInstance().
void org.sleuthkit.autopsy.centralrepository.datamodel.Persona.setName | ( | String | name | ) | throws CentralRepoException |
Sets the name of this persona
name | The new name. |
CentralRepoException | If there is an error. |
Definition at line 284 of file Persona.java.
References org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.executeCommand(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCRInstance(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getDefaultName(), org.sleuthkit.autopsy.centralrepository.datamodel.CentralRepository.getInstance(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.name.
|
private |
|
private |
Definition at line 121 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getCreatedDate().
|
private |
Definition at line 124 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getExaminer().
|
private |
Definition at line 117 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getId().
|
private |
Definition at line 122 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getModifiedDate().
|
private |
Definition at line 119 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.Confidence.Confidence(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.createPersona(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getName(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.setName(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.Confidence.toString().
|
staticprivate |
Definition at line 393 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaByName(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getPersonaByUUID().
|
private |
Definition at line 123 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PersonaStatus.fromId(), org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getStatus(), and org.sleuthkit.autopsy.centralrepository.datamodel.Persona.PersonaStatus.PersonaStatus().
|
private |
Definition at line 118 of file Persona.java.
Referenced by org.sleuthkit.autopsy.centralrepository.datamodel.Persona.getUuidStr().
Copyright © 2012-2022 Basis Technology. Generated on: Tue Mar 28 2023
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.