io.github.EdgeMetric.mammoth.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mammoth-java-sdk Show documentation
Show all versions of mammoth-java-sdk Show documentation
SDK for integrating with Mammoth App
package io.github.EdgeMetric.mammoth;
import static io.restassured.RestAssured.given;
import io.restassured.specification.RequestSpecification;
/**
* Utilization class for common methods.
* @author Mammoth Analytics
*/
public class Utils {
public RequestSpecification commonHeader(String token, String accountID) {
return given()
.header(Constants.contentType, Constants.appJson)
.header(Constants.xAPIKey, token)
.header(Constants.xAccountID, accountID);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy