...
- Create Registration (NEW to ADVISED)
- Module Sync Success ( ADVISED TO READY)
Fail (ADVISED TO LOCKED) - Retry ( LOCKED TO ADVISED )
- Deleting ( ADVISED to DELETING , READY to DELETING, LOCKED to DELETING ) / separate us **
- Deleted ( DELETING to DELETED ) separate us **
Jira Legacy server System Jira columnIds issuekey,summary,issuetype,created,updated,duedate,assignee,reporter,priority,status,resolution columns key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution serverId 4733707d-2057-3a0f-ae5e-4fd8aff50176 key CPS-1120
At a high level the method signature should like below.
Code Block | ||||
---|---|---|---|---|
| ||||
/**
* Responsible for handling the state transition and publishing the lcm event if required.
*
* @param cmHandleId cm handle id
* @param yangModelCmHandle cm handle represented as Yang Model
* @param targetCmHandleState target cm handle state
*/
void updateState(final String cmHandleId, final YangModelCmHandle yangModelCmHandle,
final CmHandleState targetCmHandleState); |
References :
CPS-799 Spike: Define states and state handling for CM handle
...