com.atlassian.jira.rest.client.plugin.scope.JiraReadUserSessionData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jira-rest-java-client-plugin Show documentation
Show all versions of jira-rest-java-client-plugin Show documentation
JIRA REST Java Client bundled as a plugin.
The newest version!
package com.atlassian.jira.rest.client.plugin.scope;
import com.atlassian.plugin.remotable.api.jira.JiraPermissions;
import com.atlassian.plugin.remotable.spi.permission.scope.RestApiScopeHelper;
import com.google.common.collect.ImmutableList;
import static java.util.Arrays.asList;
public final class JiraReadUserSessionData extends JiraScope
{
public JiraReadUserSessionData()
{
super(JiraPermissions.READ_USER_SESSION_DATA,
ImmutableList.of(),
asList(
new RestApiScopeHelper.RestScope("auth", asList("latest", "2", "2.0.alpha1"), "/session", asList("get"))
)
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy