Interface QuarantineStatistics
-
- All Known Implementing Classes:
QuarantineStatisticsImpl
public interface QuarantineStatistics
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Date
getQuarantineDate()
@Nullable Date
getQuarantineExpiryDate()
Return the quarantine expiry date for thisTestCase
@NotNull String
getQuarantiningUsername()
Return the username of the user that quarantined thisTestCase
void
setQuarantineDate(@NotNull Date date)
void
setQuarantineExpiryDate(@Nullable Date date)
Set the expiry date for thisTestCase
.void
setQuarantiningUsername(@NotNull String username)
Set the username of the user that quarantined thisTestCase
-
-
-
Method Detail
-
getQuarantineDate
@NotNull @NotNull Date getQuarantineDate()
-
setQuarantineDate
void setQuarantineDate(@NotNull @NotNull Date date)
- Parameters:
date
- - Date of quarantine
-
getQuarantiningUsername
@NotNull @NotNull String getQuarantiningUsername()
Return the username of the user that quarantined thisTestCase
- Returns:
- The username of the quarantining user
-
setQuarantiningUsername
void setQuarantiningUsername(@NotNull @NotNull String username)
Set the username of the user that quarantined thisTestCase
- Parameters:
username
- - username of the quarantining user
-
getQuarantineExpiryDate
@Nullable @Nullable Date getQuarantineExpiryDate()
Return the quarantine expiry date for thisTestCase
- Returns:
- quarantine expiration date or null, if it's not set
-
-