com.github.fge.jsonschema.formats.SHA512FormatAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-formats Show documentation
Show all versions of json-schema-formats Show documentation
Format specifiers for use with json-schema-validator
The newest version!
package com.github.fge.jsonschema.formats;
import com.github.fge.jsonschema.format.FormatAttribute;
/**
* Format specifier for {@code sha512}
*
* @see HexStringFormatAttribute
*/
public final class SHA512FormatAttribute
extends HexStringFormatAttribute
{
private static final FormatAttribute instance = new SHA512FormatAttribute();
private SHA512FormatAttribute()
{
super("sha512", 128);
}
public static FormatAttribute getInstance()
{
return instance;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy