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

com.teststeps.thekla4j.http.spp.activities.Get Maven / Gradle / Ivy

package com.teststeps.thekla4j.http.spp.activities;

import com.teststeps.thekla4j.activityLog.annotations.Action;
import com.teststeps.thekla4j.http.core.HttpRequest;
import com.teststeps.thekla4j.http.spp.Request;


@Action("post to resource: '@{resource}' with options: @{options}")
public class Get extends RequestInteraction {

    public static Get from(Request request) {
        return new Get(request);
    }
    private Get(Request request) {
        super(request, HttpRequest::get);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy