Interface MonitoringStatus
- All Superinterfaces:
ecmwf.web.model.ModelBean
- All Known Subinterfaces:
DestinationProductStatus,DestinationStatus,ProductStatus,ProductStepStatus
- All Known Implementing Classes:
DestinationProductStatusBean,DestinationStatusBean,MonitoringStatusBean,ProductStatusBean,ProductStepStatusBean
public interface MonitoringStatus
extends ecmwf.web.model.ModelBean
The Interface MonitoringStatus.
-
Method Summary
Modifier and TypeMethodDescriptionintGets the arrival status.intGets the real time arrival status.intGets the real time transfer status.intGets the transfer status.booleanChecks if is calculated.booleanChecks if is present.voidsetArrivalStatus(int i) Sets the arrival status.voidsetCalculated(boolean b) Sets the calculated.voidsetPresent(boolean b) Sets the present.voidsetRealTimeArrivalStatus(int i) Sets the real time arrival status.voidsetRealTimeTransferStatus(int i) Sets the real time transfer status.voidsetTransferStatus(int i) Sets the transfer status.Methods inherited from interface ecmwf.web.model.ModelBean
delete, delete, getAttributeValue, getBeanInterfaceName, getId, getIntId, insert, insert, isNew, save, save, setId
-
Method Details
-
isPresent
boolean isPresent()Checks if is present.- Returns:
- Does this combination exist
-
setPresent
void setPresent(boolean b) Sets the present.- Parameters:
b- the new present
-
isCalculated
boolean isCalculated()Checks if is calculated.- Returns:
- Do we have information about IF this combination exists
-
setCalculated
void setCalculated(boolean b) Sets the calculated.- Parameters:
b- the new calculated
-
getArrivalStatus
int getArrivalStatus()Gets the arrival status.- Returns:
- Arrival Status coming from ECPDS calculations
-
setArrivalStatus
void setArrivalStatus(int i) Sets the arrival status.- Parameters:
i- the new arrival status
-
getRealTimeArrivalStatus
int getRealTimeArrivalStatus()Gets the real time arrival status.- Returns:
- Arrival Status coming from ECPDS calculation, but in "realtime" version, that is, once the product is received the status will be set to OK, no matter what happened before
-
setRealTimeArrivalStatus
void setRealTimeArrivalStatus(int i) Sets the real time arrival status.- Parameters:
i- the new real time arrival status
-
getTransferStatus
int getTransferStatus()Gets the transfer status.- Returns:
- Transfer Status coming from ECPDS calculations
-
setTransferStatus
void setTransferStatus(int i) Sets the transfer status.- Parameters:
i- the new transfer status
-
getRealTimeTransferStatus
int getRealTimeTransferStatus()Gets the real time transfer status.- Returns:
- Transfer Status coming from ECPDS calculation, but in "realtime" version, that is, once the product is transferred the status will be set to OK, no matter what happened before
-
setRealTimeTransferStatus
void setRealTimeTransferStatus(int i) Sets the real time transfer status.- Parameters:
i- the new real time transfer status
-