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

io.gravitee.node.api.secrets.model.SecretEvent Maven / Gradle / Ivy

package io.gravitee.node.api.secrets.model;

/**
 * This record represent an event occurred during a secret watch.
 *
 * @author Benoit BORDIGONI (benoit.bordigoni at graviteesource.com)
 * @author GraviteeSource Team
 */
public record SecretEvent(SecretEvent.Type type, SecretMap secretMap) {
    public enum Type {
        CREATED,
        UPDATED,
        DELETED,
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy