Interface QuarantineStatistics
- All Known Implementing Classes:
QuarantineStatisticsImpl
public interface QuarantineStatistics
-
Method Summary
Modifier and TypeMethodDescription@NotNull Date@Nullable DateReturn the quarantine expiry date for thisTestCase@NotNull StringReturn the username of the user that quarantined thisTestCasevoidsetQuarantineDate(@NotNull Date date) voidsetQuarantineExpiryDate(@Nullable Date date) Set the expiry date for thisTestCase.voidsetQuarantiningUsername(@NotNull String username) Set the username of the user that quarantined thisTestCase
-
Method Details
-
getQuarantineDate
-
setQuarantineDate
- Parameters:
date- - Date of quarantine
-
getQuarantiningUsername
Return the username of the user that quarantined thisTestCase- Returns:
- The username of the quarantining user
-
setQuarantiningUsername
Set the username of the user that quarantined thisTestCase- Parameters:
username- - username of the quarantining user
-
getQuarantineExpiryDate
Return the quarantine expiry date for thisTestCase- Returns:
- quarantine expiration date or null, if it's not set
-
setQuarantineExpiryDate
Set the expiry date for thisTestCase. Set this value to null for permanent quarantine.- Parameters:
date- expiry date or null value, if this quarantine is permanent
-