mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 07:56:16 +00:00
2834 central repository capitalization made more consistant
This commit is contained in:
parent
d4e156b804
commit
34c2d2453f
@ -43,7 +43,7 @@ import org.sleuthkit.autopsy.centralrepository.datamodel.EamOrganization;
|
||||
import org.sleuthkit.autopsy.centralrepository.optionspanel.AddNewOrganizationDialog;
|
||||
|
||||
/**
|
||||
* Handle editing details of cases within the Central Repository
|
||||
* Handle editing details of cases within the central repository
|
||||
*/
|
||||
public class EamCaseEditDetailsDialog extends JDialog {
|
||||
|
||||
@ -531,14 +531,14 @@ public class EamCaseEditDetailsDialog extends JDialog {
|
||||
setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
|
||||
|
||||
if (!EamDb.isEnabled()) {
|
||||
LOGGER.log(Level.SEVERE, "Central Repository database not enabled"); // NON-NLS
|
||||
LOGGER.log(Level.SEVERE, "Central repository database not enabled"); // NON-NLS
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
dbManager.updateCase(eamCase);
|
||||
} catch (IllegalArgumentException | EamDbException ex) {
|
||||
LOGGER.log(Level.SEVERE, "Error connecting to Central Repository database", ex); // NON-NLS
|
||||
LOGGER.log(Level.SEVERE, "Error connecting to central repository database", ex); // NON-NLS
|
||||
} finally {
|
||||
setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
|
||||
}
|
||||
|
@ -175,9 +175,9 @@ public class DataContentViewerOtherCasesTableModel extends AbstractTableModel {
|
||||
}
|
||||
|
||||
/**
|
||||
* Add one local Central Repository Artifact to the table.
|
||||
* Add one local central repository artifact to the table.
|
||||
*
|
||||
* @param eamArtifact Central Repository Artifact to add to the
|
||||
* @param eamArtifact central repository artifact to add to the
|
||||
* table
|
||||
*/
|
||||
public void addEamArtifact(EamArtifact eamArtifact) {
|
||||
|
@ -170,7 +170,7 @@ public class EamArtifact implements Serializable {
|
||||
*
|
||||
* @param id Unique ID for this Correlation Type
|
||||
* @param displayName Name of this type displayed in the UI.
|
||||
* @param dbTableName Central Repository db table where data of this type is stored.
|
||||
* @param dbTableName Central repository db table where data of this type is stored.
|
||||
* Must start with a lowercase letter and only contain
|
||||
* lowercase letters, numbers, and '_' characters.
|
||||
* @param supported Is this Type currently supported
|
||||
@ -190,10 +190,10 @@ public class EamArtifact implements Serializable {
|
||||
/**
|
||||
* Constructior for custom types where we do not know the Type ID until
|
||||
* the row has been entered into the correlation_types table
|
||||
* in the Central Repository.
|
||||
* in the central repository.
|
||||
*
|
||||
* @param displayName Name of this type displayed in the UI.
|
||||
* @param dbTableName Central Repository db table where data of this type is stored
|
||||
* @param dbTableName Central repository db table where data of this type is stored
|
||||
* Must start with a lowercase letter and only contain
|
||||
* lowercase letters, numbers, and '_' characters.
|
||||
* @param supported Is this Type currently supported
|
||||
|
@ -778,26 +778,26 @@ public class SharedConfiguration {
|
||||
}
|
||||
|
||||
/**
|
||||
* Upload Central Repository settings.
|
||||
* Upload central repository settings.
|
||||
*
|
||||
* @param remoteFolder Shared settings folder
|
||||
*
|
||||
* @throws SharedConfigurationException
|
||||
*/
|
||||
private void uploadCentralRepositorySettings(File remoteFolder) throws SharedConfigurationException {
|
||||
publishTask("Uploading Central Repository configuration");
|
||||
publishTask("Uploading central repository configuration");
|
||||
copyToRemoteFolder(CENTRAL_REPOSITORY_PROPERTIES_FILE, moduleDirPath, remoteFolder, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Download Central Repository settings.
|
||||
* Download central repository settings.
|
||||
*
|
||||
* @param remoteFolder Shared settings folder
|
||||
*
|
||||
* @throws SharedConfigurationException
|
||||
*/
|
||||
private void downloadCentralRepositorySettings(File remoteFolder) throws SharedConfigurationException {
|
||||
publishTask("Downloading Central Repository configuration");
|
||||
publishTask("Downloading central repository configuration");
|
||||
copyToLocalFolder(CENTRAL_REPOSITORY_PROPERTIES_FILE, moduleDirPath, remoteFolder, true);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user