This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface ServerService { | |
static final String REQUEST_SIGNATURE_HEADER = "X-Request-Signature"; | |
static final String CPU_ARCH_HEADER = "X-CPU-Arch"; | |
@POST("{project}/rest/public/sync/configuration/{number}") | |
Call<ResponseBody> enrollAndGetServerConfigRaw(@Path("project") String project, | |
@Path("number") String number, | |
@Header(REQUEST_SIGNATURE_HEADER) String signature, | |
@Header(CPU_ARCH_HEADER) String cpuArch, |