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

io.scalecube.services.examples.auth.SecuredServiceByApiKey Maven / Gradle / Ivy

package io.scalecube.services.examples.auth;

import io.scalecube.services.annotations.Service;
import io.scalecube.services.annotations.ServiceMethod;
import io.scalecube.services.auth.Secured;
import reactor.core.publisher.Mono;

@Secured
@Service("securedServiceByApiKey")
public interface SecuredServiceByApiKey {

  @ServiceMethod
  Mono hello(String name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy