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

io.deephaven.ssl.config.CiphersExplicit Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
/**
 * Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
 */
package io.deephaven.ssl.config;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.deephaven.annotations.BuildableStyle;
import org.immutables.value.Value.Check;
import org.immutables.value.Value.Immutable;

import java.util.List;

/**
 * Include the ciphers explicitly defined.
 */
@Immutable
@BuildableStyle
@JsonDeserialize(as = ImmutableCiphersExplicit.class)
public abstract class CiphersExplicit implements Ciphers {

    public static CiphersExplicit of(String... values) {
        return ImmutableCiphersExplicit.builder().addValues(values).build();
    }

    public static CiphersExplicit of(List values) {
        return ImmutableCiphersExplicit.builder().addAllValues(values).build();
    }

    public abstract List values();

    @Override
    public final  T walk(Visitor visitor) {
        return visitor.visit(this);
    }

    @Check
    final void checkNonEmpty() {
        if (values().isEmpty()) {
            throw new IllegalArgumentException("values() must be non-empty");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy