com.atlassian.connect.spring.ForgeContextRetriever Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlassian-connect-spring-boot-api Show documentation
Show all versions of atlassian-connect-spring-boot-api Show documentation
Provides the API of Atlassian Connect for Spring Boot
package com.atlassian.connect.spring;
import java.util.Optional;
/**
* A service for retrieving the current Forge API context from the security context.
* This will be populated for requests coming from Forge.
* @see ForgeRemote
* @since 5.1.0
*/
public interface ForgeContextRetriever {
/**
* Retrieves the current Forge API context from the security context.
*/
Optional getForgeApiContext();
}