Interface DomainDelegateLinker
public interface DomainDelegateLinker
Links the domain delegate with its dynamic proxy.
Provided to exclude the methods
Provided to exclude the methods
setPdo and setOperation from the interfaces PdoProvider and
OperationProvider.-
Method Summary
Modifier and TypeMethodDescriptionstatic DomainDelegateLinkerThe singleton.<T extends PersistentDomainObject<T>>
voidlinkDomainObject(T pdo, DomainObject<T> delegate) Link the domain delegate to itsPersistentDomainObject.<T extends Operation<T>>
voidlinkDomainOperation(T operation, DomainOperation<T> delegate) Links the domain delegate to itsOperation.
-
Method Details
-
getInstance
-
linkDomainObject
Link the domain delegate to itsPersistentDomainObject.- Type Parameters:
T- the PDO type- Parameters:
pdo- the PDO proxydelegate- the domain delegate implementation
-
linkDomainOperation
Links the domain delegate to itsOperation.- Type Parameters:
T- the operation type- Parameters:
operation- the operation proxydelegate- the domain delegate implementation
-