io.yawp.servlet.rest.PatchRestAction Maven / Gradle / Ivy
package io.yawp.servlet.rest;
import io.yawp.commons.utils.FacadeUtils;
import io.yawp.commons.utils.JsonUtils;
public class PatchRestAction extends UpdateRestAction {
@Override
protected void beforeShield() {
assert !isRequestBodyJsonArray();
FacadeUtils.copyOtherProperties(id.fetch(), getObject(), JsonUtils.getProperties(requestJson));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy