Class DMEntityAssociation

All Implemented Interfaces:
IAsset, ICatalog, IDM, IDMEntityAssociation, IReferenceable, AuditDetail, Serializable, Comparable<Reference>

@Generated("com.atlan.generators.ModelGeneratorV2") public class DMEntityAssociation extends Asset implements IDMEntityAssociation, IDM, ICatalog, IAsset, IReferenceable
Instance of a data entity association in Atlan.
See Also:
  • Field Details

  • Constructor Details

  • Method Details

    • trimToReference

      public DMEntityAssociation trimToReference() throws InvalidRequestException
      Builds the minimal object necessary to create a relationship to a DMEntityAssociation, from a potentially more-complete DMEntityAssociation object.
      Overrides:
      trimToReference in class Asset
      Returns:
      the minimal object necessary to relate to the DMEntityAssociation
      Throws:
      InvalidRequestException - if any of the minimal set of required properties for a DMEntityAssociation relationship are not found in the initial object
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select()
      Start a fluent search that will return all DMEntityAssociation assets. Additional conditions can be chained onto the returned search before any asset retrieval is attempted, ensuring all conditions are pushed-down for optimal retrieval. Only active (non-archived) DMEntityAssociation assets will be included.
      Returns:
      a fluent search that includes all DMEntityAssociation assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(AtlanClient client)
      Start a fluent search that will return all DMEntityAssociation assets. Additional conditions can be chained onto the returned search before any asset retrieval is attempted, ensuring all conditions are pushed-down for optimal retrieval. Only active (non-archived) DMEntityAssociation assets will be included.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the assets
      Returns:
      a fluent search that includes all DMEntityAssociation assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(boolean includeArchived)
      Start a fluent search that will return all DMEntityAssociation assets. Additional conditions can be chained onto the returned search before any asset retrieval is attempted, ensuring all conditions are pushed-down for optimal retrieval.
      Parameters:
      includeArchived - when true, archived (soft-deleted) DMEntityAssociations will be included
      Returns:
      a fluent search that includes all DMEntityAssociation assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(AtlanClient client, boolean includeArchived)
      Start a fluent search that will return all DMEntityAssociation assets. Additional conditions can be chained onto the returned search before any asset retrieval is attempted, ensuring all conditions are pushed-down for optimal retrieval.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the assets
      includeArchived - when true, archived (soft-deleted) DMEntityAssociations will be included
      Returns:
      a fluent search that includes all DMEntityAssociation assets
    • refByGuid

      public static DMEntityAssociation refByGuid(String guid)
      Reference to a DMEntityAssociation by GUID. Use this to create a relationship to this DMEntityAssociation, where the relationship should be replaced.
      Parameters:
      guid - the GUID of the DMEntityAssociation to reference
      Returns:
      reference to a DMEntityAssociation that can be used for defining a relationship to a DMEntityAssociation
    • refByGuid

      public static DMEntityAssociation refByGuid(String guid, Reference.SaveSemantic semantic)
      Reference to a DMEntityAssociation by GUID. Use this to create a relationship to this DMEntityAssociation, where you want to further control how that relationship should be updated (i.e. replaced, appended, or removed).
      Parameters:
      guid - the GUID of the DMEntityAssociation to reference
      semantic - how to save this relationship (replace all with this, append it, or remove it)
      Returns:
      reference to a DMEntityAssociation that can be used for defining a relationship to a DMEntityAssociation
    • refByQualifiedName

      public static DMEntityAssociation refByQualifiedName(String qualifiedName)
      Reference to a DMEntityAssociation by qualifiedName. Use this to create a relationship to this DMEntityAssociation, where the relationship should be replaced.
      Parameters:
      qualifiedName - the qualifiedName of the DMEntityAssociation to reference
      Returns:
      reference to a DMEntityAssociation that can be used for defining a relationship to a DMEntityAssociation
    • refByQualifiedName

      public static DMEntityAssociation refByQualifiedName(String qualifiedName, Reference.SaveSemantic semantic)
      Reference to a DMEntityAssociation by qualifiedName. Use this to create a relationship to this DMEntityAssociation, where you want to further control how that relationship should be updated (i.e. replaced, appended, or removed).
      Parameters:
      qualifiedName - the qualifiedName of the DMEntityAssociation to reference
      semantic - how to save this relationship (replace all with this, append it, or remove it)
      Returns:
      reference to a DMEntityAssociation that can be used for defining a relationship to a DMEntityAssociation
    • get

      public static DMEntityAssociation get(String id) throws AtlanException
      Retrieves a DMEntityAssociation by one of its identifiers, complete with all of its relationships.
      Parameters:
      id - of the DMEntityAssociation to retrieve, either its GUID or its full qualifiedName
      Returns:
      the requested full DMEntityAssociation, complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the DMEntityAssociation does not exist or the provided GUID is not a DMEntityAssociation
    • get

      public static DMEntityAssociation get(AtlanClient client, String id) throws AtlanException
      Retrieves a DMEntityAssociation by one of its identifiers, complete with all of its relationships.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the asset
      id - of the DMEntityAssociation to retrieve, either its GUID or its full qualifiedName
      Returns:
      the requested full DMEntityAssociation, complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the DMEntityAssociation does not exist or the provided GUID is not a DMEntityAssociation
    • get

      public static DMEntityAssociation get(AtlanClient client, String id, boolean includeRelationships) throws AtlanException
      Retrieves a DMEntityAssociation by one of its identifiers, optionally complete with all of its relationships.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the asset
      id - of the DMEntityAssociation to retrieve, either its GUID or its full qualifiedName
      includeRelationships - if true, all of the asset's relationships will also be retrieved; if false, no relationships will be retrieved
      Returns:
      the requested full DMEntityAssociation, optionally complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the DMEntityAssociation does not exist or the provided GUID is not a DMEntityAssociation
    • restore

      public static boolean restore(String qualifiedName) throws AtlanException
      Restore the archived (soft-deleted) DMEntityAssociation to active.
      Parameters:
      qualifiedName - for the DMEntityAssociation
      Returns:
      true if the DMEntityAssociation is now active, and false otherwise
      Throws:
      AtlanException - on any API problems
    • restore

      public static boolean restore(AtlanClient client, String qualifiedName) throws AtlanException
      Restore the archived (soft-deleted) DMEntityAssociation to active.
      Parameters:
      client - connectivity to the Atlan tenant on which to restore the asset
      qualifiedName - for the DMEntityAssociation
      Returns:
      true if the DMEntityAssociation is now active, and false otherwise
      Throws:
      AtlanException - on any API problems
    • updater

      public static DMEntityAssociation.DMEntityAssociationBuilder<?,?> updater(String qualifiedName, String name)
      Builds the minimal object necessary to update a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the minimal request necessary to update the DMEntityAssociation, as a builder
    • trimToRequired

      Builds the minimal object necessary to apply an update to a DMEntityAssociation, from a potentially more-complete DMEntityAssociation object.
      Overrides:
      trimToRequired in class Asset
      Returns:
      the minimal object necessary to update the DMEntityAssociation, as a builder
      Throws:
      InvalidRequestException - if any of the minimal set of required properties for DMEntityAssociation are not found in the initial object
    • removeDescription

      public static DMEntityAssociation removeDescription(String qualifiedName, String name) throws AtlanException
      Remove the system description from a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeDescription

      public static DMEntityAssociation removeDescription(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the system description from a DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to remove the asset's description
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeUserDescription

      public static DMEntityAssociation removeUserDescription(String qualifiedName, String name) throws AtlanException
      Remove the user's description from a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeUserDescription

      public static DMEntityAssociation removeUserDescription(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the user's description from a DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to remove the asset's description
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeOwners

      public static DMEntityAssociation removeOwners(String qualifiedName, String name) throws AtlanException
      Remove the owners from a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeOwners

      public static DMEntityAssociation removeOwners(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the owners from a DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove the DMEntityAssociation's owners
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • updateCertificate

      public static DMEntityAssociation updateCertificate(String qualifiedName, CertificateStatus certificate, String message) throws AtlanException
      Update the certificate on a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      certificate - to use
      message - (optional) message, or null if no message
      Returns:
      the updated DMEntityAssociation, or null if the update failed
      Throws:
      AtlanException - on any API problems
    • updateCertificate

      public static DMEntityAssociation updateCertificate(AtlanClient client, String qualifiedName, CertificateStatus certificate, String message) throws AtlanException
      Update the certificate on a DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to update the DMEntityAssociation's certificate
      qualifiedName - of the DMEntityAssociation
      certificate - to use
      message - (optional) message, or null if no message
      Returns:
      the updated DMEntityAssociation, or null if the update failed
      Throws:
      AtlanException - on any API problems
    • removeCertificate

      public static DMEntityAssociation removeCertificate(String qualifiedName, String name) throws AtlanException
      Remove the certificate from a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeCertificate

      public static DMEntityAssociation removeCertificate(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the certificate from a DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove the DMEntityAssociation's certificate
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • updateAnnouncement

      public static DMEntityAssociation updateAnnouncement(String qualifiedName, AtlanAnnouncementType type, String title, String message) throws AtlanException
      Update the announcement on a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      type - type of announcement to set
      title - (optional) title of the announcement to set (or null for no title)
      message - (optional) message of the announcement to set (or null for no message)
      Returns:
      the result of the update, or null if the update failed
      Throws:
      AtlanException - on any API problems
    • updateAnnouncement

      public static DMEntityAssociation updateAnnouncement(AtlanClient client, String qualifiedName, AtlanAnnouncementType type, String title, String message) throws AtlanException
      Update the announcement on a DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to update the DMEntityAssociation's announcement
      qualifiedName - of the DMEntityAssociation
      type - type of announcement to set
      title - (optional) title of the announcement to set (or null for no title)
      message - (optional) message of the announcement to set (or null for no message)
      Returns:
      the result of the update, or null if the update failed
      Throws:
      AtlanException - on any API problems
    • removeAnnouncement

      public static DMEntityAssociation removeAnnouncement(String qualifiedName, String name) throws AtlanException
      Remove the announcement from a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeAnnouncement

      public static DMEntityAssociation removeAnnouncement(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the announcement from a DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan client from which to remove the DMEntityAssociation's announcement
      qualifiedName - of the DMEntityAssociation
      name - of the DMEntityAssociation
      Returns:
      the updated DMEntityAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • replaceTerms

      public static DMEntityAssociation replaceTerms(String qualifiedName, String name, List<IGlossaryTerm> terms) throws AtlanException
      Replace the terms linked to the DMEntityAssociation.
      Parameters:
      qualifiedName - for the DMEntityAssociation
      name - human-readable name of the DMEntityAssociation
      terms - the list of terms to replace on the DMEntityAssociation, or null to remove all terms from the DMEntityAssociation
      Returns:
      the DMEntityAssociation that was updated (note that it will NOT contain details of the replaced terms)
      Throws:
      AtlanException - on any API problems
    • replaceTerms

      public static DMEntityAssociation replaceTerms(AtlanClient client, String qualifiedName, String name, List<IGlossaryTerm> terms) throws AtlanException
      Replace the terms linked to the DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to replace the DMEntityAssociation's assigned terms
      qualifiedName - for the DMEntityAssociation
      name - human-readable name of the DMEntityAssociation
      terms - the list of terms to replace on the DMEntityAssociation, or null to remove all terms from the DMEntityAssociation
      Returns:
      the DMEntityAssociation that was updated (note that it will NOT contain details of the replaced terms)
      Throws:
      AtlanException - on any API problems
    • appendTerms

      public static DMEntityAssociation appendTerms(String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Link additional terms to the DMEntityAssociation, without replacing existing terms linked to the DMEntityAssociation. Note: this operation must make two API calls — one to retrieve the DMEntityAssociation's existing terms, and a second to append the new terms.
      Parameters:
      qualifiedName - for the DMEntityAssociation
      terms - the list of terms to append to the DMEntityAssociation
      Returns:
      the DMEntityAssociation that was updated (note that it will NOT contain details of the appended terms)
      Throws:
      AtlanException - on any API problems
    • appendTerms

      public static DMEntityAssociation appendTerms(AtlanClient client, String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Link additional terms to the DMEntityAssociation, without replacing existing terms linked to the DMEntityAssociation. Note: this operation must make two API calls — one to retrieve the DMEntityAssociation's existing terms, and a second to append the new terms.
      Parameters:
      client - connectivity to the Atlan tenant on which to append terms to the DMEntityAssociation
      qualifiedName - for the DMEntityAssociation
      terms - the list of terms to append to the DMEntityAssociation
      Returns:
      the DMEntityAssociation that was updated (note that it will NOT contain details of the appended terms)
      Throws:
      AtlanException - on any API problems
    • removeTerms

      public static DMEntityAssociation removeTerms(String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Remove terms from a DMEntityAssociation, without replacing all existing terms linked to the DMEntityAssociation. Note: this operation must make two API calls — one to retrieve the DMEntityAssociation's existing terms, and a second to remove the provided terms.
      Parameters:
      qualifiedName - for the DMEntityAssociation
      terms - the list of terms to remove from the DMEntityAssociation, which must be referenced by GUID
      Returns:
      the DMEntityAssociation that was updated (note that it will NOT contain details of the resulting terms)
      Throws:
      AtlanException - on any API problems
    • removeTerms

      public static DMEntityAssociation removeTerms(AtlanClient client, String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Remove terms from a DMEntityAssociation, without replacing all existing terms linked to the DMEntityAssociation. Note: this operation must make two API calls — one to retrieve the DMEntityAssociation's existing terms, and a second to remove the provided terms.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove terms from the DMEntityAssociation
      qualifiedName - for the DMEntityAssociation
      terms - the list of terms to remove from the DMEntityAssociation, which must be referenced by GUID
      Returns:
      the DMEntityAssociation that was updated (note that it will NOT contain details of the resulting terms)
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static DMEntityAssociation appendAtlanTags(String qualifiedName, List<String> atlanTagNames) throws AtlanException
      Add Atlan tags to a DMEntityAssociation, without replacing existing Atlan tags linked to the DMEntityAssociation. Note: this operation must make two API calls — one to retrieve the DMEntityAssociation's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      atlanTagNames - human-readable names of the Atlan tags to add
      Returns:
      the updated DMEntityAssociation
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static DMEntityAssociation appendAtlanTags(AtlanClient client, String qualifiedName, List<String> atlanTagNames) throws AtlanException
      Add Atlan tags to a DMEntityAssociation, without replacing existing Atlan tags linked to the DMEntityAssociation. Note: this operation must make two API calls — one to retrieve the DMEntityAssociation's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      client - connectivity to the Atlan tenant on which to append Atlan tags to the DMEntityAssociation
      qualifiedName - of the DMEntityAssociation
      atlanTagNames - human-readable names of the Atlan tags to add
      Returns:
      the updated DMEntityAssociation
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static DMEntityAssociation appendAtlanTags(String qualifiedName, List<String> atlanTagNames, boolean propagate, boolean removePropagationsOnDelete, boolean restrictLineagePropagation) throws AtlanException
      Add Atlan tags to a DMEntityAssociation, without replacing existing Atlan tags linked to the DMEntityAssociation. Note: this operation must make two API calls — one to retrieve the DMEntityAssociation's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      atlanTagNames - human-readable names of the Atlan tags to add
      propagate - whether to propagate the Atlan tag (true) or not (false)
      removePropagationsOnDelete - whether to remove the propagated Atlan tags when the Atlan tag is removed from this asset (true) or not (false)
      restrictLineagePropagation - whether to avoid propagating through lineage (true) or do propagate through lineage (false)
      Returns:
      the updated DMEntityAssociation
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static DMEntityAssociation appendAtlanTags(AtlanClient client, String qualifiedName, List<String> atlanTagNames, boolean propagate, boolean removePropagationsOnDelete, boolean restrictLineagePropagation) throws AtlanException
      Add Atlan tags to a DMEntityAssociation, without replacing existing Atlan tags linked to the DMEntityAssociation. Note: this operation must make two API calls — one to retrieve the DMEntityAssociation's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      client - connectivity to the Atlan tenant on which to append Atlan tags to the DMEntityAssociation
      qualifiedName - of the DMEntityAssociation
      atlanTagNames - human-readable names of the Atlan tags to add
      propagate - whether to propagate the Atlan tag (true) or not (false)
      removePropagationsOnDelete - whether to remove the propagated Atlan tags when the Atlan tag is removed from this asset (true) or not (false)
      restrictLineagePropagation - whether to avoid propagating through lineage (true) or do propagate through lineage (false)
      Returns:
      the updated DMEntityAssociation
      Throws:
      AtlanException - on any API problems
    • removeAtlanTag

      public static void removeAtlanTag(String qualifiedName, String atlanTagName) throws AtlanException
      Remove an Atlan tag from a DMEntityAssociation.
      Parameters:
      qualifiedName - of the DMEntityAssociation
      atlanTagName - human-readable name of the Atlan tag to remove
      Throws:
      AtlanException - on any API problems, or if the Atlan tag does not exist on the DMEntityAssociation
    • removeAtlanTag

      public static void removeAtlanTag(AtlanClient client, String qualifiedName, String atlanTagName) throws AtlanException
      Remove an Atlan tag from a DMEntityAssociation.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove an Atlan tag from a DMEntityAssociation
      qualifiedName - of the DMEntityAssociation
      atlanTagName - human-readable name of the Atlan tag to remove
      Throws:
      AtlanException - on any API problems, or if the Atlan tag does not exist on the DMEntityAssociation
    • _internal

      public static DMEntityAssociation.DMEntityAssociationBuilder<?,?> _internal()
    • toBuilder

      Overrides:
      toBuilder in class Reference
    • getDmBusinessDate

      public Long getDmBusinessDate()
      Business date for the asset.
      Specified by:
      getDmBusinessDate in interface IDM
      Specified by:
      getDmBusinessDate in interface IDMEntityAssociation
    • getDmCardinality

      public DMCardinalityType getDmCardinality()
      Cardinality of the data entity association.
      Specified by:
      getDmCardinality in interface IDMEntityAssociation
    • getDmDataModelDomain

      public String getDmDataModelDomain()
      A domain of the data model in which this asset exists.
      Specified by:
      getDmDataModelDomain in interface IDM
      Specified by:
      getDmDataModelDomain in interface IDMEntityAssociation
    • getDmDataModelName

      public String getDmDataModelName()
      Simple name of the model in which this asset exists, or empty if it is itself a data model.
      Specified by:
      getDmDataModelName in interface IDM
      Specified by:
      getDmDataModelName in interface IDMEntityAssociation
    • getDmDataModelNamespace

      public String getDmDataModelNamespace()
      A namespace of the data model in which this asset exists.
      Specified by:
      getDmDataModelNamespace in interface IDM
      Specified by:
      getDmDataModelNamespace in interface IDMEntityAssociation
    • getDmDataModelQualifiedName

      public String getDmDataModelQualifiedName()
      Unique name of the model in which this asset exists, or empty if it is itself a data model.
      Specified by:
      getDmDataModelQualifiedName in interface IDM
      Specified by:
      getDmDataModelQualifiedName in interface IDMEntityAssociation
    • getDmEntityFrom

      public IDMEntity getDmEntityFrom()
      Entity from which this association is related.
      Specified by:
      getDmEntityFrom in interface IDMEntityAssociation
    • getDmEntityFromQualifiedName

      public String getDmEntityFromQualifiedName()
      Unique name of the association from this entity is related.
      Specified by:
      getDmEntityFromQualifiedName in interface IDMEntityAssociation
    • getDmEntityName

      public String getDmEntityName()
      Simple name of the entity in which this asset exists, or empty if it is itself a data model entity.
      Specified by:
      getDmEntityName in interface IDM
      Specified by:
      getDmEntityName in interface IDMEntityAssociation
    • getDmEntityQualifiedName

      public String getDmEntityQualifiedName()
      Unique name of the entity in which this asset exists, or empty if it is itself a data model entity.
      Specified by:
      getDmEntityQualifiedName in interface IDM
      Specified by:
      getDmEntityQualifiedName in interface IDMEntityAssociation
    • getDmEntityTo

      public IDMEntity getDmEntityTo()
      Entity to which this association is related.
      Specified by:
      getDmEntityTo in interface IDMEntityAssociation
    • getDmEntityToQualifiedName

      public String getDmEntityToQualifiedName()
      Unique name of the association to which this entity is related.
      Specified by:
      getDmEntityToQualifiedName in interface IDMEntityAssociation
    • getDmExpiredAtBusinessDate

      public Long getDmExpiredAtBusinessDate()
      Business expiration date for the asset.
      Specified by:
      getDmExpiredAtBusinessDate in interface IDM
      Specified by:
      getDmExpiredAtBusinessDate in interface IDMEntityAssociation
    • getDmExpiredAtSystemDate

      public Long getDmExpiredAtSystemDate()
      System expiration date for the asset.
      Specified by:
      getDmExpiredAtSystemDate in interface IDM
      Specified by:
      getDmExpiredAtSystemDate in interface IDMEntityAssociation
    • getDmLabel

      public String getDmLabel()
      Label of the data entity association.
      Specified by:
      getDmLabel in interface IDMEntityAssociation
    • getDmSystemDate

      public Long getDmSystemDate()
      System date for the asset.
      Specified by:
      getDmSystemDate in interface IDM
      Specified by:
      getDmSystemDate in interface IDMEntityAssociation
    • getDmVersionName

      public String getDmVersionName()
      Simple name of the version in which this asset exists, or empty if it is itself a data model version.
      Specified by:
      getDmVersionName in interface IDM
      Specified by:
      getDmVersionName in interface IDMEntityAssociation
    • getDmVersionQualifiedName

      public String getDmVersionQualifiedName()
      Unique name of the version in which this asset exists, or empty if it is itself a data model version.
      Specified by:
      getDmVersionQualifiedName in interface IDM
      Specified by:
      getDmVersionQualifiedName in interface IDMEntityAssociation
    • getInputToAirflowTasks

      public SortedSet<IAirflowTask> getInputToAirflowTasks()
      Tasks to which this asset provides input.
      Specified by:
      getInputToAirflowTasks in interface ICatalog
      Specified by:
      getInputToAirflowTasks in interface IDM
      Specified by:
      getInputToAirflowTasks in interface IDMEntityAssociation
    • getInputToProcesses

      public SortedSet<ILineageProcess> getInputToProcesses()
      Processes to which this asset provides input.
      Specified by:
      getInputToProcesses in interface ICatalog
      Specified by:
      getInputToProcesses in interface IDM
      Specified by:
      getInputToProcesses in interface IDMEntityAssociation
    • getInputToSparkJobs

      public SortedSet<ISparkJob> getInputToSparkJobs()
      TBC
      Specified by:
      getInputToSparkJobs in interface ICatalog
      Specified by:
      getInputToSparkJobs in interface IDM
      Specified by:
      getInputToSparkJobs in interface IDMEntityAssociation
    • getOutputFromAirflowTasks

      public SortedSet<IAirflowTask> getOutputFromAirflowTasks()
      Tasks from which this asset is output.
      Specified by:
      getOutputFromAirflowTasks in interface ICatalog
      Specified by:
      getOutputFromAirflowTasks in interface IDM
      Specified by:
      getOutputFromAirflowTasks in interface IDMEntityAssociation
    • getOutputFromProcesses

      public SortedSet<ILineageProcess> getOutputFromProcesses()
      Processes from which this asset is produced as output.
      Specified by:
      getOutputFromProcesses in interface ICatalog
      Specified by:
      getOutputFromProcesses in interface IDM
      Specified by:
      getOutputFromProcesses in interface IDMEntityAssociation
    • getOutputFromSparkJobs

      public SortedSet<ISparkJob> getOutputFromSparkJobs()
      TBC
      Specified by:
      getOutputFromSparkJobs in interface ICatalog
      Specified by:
      getOutputFromSparkJobs in interface IDM
      Specified by:
      getOutputFromSparkJobs in interface IDMEntityAssociation
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Asset
    • canEqual

      protected boolean canEqual(Object other)
      Overrides:
      canEqual in class Asset
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Asset
    • toString

      public String toString()
      Description copied from class: AtlanObject
      Overrides:
      toString in class Asset
    • getTypeName

      public String getTypeName()
      Fixed typeName for DMEntityAssociations.
      Specified by:
      getTypeName in interface AuditDetail
      Specified by:
      getTypeName in interface IAsset
      Specified by:
      getTypeName in interface ICatalog
      Specified by:
      getTypeName in interface IDM
      Specified by:
      getTypeName in interface IDMEntityAssociation
      Specified by:
      getTypeName in interface IReferenceable
      Overrides:
      getTypeName in class Reference