Class DirectoryResource
java.lang.Object
com.atlassian.crowd.plugin.rest.service.resource.directory.DirectoryResource
@Path("directory")
@Consumes("application/json")
@Produces("application/json")
public class DirectoryResource
extends Object
Represents an Directory management resource.
- Since:
- 2.10
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Response
testAzureAdConnection
(AzureAdConnectionTestEntity connectionTestData) jakarta.ws.rs.core.Response
testAzureAdConnection
(Long id, AzureAdConnectionTestEntity connectionTestData) jakarta.ws.rs.core.Response
testCrowdConnection
(CrowdConnectionTestEntity connectionTestData) jakarta.ws.rs.core.Response
testCrowdConnection
(Long id, CrowdConnectionTestEntity connectionTestData) jakarta.ws.rs.core.Response
testLdapConnection
(LdapConnectionTestEntity connectionTestData) jakarta.ws.rs.core.Response
testLdapConnection
(Long id, LdapConnectionTestEntity connectionTestData) jakarta.ws.rs.core.Response
testSearch
(LdapSearchTestEntity ldapConfiguration) jakarta.ws.rs.core.Response
testSearch
(LdapSearchTestEntity ldapConfiguration, Long id)
-
Constructor Details
-
DirectoryResource
-
-
Method Details
-
testLdapConnection
@POST @Path("testldap") public jakarta.ws.rs.core.Response testLdapConnection(LdapConnectionTestEntity connectionTestData) throws DirectoryTestFailedException, ValidationFailedException -
testLdapConnection
@POST @Path("testldap/{id}") public jakarta.ws.rs.core.Response testLdapConnection(@PathParam("id") Long id, LdapConnectionTestEntity connectionTestData) throws DirectoryNotFoundException, DirectoryTestFailedException, ValidationFailedException -
testCrowdConnection
@POST @Path("testcrowd") public jakarta.ws.rs.core.Response testCrowdConnection(CrowdConnectionTestEntity connectionTestData) throws DirectoryTestFailedException, ValidationFailedException -
testCrowdConnection
@POST @Path("testcrowd/{id}") public jakarta.ws.rs.core.Response testCrowdConnection(@PathParam("id") Long id, CrowdConnectionTestEntity connectionTestData) throws DirectoryNotFoundException, DirectoryTestFailedException, ValidationFailedException -
testAzureAdConnection
@POST @Path("testazuread") public jakarta.ws.rs.core.Response testAzureAdConnection(AzureAdConnectionTestEntity connectionTestData) throws DirectoryTestFailedException, ValidationFailedException -
testAzureAdConnection
@POST @Path("testazuread/{id}") public jakarta.ws.rs.core.Response testAzureAdConnection(@PathParam("id") Long id, AzureAdConnectionTestEntity connectionTestData) throws DirectoryTestFailedException, DirectoryNotFoundException, ValidationFailedException -
testSearch
@POST @Path("testsearch") public jakarta.ws.rs.core.Response testSearch(LdapSearchTestEntity ldapConfiguration) throws OperationFailedException, DirectoryTestFailedException, ValidationFailedException -
testSearch
@POST @Path("testsearch/{id}") public jakarta.ws.rs.core.Response testSearch(LdapSearchTestEntity ldapConfiguration, @PathParam("id") Long id) throws OperationFailedException, DirectoryNotFoundException, DirectoryTestFailedException, ValidationFailedException
-