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

org.oxerr.commons.ws.rs.bean.Patchable Maven / Gradle / Ivy

The newest version!
package org.oxerr.commons.ws.rs.bean;

/**
 * Marks as the object is patchable.
 *
 * @param  the argument type.
 */
public interface Patchable {

	/**
	 * Patch this bean with the specified bean.
	 *
	 * @param  the type of patching object.
	 * @param patch the patching object.
	 * @return the patched object, used to chain calls.
	 */
	 T patch(S patch);

}