Interface ChangeRequestService
public interface ChangeRequestService
Document me
- Since:
- 2023-02-16
-
Method Summary
Modifier and TypeMethodDescriptionvoid
approve
(com.technia.dsx.common.TenantSession session, String changeRequestId, String cestamp, String comment) create
(com.technia.dsx.common.TenantSession session, ChangeRequestCreateInput input) createImpactAnalysis
(com.technia.dsx.common.TenantSession session, String changeRequestId, ImpactAnalysisCreateInput input) getImpactAnalysis
(com.technia.dsx.common.TenantSession session, String changeRequestId, String impactAnalysisId, boolean allFields) getImpactAnalysis
(com.technia.dsx.common.TenantSession session, String changeRequestId, String impactAnalysisId, ChangeRequestField... fields) read
(com.technia.dsx.common.TenantSession session, String changeRequestId, ChangeRequestField... fields) void
reject
(com.technia.dsx.common.TenantSession session, String changeRequestId, String cestamp, String comment) update
(com.technia.dsx.common.TenantSession session, String changeRequestId, ChangeRequestUpdateInput input) updateImpactAnalysis
(com.technia.dsx.common.TenantSession session, String changeRequestId, String impactAnalysisId, ImpactAnalysisUpdateInput input)
-
Method Details
-
create
@Remote(CREATE) ChangeRequest create(com.technia.dsx.common.TenantSession session, ChangeRequestCreateInput input) - Parameters:
session
-input
-- Returns:
-
read
@Remote(READ) ChangeRequest read(com.technia.dsx.common.TenantSession session, String changeOrderId, boolean allFields) -
read
@Remote(READ) ChangeRequest read(com.technia.dsx.common.TenantSession session, String changeRequestId, ChangeRequestField... fields) -
update
@Remote(UPDATE) ChangeRequest update(com.technia.dsx.common.TenantSession session, String changeRequestId, ChangeRequestUpdateInput input) -
approve
-
reject
-
createImpactAnalysis
@Remote(CREATE) ImpactAnalysis createImpactAnalysis(com.technia.dsx.common.TenantSession session, String changeRequestId, ImpactAnalysisCreateInput input) -
getImpactAnalysis
@Remote(READ) ImpactAnalysis getImpactAnalysis(com.technia.dsx.common.TenantSession session, String changeRequestId, String impactAnalysisId, boolean allFields) -
getImpactAnalysis
@Remote(READ) ImpactAnalysis getImpactAnalysis(com.technia.dsx.common.TenantSession session, String changeRequestId, String impactAnalysisId, ChangeRequestField... fields) -
updateImpactAnalysis
@Remote(UPDATE) ImpactAnalysis updateImpactAnalysis(com.technia.dsx.common.TenantSession session, String changeRequestId, String impactAnalysisId, ImpactAnalysisUpdateInput input)
-