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

ai.vespa.secret.model.SecretVersionId Maven / Gradle / Ivy

The newest version!
package ai.vespa.secret.model;

/**
 * @author gjoranv
 */
public record SecretVersionId(String value) {

    public SecretVersionId {
        if (value == null || value.isBlank()) {
            throw new IllegalArgumentException("Version id cannot be null or empty");
        }
    }

    public static SecretVersionId of(String value) {
        return new SecretVersionId(value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy