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

org.wiremock.extension.jwt.SecretValue Maven / Gradle / Ivy

The newest version!
package org.wiremock.extension.jwt;

public class SecretValue {

    private final byte[] value;

    public static SecretValue fromString(String s) {
        if (s == null) {
            return null;
        }

        return new SecretValue(s.getBytes());
    }

    public SecretValue(byte[] value) {
        this.value = value;
    }

    public byte[] value() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy