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

mangoo.io.test.MangooRequest Maven / Gradle / Ivy

package mangoo.io.test;

import io.undertow.util.Methods;

/**
 * 
 * @author svenkubiak
 *
 */
public final class MangooRequest {
    private MangooRequest() {
    }

    public static MangooResponse get(String uri) {
        return new MangooResponse(uri, Methods.GET);
    }
    
    public static MangooResponse post(String uri) {
        return new MangooResponse(uri, Methods.POST);
    }

    public static MangooResponse put(String uri) {
        return new MangooResponse(uri, Methods.PUT);
    }
    
    public static MangooResponse delete(String uri) {
        return new MangooResponse(uri, Methods.DELETE);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy