io.scalecube.services.examples.auth.SecuredServiceByUserProfile 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("securedServiceByUserProfile")
public interface SecuredServiceByUserProfile {
@ServiceMethod
Mono hello(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy