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

io.ebean.bean.MutableValueNext Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.bean;

/**
 * Represents a next value to use for mutable content properties (DbJson with jackson beans).
 */
public interface MutableValueNext {

  /**
   * Return the next content to use. Provided such that we serialise to json once.
   */
  String content();

  /**
   * Return the next MutableValueInfo to use after an update.
   */
  MutableValueInfo info();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy