public interface TestDesignServiceAsync extends TestDesignService
| Modifier and Type | Method and Description |
|---|---|
java.util.concurrent.Future<TestCase> |
addCommentAsync(CreateObjectCommentRequest createObjectCommentRequest)
Creates testcase comment from the given request.
|
java.util.concurrent.Future<TestCase> |
addCommentAsync(CreateObjectCommentRequest createObjectCommentRequest,
AsyncHandler<CreateObjectCommentRequest,TestCase> asyncHandler)
Creates testcase comment from the given request.
|
java.util.concurrent.Future<AutomationTestCase> |
createAutomationTestCaseAsync(CreateAutomationTestCaseRequest automationTestCaseRequest)
Creates the
automation test case from the given
create automation test case request |
java.util.concurrent.Future<AutomationTestCase> |
createAutomationTestCaseAsync(CreateAutomationTestCaseRequest automationTestCaseRequest,
AsyncHandler<CreateAutomationTestCaseRequest,AutomationTestCase> asyncHandler)
Creates the
automation test case from the given
create automation test case request |
java.util.concurrent.Future<TestCase> |
createTestCaseAsync(CreateTestCaseRequest testCaseRequest)
Creates the
test case from the given
create test case request |
java.util.concurrent.Future<TestCase> |
createTestCaseAsync(CreateTestCaseRequest testCaseRequest,
AsyncHandler<CreateTestCaseRequest,TestCase> asyncHandler)
Creates the
test case from the given
create test case request |
java.util.concurrent.Future<TestStep> |
createTestStepAsync(CreateTestStepRequest testStepRequest)
Creates the
test step from the given create test step request |
java.util.concurrent.Future<TestStep> |
createTestStepAsync(CreateTestStepRequest testStepRequest,
AsyncHandler<CreateTestStepRequest,TestStep> asyncHandler)
Creates the
test step from the given create test step request |
java.util.concurrent.Future<TestCase> |
getTestCaseAsync(GetTestCaseRequest testCaseRequest)
Gets
TestCase from the given test case request |
java.util.concurrent.Future<TestCase> |
getTestCaseAsync(GetTestCaseRequest testCaseRequest,
AsyncHandler<GetTestCaseRequest,TestCase> asyncHandler)
Gets
TestCase from the given test case request |
java.util.concurrent.Future<java.util.List<Field>> |
getTestCaseFieldsAsync(GetTestCaseFieldsRequest getTestCaseFieldsRequest)
Gets the test-case custom fields.
|
java.util.concurrent.Future<java.util.List<Field>> |
getTestCaseFieldsAsync(GetTestCaseFieldsRequest getTestCaseFieldsRequest,
AsyncHandler<GetTestCaseFieldsRequest,java.util.List<Field>> asyncHandler)
Gets the test-case custom fields.
|
java.util.concurrent.Future<TestStep> |
getTestStepAsync(GetTestStepRequest testStepRequest)
Gets
TestStep from the given test step request |
java.util.concurrent.Future<TestStep> |
getTestStepAsync(GetTestStepRequest testStepRequest,
AsyncHandler<GetTestStepRequest,TestStep> asyncHandler)
Gets
TestStep from the given test step request |
java.util.concurrent.Future<java.util.List<TestCase>> |
listTestCaseAsync(ListTestCaseRequest listTestCaseRequest)
Deprecated.
replace with
ProjectServiceAsync.getFieldsAsync(GetFieldsRequest) |
java.util.concurrent.Future<java.util.List<TestCase>> |
listTestCaseAsync(ListTestCaseRequest listTestCaseRequest,
AsyncHandler<ListTestCaseRequest,java.util.List<TestCase>> asyncHandler)
Deprecated.
|
java.util.concurrent.Future<java.util.List<TestStep>> |
listTestStepAsync(ListTestStepRequest testStepRequest)
Gets list of
TestStep from the given test step request |
java.util.concurrent.Future<java.util.List<TestStep>> |
listTestStepAsync(ListTestStepRequest testStepRequest,
AsyncHandler<ListTestStepRequest,java.util.List<TestStep>> asyncHandler)
Gets list of
TestStep from the given test step request |
addComment, approveTestCase, createAutomationTestCase, createTestCase, createTestStep, deleteTestCase, getTestCase, getTestCaseFields, getTestStep, listTestCase, listTestStep, moveTestCase, updateTestCasesetEndpoint, shutdown@Deprecated java.util.concurrent.Future<java.util.List<TestCase>> listTestCaseAsync(ListTestCaseRequest listTestCaseRequest) throws AuthServiceException
ProjectServiceAsync.getFieldsAsync(GetFieldsRequest)listTestCaseRequest - the given list test case request
object.test case object.AuthServiceException - if an error occurs during listing all test case objects.@Deprecated java.util.concurrent.Future<java.util.List<TestCase>> listTestCaseAsync(ListTestCaseRequest listTestCaseRequest, AsyncHandler<ListTestCaseRequest,java.util.List<TestCase>> asyncHandler) throws AuthServiceException
ProjectServiceAsync.getFieldsAsync(GetFieldsRequest, AsyncHandler)listTestCaseRequest - the given list test case request
object.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.test case object.AuthServiceException - if an error occurs during listing all test case objects.java.util.concurrent.Future<TestCase> getTestCaseAsync(GetTestCaseRequest testCaseRequest) throws AuthServiceException
TestCase from the given test case requesttestCaseRequest - the given test case requestTestCase instance.AuthServiceException - if an error occurs during getting the test case.java.util.concurrent.Future<TestCase> getTestCaseAsync(GetTestCaseRequest testCaseRequest, AsyncHandler<GetTestCaseRequest,TestCase> asyncHandler) throws AuthServiceException
TestCase from the given test case requesttestCaseRequest - the given test case requestasyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.TestCase instance.AuthServiceException - if an error occurs during getting the test case.java.util.concurrent.Future<TestStep> getTestStepAsync(GetTestStepRequest testStepRequest) throws AuthServiceException
TestStep from the given test step requesttestStepRequest - the given test step requestTestStep instance.AuthServiceException - if an error occurs during getting the test case.java.util.concurrent.Future<TestStep> getTestStepAsync(GetTestStepRequest testStepRequest, AsyncHandler<GetTestStepRequest,TestStep> asyncHandler) throws AuthServiceException
TestStep from the given test step requesttestStepRequest - the given test step requestasyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.TestStep instance.AuthServiceException - if an error occurs during getting the test case.java.util.concurrent.Future<java.util.List<TestStep>> listTestStepAsync(ListTestStepRequest testStepRequest) throws AuthServiceException
TestStep from the given test step requesttestStepRequest - the given test step requestTestStep instance.AuthServiceException - if an error occurs during getting the test step.java.util.concurrent.Future<java.util.List<TestStep>> listTestStepAsync(ListTestStepRequest testStepRequest, AsyncHandler<ListTestStepRequest,java.util.List<TestStep>> asyncHandler) throws AuthServiceException
TestStep from the given test step requesttestStepRequest - the given test step requestasyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.TestStep instance.AuthServiceException - if an error occurs during getting the test step.java.util.concurrent.Future<TestCase> createTestCaseAsync(CreateTestCaseRequest testCaseRequest) throws AuthServiceException
test case from the given
create test case requesttestCaseRequest - the given create test case request
instance.test case instance.AuthServiceException - if an error occurs during creating test case instance.java.util.concurrent.Future<TestCase> createTestCaseAsync(CreateTestCaseRequest testCaseRequest, AsyncHandler<CreateTestCaseRequest,TestCase> asyncHandler) throws AuthServiceException
test case from the given
create test case requesttestCaseRequest - the given create test case request
instance.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.test case instance.AuthServiceException - if an error occurs during creating test case instance.java.util.concurrent.Future<TestStep> createTestStepAsync(CreateTestStepRequest testStepRequest) throws AuthServiceException
test step from the given create test step requesttestStepRequest - the given create test step request
instance.test step instance.AuthServiceException - if an error occurs during creating test step instance.java.util.concurrent.Future<TestStep> createTestStepAsync(CreateTestStepRequest testStepRequest, AsyncHandler<CreateTestStepRequest,TestStep> asyncHandler) throws AuthServiceException
test step from the given create test step requesttestStepRequest - the given create test step request
instance.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.test step instance.AuthServiceException - if an error occurs during creating test step instance.java.util.concurrent.Future<java.util.List<Field>> getTestCaseFieldsAsync(GetTestCaseFieldsRequest getTestCaseFieldsRequest) throws AuthServiceException
getTestCaseFieldsRequest - the given get testcase field request
informationAuthServiceException - if an error occurs during getting test-case custom fields.java.util.concurrent.Future<java.util.List<Field>> getTestCaseFieldsAsync(GetTestCaseFieldsRequest getTestCaseFieldsRequest, AsyncHandler<GetTestCaseFieldsRequest,java.util.List<Field>> asyncHandler) throws AuthServiceException
getTestCaseFieldsRequest - the given get testcase field request
information.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.AuthServiceException - if an error occurs during getting test-case custom fields.java.util.concurrent.Future<TestCase> addCommentAsync(CreateObjectCommentRequest createObjectCommentRequest) throws AuthServiceException
createObjectCommentRequest - the given create testcase comment request
instance.TestCase instance.AuthServiceException - if an error occurs during adding comment.java.util.concurrent.Future<TestCase> addCommentAsync(CreateObjectCommentRequest createObjectCommentRequest, AsyncHandler<CreateObjectCommentRequest,TestCase> asyncHandler) throws AuthServiceException
createObjectCommentRequest - the given create testcase comment request
instance.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.TestCase instance.AuthServiceException - if an error occurs during adding comment.java.util.concurrent.Future<AutomationTestCase> createAutomationTestCaseAsync(CreateAutomationTestCaseRequest automationTestCaseRequest) throws AuthServiceException
automation test case from the given
create automation test case requestautomationTestCaseRequest - the given create automation test case request
instance.automation test case instance.AuthServiceException - if an error occurs during creating test case instance.java.util.concurrent.Future<AutomationTestCase> createAutomationTestCaseAsync(CreateAutomationTestCaseRequest automationTestCaseRequest, AsyncHandler<CreateAutomationTestCaseRequest,AutomationTestCase> asyncHandler) throws AuthServiceException
automation test case from the given
create automation test case requestautomationTestCaseRequest - the given create automation test case request
instance.asyncHandler - callback handler for events in the life-cycle of the request.
Users could provide the implementation of the for callback
methods in this interface to process the operation result or
handle the exception.automation test case instance.AuthServiceException - if an error occurs during creating test case instance.