![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.com.fasterxml.jackson.databind.cfg.MutableConfigOverride Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package com.fasterxml.jackson.databind.cfg;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Extension of {@link ConfigOverride} that allows changing of
* contained configuration settings. Exposed to
* {@link com.fasterxml.jackson.databind.Module}s that want to set
* overrides, but not exposed to functionality that wants to apply
* overrides.
*
* @since 2.8
*/
public class MutableConfigOverride
extends ConfigOverride
implements java.io.Serializable
{
private static final long serialVersionUID = 1L;
public MutableConfigOverride() { super(); }
protected MutableConfigOverride(MutableConfigOverride src) {
super(src);
}
protected MutableConfigOverride copy() {
return new MutableConfigOverride(this);
}
public MutableConfigOverride setFormat(JsonFormat.Value v) {
_format = v;
return this;
}
public MutableConfigOverride setInclude(JsonInclude.Value v) {
_include = v;
return this;
}
public MutableConfigOverride setIgnorals(JsonIgnoreProperties.Value v) {
_ignorals = v;
return this;
}
public MutableConfigOverride setIsIgnoredType(Boolean v) {
_isIgnoredType = v;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy