github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/java/libraries/rest-assured/Oper.mustache (about)

     1  {{>licenseInfo}}
     2  
     3  package {{apiPackage}};
     4  
     5  import io.restassured.response.Response;
     6  
     7  import java.util.function.Function;
     8  
     9  public interface Oper {
    10  
    11      <T> T execute(Function<Response, T> handler);
    12  
    13  }