Package com.xebialabs.xlrelease.api.v1
Interface TaskReportingApi
- All Superinterfaces:
ApiService
Operations on reporting records used by the audit report.
-
Field Summary
FieldsFields inherited from interface com.xebialabs.xlrelease.api.ApiService
DEFAULT_RESULTS_PER_PAGE, DEFAULT_RESULTS_PER_PAGE_STRING, DEPTH, ORDER_BY, PAGE, PAGE_IS_OFFSET, RESULTS_PER_PAGE, ROLE_IDS_DATA
-
Method Summary
Modifier and TypeMethodDescriptionaddRecord
(TaskReportingRecord record) Adds a new reporting record.addRecord
(TaskReportingRecord record, boolean applyTaskAttributes) Factory method to create a new instance of a build record.Factory method to create a new instance of a code compliance record.Factory method to create a new instance of a deployment record.Factory method to create a new instance of an ITSM record.Factory method to create a new instance of a plan record.default String
-
Field Details
-
TASK_REPORTING_API
- See Also:
-
-
Method Details
-
serviceName
- Specified by:
serviceName
in interfaceApiService
-
addRecord
List<TaskReportingRecord> addRecord(TaskReportingRecord record, @QueryParam("applyTaskAttributes") boolean applyTaskAttributes) -
addRecord
Adds a new reporting record. Available since Release 22.2.0, usetaskReportingApi.addRecord(record, False)
with older Release versions.- Parameters:
record
- anTaskReportingRecord
object describing the collected data.- Returns:
- the newly created record.
-
newItsmRecord
ItsmRecord newItsmRecord()Factory method to create a new instance of an ITSM record.- Returns:
- instance of the
ItsmRecord
type.
-
newPlanRecord
PlanRecord newPlanRecord()Factory method to create a new instance of a plan record.- Returns:
- instance of the
PlanRecord
type.
-
newBuildRecord
BuildRecord newBuildRecord()Factory method to create a new instance of a build record.- Returns:
- instance of the
BuildRecord
type.
-
newDeploymentRecord
DeploymentRecord newDeploymentRecord()Factory method to create a new instance of a deployment record.- Returns:
- instance of the
DeploymentRecord
type.
-
newCodeComplianceRecord
CodeComplianceRecord newCodeComplianceRecord()Factory method to create a new instance of a code compliance record.- Returns:
- instance of the
CodeComplianceRecord
type.
-