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

io.scalecube.security.api.AccessControl Maven / Gradle / Ivy

The newest version!
package io.scalecube.security.api;

import reactor.core.publisher.Mono;

public interface AccessControl {
  /**
   * Request for an action to be made.
   *
   * @param token or any kind of identifying string
   * @param resource the action name
   * @return A mono with active profile or with an error.
   */
  Mono check(String token, String resource);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy