com.fitbur.fasterxml.jackson.databind.util.Setter Maven / Gradle / Ivy
package com.fitbur.fasterxml.jackson.databind.util;
/**
* Mix-in interface exposed by things that expose a single
* property whose value can be set.
*
* @since 2.0
*/
public interface Setter
{
public void setValue(Object pojo, Object value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy