ApiService

public interface ApiService

This interface defines the REST endpoints to contact to get important data for the correct operation of the app. All the requests made are GET ones.

Functions

getCertStatus
Link copied to clipboard
@GET(value = signercertificate/status)
abstract Response<List<String>> getCertStatus()
getCertUpdate
Link copied to clipboard
@GET(value = signercertificate/update)
abstract Response<ResponseBody> getCertUpdate(@Header(value = x-resume-token) String contentRange)
getCRLStatus
Link copied to clipboard
@GET(value = drl/check)
abstract Response<ResponseBody> getCRLStatus(@Query(value = version) Long version)
getRevokeList
Link copied to clipboard
@GET(value = drl)
abstract Response<ResponseBody> getRevokeList(@Query(value = version) Long version, @Query(value = chunk) Long chunk)
getValidationRules
Link copied to clipboard
@GET(value = settings)
abstract Response<ResponseBody> getValidationRules()