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 TypeMethodDescriptionjavax.ws.rs.core.ResponsetestAzureAdConnection(AzureAdConnectionTestEntity connectionTestData) javax.ws.rs.core.ResponsetestAzureAdConnection(Long id, AzureAdConnectionTestEntity connectionTestData) javax.ws.rs.core.ResponsetestCrowdConnection(CrowdConnectionTestEntity connectionTestData) javax.ws.rs.core.ResponsetestCrowdConnection(Long id, CrowdConnectionTestEntity connectionTestData) javax.ws.rs.core.ResponsetestLdapConnection(LdapConnectionTestEntity connectionTestData) javax.ws.rs.core.ResponsetestLdapConnection(Long id, LdapConnectionTestEntity connectionTestData) javax.ws.rs.core.ResponsetestSearch(LdapSearchTestEntity ldapConfiguration) javax.ws.rs.core.ResponsetestSearch(LdapSearchTestEntity ldapConfiguration, Long id)
-
Constructor Details
-
DirectoryResource
-
-
Method Details
-
testLdapConnection
@POST @Path("testldap") public javax.ws.rs.core.Response testLdapConnection(LdapConnectionTestEntity connectionTestData) throws DirectoryTestFailedException, ValidationFailedException -
testLdapConnection
@POST @Path("testldap/{id}") public javax.ws.rs.core.Response testLdapConnection(@PathParam("id") Long id, LdapConnectionTestEntity connectionTestData) throws DirectoryNotFoundException, DirectoryTestFailedException, ValidationFailedException -
testCrowdConnection
@POST @Path("testcrowd") public javax.ws.rs.core.Response testCrowdConnection(CrowdConnectionTestEntity connectionTestData) throws DirectoryTestFailedException, ValidationFailedException -
testCrowdConnection
@POST @Path("testcrowd/{id}") public javax.ws.rs.core.Response testCrowdConnection(@PathParam("id") Long id, CrowdConnectionTestEntity connectionTestData) throws DirectoryNotFoundException, DirectoryTestFailedException, ValidationFailedException -
testAzureAdConnection
@POST @Path("testazuread") public javax.ws.rs.core.Response testAzureAdConnection(AzureAdConnectionTestEntity connectionTestData) throws DirectoryTestFailedException, ValidationFailedException -
testAzureAdConnection
@POST @Path("testazuread/{id}") public javax.ws.rs.core.Response testAzureAdConnection(@PathParam("id") Long id, AzureAdConnectionTestEntity connectionTestData) throws DirectoryTestFailedException, DirectoryNotFoundException, ValidationFailedException -
testSearch
@POST @Path("testsearch") public javax.ws.rs.core.Response testSearch(LdapSearchTestEntity ldapConfiguration) throws OperationFailedException, DirectoryTestFailedException, ValidationFailedException -
testSearch
@POST @Path("testsearch/{id}") public javax.ws.rs.core.Response testSearch(LdapSearchTestEntity ldapConfiguration, @PathParam("id") Long id) throws OperationFailedException, DirectoryNotFoundException, DirectoryTestFailedException, ValidationFailedException
-