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

io.yawp.servlet.rest.UpdateRestAction Maven / Gradle / Ivy

There is a newer version: 2.08alpha
Show newest version
package io.yawp.servlet.rest;

public class UpdateRestAction extends RestAction {

    public UpdateRestAction() {
        super("update");
    }

    @Override
    public void shield() {
        shield.protectUpdate();
    }

    @Override
    public Object action() {
        assert !isRequestBodyJsonArray();

        Object object = getObject();
        save(object);
        applyGetFacade(object);
        return transform(object);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy