de.customed.diag.shared.enums.DataTransferStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-api Show documentation
Show all versions of plugin-api Show documentation
custo diagnostic server by custo med is part of the custo diagnostic medical product.
In custo diagnostic, the entire cardiopulmonary functional diagnostics is integrated in one consistent
and modular user interface. Our central software platform allows you to work consistently in all
applications - from the single-user workstation to the multi-site solution.
The newest version!
package de.customed.diag.shared.enums;
/**
* @author David Weisgerber
*/
public enum DataTransferStatus {
UNKNOWN, // Either status is not known or there is just not DFÜ in play
SENT, // Evaluation was sent to "Reporting Service" or was copied to a friend for whatever reason. If there was no analysis (so that was the send reason) I should display a dialog telling me that
RECEIVED_ANALYSIS, // Evaluation was received back from "Reporting Service". You can do everything with the evaluation what you want
INCOMING, // The evaluation was received at the "Reporting Service" and shall be reported
INCOMING_ANALYZED, // The evaluation was analyzed at the "Reporting Service" and can be sent back to the customer
INCOMING_DOWNLOADED, // The evaluation was downloaded by the customer
RECEIVED_AND_FINISHED, //Evaluation was received and set to finished whatever the customer defines as such
}