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

org.brutusin.demo.UnSafeAction Maven / Gradle / Ivy

The newest version!
package org.brutusin.demo;

import org.brutusin.rpc.http.UnsafeAction;

public class UnSafeAction extends UnsafeAction {

    @Override
    public String execute(Void input) throws Exception {
        return "You a have successfully executed an action that only allows POST requests (since it is defined as unsafe)!";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy