Package com.inteliqua.rest.common.update
Interface ModificationRequest
-
- All Known Implementing Classes:
AddressDataModificationRequest,ChildModificationRequest,ConsentDataModificationRequest,EmailModificationRequest,TelephoneModificationRequest
public interface ModificationRequestRepresents a modification request for a multi-collection update.This interface is used in scenarios where a client needs to perform an update across multiple collections in a single request. The client must specify the system code (QCCode) and the modification action (e.g., add, update, or delete) within the request body.
- Author:
- nikritikos
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModificationTypegetAction()Gets the type of modification to be performed.StringgetSystemCode()Gets the system code (QCCode) that identifies the specific system or collection being modified.
-
-
-
Method Detail
-
getSystemCode
String getSystemCode()
Gets the system code (QCCode) that identifies the specific system or collection being modified.- Returns:
- The system code associated with the modification request.
-
getAction
ModificationType getAction()
Gets the type of modification to be performed.The modification action could be an add, update, or delete, which is represented by the
ModificationTypeenum. This action dictates the nature of the update to be applied.- Returns:
- The
ModificationTypethat defines the action to be performed.
-
-