com.atlassian.connect.spring.AtlassianForgeRestClients 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;
/**
* A {@link ForgeRequestProductMethods} that provides methods to make Forge authenticated requests to the Atlassian products
*/
public abstract class AtlassianForgeRestClients implements ForgeRequestProductMethods {
/**
* For making requests to Atlassian products using OAuth 2.0
* The principal of the request is the app.
*
* @return a REST client
*/
public abstract ForgeRequestProductMethods asApp();
/**
* For making requests to Atlassian products using OAuth 2.0
* The principal of the request is the user.
*
* @return a REST client
*/
public abstract ForgeRequestProductMethods asUser();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy