In the following, the selector value is a pre-determined designator of the usage context and is meant for identifying the service configuration appropriate for a specific usage. The selector value must not be modified – only the corresponding serviceClass value may be changed |
Element | Type | Description |
---|---|---|
service.properties.xconf | Service Delegate configuration file | Location: <Windchill> codebase/service.properties The following service configuration elements determine which serviceClass is applied in each of the following cases: If Source data references a non-disabled user the selector is UserInContextReplicationImport : <Service context="default" name="wt.org.delegate.PrincipalMatchDelegate"> <Option cardinality="singleton" requestor="wt.org.WTUser" selector="UserInContextReplicationImport" serviceClass="wt.org.delegate.ImportedUserByUserNameMatchDelegate"/> </Service> If Source data references a disabled user the selector is DisabledUserInContextReplicationImport : <Service context="default" name="wt.org.delegate.PrincipalMatchDelegate"> <Option cardinality="singleton" requestor="wt.org.WTUser" selector="DisabledUserInContextReplicationImport" serviceClass="wt.org.delegate.ImportedDisabledUserMatchDelegate"/> </Service> |
ImportedUserByUserNameMatchDelegate | OOTB delegate JAVA class | Location: <Windchill>/codebase/wt/org/ImportedUserByUserNameMatchDelegate.class This delegate implementation is for use with the selector “UserInContextReplicationImport”. OOTB, this is the delegate configured by default for this selector. This delegate is only for use in finding matching non-disabled users in Context Replication Import. It uses the source user’s name to find a matching non-disabled user in the target system |
ImportedUserByEmailIdMatchDelegate | OOTB delegate JAVA class | Location: <Windchill>codebase/wt/org/ImportedUserByEmailIdMatchDelegate.class This delegate implementation is for use with the selector “UserInContextReplicationImport”. This is NOT the delegate configured by default for this selector. This delegate is only for use in finding matching non-disabled users in Context Replication Import. It uses the source user’s email address to find a matching non-disabled user in the target system |
ImportedDisabledUserMatchDelegate | OOTB delegate JAVA class | Location: <Windchill>codebase/wt/org/ImportedDisabledUserMatchDelegate.class This delegate implementation is for use with the selector “DisabledUserInContextReplicationImport”. This is the delegate configured by default for this selector. This delegate is only for use in finding matching disabled users in Context Replication Import. It uses the source user’s name, email address, full name, and last name to find a matching disabled user in the target system |
PrincipalMatchDelegate | Delegate JAVA interface for customizers | All customized delegate implementations must adhere to the contract established by this interface |
This configuration is only supported for the selector UserInContextReplicationImport. It does not apply to the selector DisabledUserInContextReplicationImport since there are no alternative delegate implementations for the selector DisabledUserInContextReplicationImport other than the default one configured OOTB. |