All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dke.data.agrirouter.api.service.RevokingService Maven / Gradle / Ivy

Go to download

This project contains the API for the communication with the agrirouter. Everything you need for the onboarding process, secure communication and much more.

There is a newer version: 1.0.0-jdk11-RC1
Show newest version
package com.dke.data.agrirouter.api.service;

import com.dke.data.agrirouter.api.dto.revoke.RevokingError;
import com.dke.data.agrirouter.api.enums.RevokeResponse;
import com.dke.data.agrirouter.api.service.parameters.RevokeParameters;
import java.util.Optional;

public interface RevokingService {

  RevokeResponse revoke(RevokeParameters revokeParameters);

  /**
   * The last error as RevokingError-Object, if the last revoking failed as object read from the
   * JSON String
   *
   * @return The last error as RevokingError-Object
   */
  Optional getLastRevokingError(String errorResponse);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy