
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);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy