Graph-based policy refresh

During the FNOL process, ClaimCenter makes a copy of the relevant policy and stores it in ClaimCenter. For most claims, this policy copy remains as is for the life of the claim.

However, it is possible for the initial copy of the policy to have issues. For example, suppose you have a claim for collision damage done to a Ford Fiesta. The policy erroneously does not have the collision coverage for the vehicle. When the claim is created, the erroneous policy is copied to ClaimCenter. It is then discovered that the relevant coverage is missing from the policy. The policy is corrected, but the copy of the policy in ClaimCenter still lacks the coverage.

In situations like this, insurers may choose to implement functionality for policy refresh. This is the process of recopying a policy for an existing claim.

Policy refresh and the IPolicySearchAdapter

The IPolicySearchAdapter has two methods relevant to policy refresh:

  • retrievePolicyFromPolicy - This retrieves a new copy of the policy from the existing policy copy. This is used for situations where ClaimCenter does not need to execute a search for the policy a second time.

  • retrievePolicySummaryFromPolicy - This retrieves a PolicySummary from the PAS that corresponds to the existing policy, which can then be used to recopy the policy. This is used for situations where ClaimCenter does need to execute a search for the policy a second time.

For more information on the difference between these two methods, see the Plugins, Prebuilt Integrations, and SOAP APIs.

The IPolicySearchAdapter also has a plugin parameter named useGraphBasedPolicyRetrieveForRefresh. This parameter identifies whether your instance makes use of graph-based retrieval for policy refresh.

  • If your instance uses graphs during policy refresh for at least some policy types, set this to true.

  • If your instance uses graphs for policy retrieval, but never for policy refresh, set this to false.

Note that graph-based retrieval can only be used for policy refresh scenarios that refresh the policy directly and do not require a second PAS search. Therefore, any refresh scenario that involves the retrievePolicySummaryFromPolicy method must be done using traditional policy retrieval approaches.