All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shz.core.verify.Verifiable Maven / Gradle / Ivy

There is a newer version: 2024.0.2
Show newest version
package shz.core.verify;

import java.util.Objects;

public interface Verifiable {
    String key();

    String value();

    int expireSeconds();

    default boolean equals(String one, String other) {
        return Objects.equals(one, other);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy