public class RestTest
| Modifier and Type | Class and Description |
|---|---|
static class |
RestTest.Companion |
| Modifier and Type | Field and Description |
|---|---|
static RestTest.Companion |
Companion |
| Constructor and Description |
|---|
RestTest() |
| Modifier and Type | Method and Description |
|---|---|
static Response |
delete(com.github.aivancioglo.resttest.setters.Setter setters)
Making DELETE requestSpecification.
|
static Response |
delete(java.lang.String url,
com.github.aivancioglo.resttest.setters.Setter setters)
Making DELETE requestSpecification.
|
static Response |
get(com.github.aivancioglo.resttest.setters.Setter setters)
Making GET requestSpecification.
|
static Response |
get(java.lang.String url,
com.github.aivancioglo.resttest.setters.Setter setters)
Making GET requestSpecification.
|
static Response |
head(com.github.aivancioglo.resttest.setters.Setter setters)
Making HEAD requestSpecification.
|
static Response |
head(java.lang.String url,
com.github.aivancioglo.resttest.setters.Setter setters)
Making HEAD requestSpecification.
|
static Response |
options(com.github.aivancioglo.resttest.setters.Setter setters)
Making OPTIONS requestSpecification.
|
static Response |
options(java.lang.String url,
com.github.aivancioglo.resttest.setters.Setter setters)
Making OPTIONS requestSpecification.
|
static Response |
patch(com.github.aivancioglo.resttest.setters.Setter setters)
Making PATCH requestSpecification.
|
static Response |
patch(java.lang.String url,
com.github.aivancioglo.resttest.setters.Setter setters)
Making PATCH requestSpecification.
|
static Repeater |
perform(int timeout,
int every,
int tries)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform(int timeout,
int every)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform(int timeout)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform()
Use this function, to creates Session of request repeating.
|
static void |
perform(int timeout,
int every,
int tries,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform(int timeout,
double every)
Use this function, to creates Session of request repeating.
|
static void |
perform(int timeout,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static void |
perform(int timeout,
int every,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static void |
perform(int timeout,
double every,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform(int timeout,
double every,
int tries)
Use this function, to creates Session of request repeating.
|
static void |
perform(int timeout,
double every,
int tries,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform(double timeout)
Use this function, to creates Session of request repeating.
|
static void |
perform(double timeout,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform(double timeout,
int every)
Use this function, to creates Session of request repeating.
|
static void |
perform(double timeout,
int every,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform(double timeout,
double every)
Use this function, to creates Session of request repeating.
|
static void |
perform(double timeout,
double every,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static Repeater |
perform(double timeout,
double every,
int tries)
Use this function, to creates Session of request repeating.
|
static void |
perform(double timeout,
double every,
int tries,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
|
static Response |
post(com.github.aivancioglo.resttest.setters.Setter setters)
Making POST requestSpecification.
|
static Response |
post(java.lang.String url,
com.github.aivancioglo.resttest.setters.Setter setters)
Making POST requestSpecification.
|
static Response |
put(com.github.aivancioglo.resttest.setters.Setter setters)
Making PUT requestSpecification.
|
static Response |
put(java.lang.String url,
com.github.aivancioglo.resttest.setters.Setter setters)
Making PUT requestSpecification.
|
static Response |
trace(com.github.aivancioglo.resttest.setters.Setter setters)
Making TRACE requestSpecification.
|
static Response |
trace(java.lang.String url,
com.github.aivancioglo.resttest.setters.Setter setters)
Making TRACE requestSpecification.
|
public static RestTest.Companion Companion
public static Repeater perform(int timeout, int every, int tries)
Use this function, to creates Session of request repeating.
public static Repeater perform(int timeout, int every)
Use this function, to creates Session of request repeating.
public static Repeater perform(int timeout)
Use this function, to creates Session of request repeating.
public static Repeater perform()
Use this function, to creates Session of request repeating.
public static void perform(int timeout,
int every,
int tries,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static Repeater perform(int timeout, double every)
Use this function, to creates Session of request repeating.
public static void perform(int timeout,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static void perform(int timeout,
int every,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static void perform(int timeout,
double every,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static Repeater perform(int timeout, double every, int tries)
Use this function, to creates Session of request repeating.
public static void perform(int timeout,
double every,
int tries,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static Repeater perform(double timeout)
Use this function, to creates Session of request repeating.
public static void perform(double timeout,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static Repeater perform(double timeout, int every)
Use this function, to creates Session of request repeating.
public static void perform(double timeout,
int every,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static Repeater perform(double timeout, double every)
Use this function, to creates Session of request repeating.
public static void perform(double timeout,
double every,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static Repeater perform(double timeout, double every, int tries)
Use this function, to creates Session of request repeating.
public static void perform(double timeout,
double every,
int tries,
java.lang.Runnable request)
Use this function, to creates Session of request repeating.
public static Response get(com.github.aivancioglo.resttest.setters.Setter setters)
Making GET requestSpecification.
setters - are setting up requestSpecification specification.public static Response get(java.lang.String url, com.github.aivancioglo.resttest.setters.Setter setters)
Making GET requestSpecification.
url - of your requestSpecification.setters - are setting up requestSpecification specification.public static Response post(com.github.aivancioglo.resttest.setters.Setter setters)
Making POST requestSpecification.
setters - are setting up requestSpecification specification.public static Response post(java.lang.String url, com.github.aivancioglo.resttest.setters.Setter setters)
Making POST requestSpecification.
url - of your requestSpecification.setters - are setting up requestSpecification specification.public static Response put(com.github.aivancioglo.resttest.setters.Setter setters)
Making PUT requestSpecification.
setters - are setting up requestSpecification specification.public static Response put(java.lang.String url, com.github.aivancioglo.resttest.setters.Setter setters)
Making PUT requestSpecification.
url - of your requestSpecification.setters - are setting up requestSpecification specification.public static Response patch(com.github.aivancioglo.resttest.setters.Setter setters)
Making PATCH requestSpecification.
setters - are setting up requestSpecification specification.public static Response patch(java.lang.String url, com.github.aivancioglo.resttest.setters.Setter setters)
Making PATCH requestSpecification.
url - of your requestSpecification.setters - are setting up requestSpecification specification.public static Response delete(com.github.aivancioglo.resttest.setters.Setter setters)
Making DELETE requestSpecification.
setters - are setting up requestSpecification specification.public static Response delete(java.lang.String url, com.github.aivancioglo.resttest.setters.Setter setters)
Making DELETE requestSpecification.
url - of your requestSpecification.setters - are setting up requestSpecification specification.public static Response options(com.github.aivancioglo.resttest.setters.Setter setters)
Making OPTIONS requestSpecification.
setters - are setting up requestSpecification specification.public static Response options(java.lang.String url, com.github.aivancioglo.resttest.setters.Setter setters)
Making OPTIONS requestSpecification.
url - of your requestSpecification.setters - are setting up requestSpecification specification.public static Response head(com.github.aivancioglo.resttest.setters.Setter setters)
Making HEAD requestSpecification.
setters - are setting up requestSpecification specification.public static Response head(java.lang.String url, com.github.aivancioglo.resttest.setters.Setter setters)
Making HEAD requestSpecification.
url - of your requestSpecification.setters - are setting up requestSpecification specification.public static Response trace(com.github.aivancioglo.resttest.setters.Setter setters)
Making TRACE requestSpecification.
setters - are setting up requestSpecification specification.public static Response trace(java.lang.String url, com.github.aivancioglo.resttest.setters.Setter setters)
Making TRACE requestSpecification.
url - of your requestSpecification.setters - are setting up requestSpecification specification.