net.aholbrook.paseto.encoding.json.jackson.mixin.KeyIdMixIn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of encoding-json-jackson Show documentation
Show all versions of encoding-json-jackson Show documentation
JSON encoding backed by Jackson.
The newest version!
package net.aholbrook.paseto.encoding.json.jackson.mixin;
import com.fasterxml.jackson.annotation.JsonProperty;
public abstract class KeyIdMixIn {
@JsonProperty("kid")
abstract String getKeyId();
@JsonProperty("kid")
abstract String setKeyId(String keyId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy