mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Replace Value annotation with Getter and EqualsAndHashCode
This commit is contained in:
parent
9e4be1367a
commit
8d2579866a
1 changed files with 4 additions and 2 deletions
|
@ -39,13 +39,15 @@ import java.util.Set;
|
|||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import lombok.Value;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
@Slf4j
|
||||
@Value
|
||||
@Getter
|
||||
@EqualsAndHashCode
|
||||
public final class Filter implements ProtectedStoragePayload, ExpirablePayload {
|
||||
public static final long TTL = TimeUnit.DAYS.toMillis(180);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue