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

it.auties.whatsapp.controller.StoreKeysPair Maven / Gradle / Ivy

package it.auties.whatsapp.controller;

import it.auties.whatsapp.util.Validate;

import java.util.Objects;

/**
 * A pair of Store and Keys with the same uuid
 */
public record StoreKeysPair(Store store, Keys keys) {
    public StoreKeysPair {
        Validate.isTrue(Objects.equals(store.uuid(), keys.uuid()), "UUID mismatch between store and keys");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy