Package wt.enterprise

Interface CopyBinaryLinkDelegate

All Known Implementing Classes:
CopyObjectToObjectLinkDelegate, CopyObjectToVersionLinkDelegate, CopyVersionToObjectLinkDelegate, CopyVersionToVersionLinkDelegate

public interface CopyBinaryLinkDelegate
Delegate for copying relationships.

Supported API: true

Extendable: true
  • Method Details

    • copyRelationship

      BinaryLink copyRelationship(WTObject original, WTObject copy, BinaryLink link, String role) throws WTException
      Copy the relationship from the original object to the new object, returning the newly created BinaryLink.

      Supported API: true
      Parameters:
      original - Original object that was copied.
      copy - New copy of the original object.
      link - The link from the original that needs to be copied.
      role - Designates which role to copy to the new object. For example orig uses part a would be copied to new uses part b if the role is uses.
      Returns:
      BinaryLink
      Throws:
      WTException
    • copyRelationship

      BinaryLink copyRelationship(WTObject original, WTObject copyA, WTObject copyB, BinaryLink link, String role) throws WTException
      Copy the relationship from the original object to the new object, returning the newly created BinaryLink.

      Supported API: true
      Parameters:
      original - Original object that was copied.
      copyA - New copy of the original object.
      copyB - Multi-copy object related to original.
      link - The link from the original that needs to be copied.
      role - Designates which role to copy to the new object. For example orig uses part a would be copied to new uses part b if the role is uses.
      Returns:
      BinaryLink
      Throws:
      WTException