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 TypeMethodDescriptionint
Gets the arrival status.int
Gets the real time arrival status.int
Gets the real time transfer status.int
Gets the transfer status.boolean
Checks if is calculated.boolean
Checks if is present.void
setArrivalStatus
(int i) Sets the arrival status.void
setCalculated
(boolean b) Sets the calculated.void
setPresent
(boolean b) Sets the present.void
setRealTimeArrivalStatus
(int i) Sets the real time arrival status.void
setRealTimeTransferStatus
(int i) Sets the real time transfer status.void
setTransferStatus
(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
-