net.smartcosmos.security.authentication.direct.EnableDirectHandlers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartcosmos-framework Show documentation
Show all versions of smartcosmos-framework Show documentation
Provides Spring Configuration and Annotations making it easier to develop SMART COSMOS Extensions
The newest version!
package net.smartcosmos.security.authentication.direct;
import java.lang.annotation.*;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* Configures direct authentication methods for easier error and redirect handling for a
* REST service.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Configuration
@Import(DirectAuthenticationConfiguration.class)
public @interface EnableDirectHandlers {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy