Class MatchAndMergeRegistry
- java.lang.Object
-
- com.orchestranetworks.addon.mame.registration.MatchAndMergeRegistry
-
public abstract class MatchAndMergeRegistry extends java.lang.ObjectProvides a way to register custom function for field or record
-
-
Constructor Summary
Constructors Constructor Description MatchAndMergeRegistry()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract MergeFunctionDeclarationgetFieldMergeFunction(java.lang.String functionName)abstract RecordSelectionFunctionDeclarationgetRecordSelectionFunction(java.lang.String functionName)abstract voidregisterMergeFunction(MergeFunctionDeclaration mergeFunction)Ensures merge function registration in the add-on'sMerge Functiontable.abstract voidregisterRecordSelectionFunction(RecordSelectionFunctionDeclaration recordSelectionFunctionDeclaration)Ensures record selection function registration in the add-on'sRecord selection functionstable.
-
-
-
Method Detail
-
registerMergeFunction
public abstract void registerMergeFunction(MergeFunctionDeclaration mergeFunction) throws com.orchestranetworks.service.OperationException
Ensures merge function registration in the add-on'sMerge Functiontable.- Parameters:
mergeFunction- A merge function- Throws:
com.orchestranetworks.service.OperationException
-
getFieldMergeFunction
public abstract MergeFunctionDeclaration getFieldMergeFunction(java.lang.String functionName)
-
registerRecordSelectionFunction
public abstract void registerRecordSelectionFunction(RecordSelectionFunctionDeclaration recordSelectionFunctionDeclaration) throws com.orchestranetworks.service.OperationException
Ensures record selection function registration in the add-on'sRecord selection functionstable.- Throws:
com.orchestranetworks.service.OperationException
-
getRecordSelectionFunction
public abstract RecordSelectionFunctionDeclaration getRecordSelectionFunction(java.lang.String functionName)
-
-