Class CassandraView

All Implemented Interfaces:
IAsset, ICassandra, ICassandraView, ICatalog, INoSQL, IReferenceable, AuditDetail, Serializable, Comparable<Reference>

@Generated("com.atlan.generators.ModelGeneratorV2") public class CassandraView extends Asset implements ICassandraView, ICassandra, INoSQL, ICatalog, IAsset, IReferenceable
Instances of an Module in Atlan.
See Also:
  • Field Details Link icon

  • Constructor Details Link icon

  • Method Details Link icon

    • trimToReference Link icon

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

      public static FluentSearch.FluentSearchBuilder<?,?> select(AtlanClient client)
      Start a fluent search that will return all CassandraView 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) CassandraView assets will be included.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the assets
      Returns:
      a fluent search that includes all CassandraView assets
    • select Link icon

      public static FluentSearch.FluentSearchBuilder<?,?> select(AtlanClient client, boolean includeArchived)
      Start a fluent search that will return all CassandraView 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) CassandraViews will be included
      Returns:
      a fluent search that includes all CassandraView assets
    • refByGuid Link icon

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

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

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

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

      public static CassandraView get(AtlanClient client, String id) throws AtlanException
      Retrieves a CassandraView 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 CassandraView to retrieve, either its GUID or its full qualifiedName
      Returns:
      the requested full CassandraView, complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the CassandraView does not exist or the provided GUID is not a CassandraView
    • get Link icon

      public static CassandraView get(AtlanClient client, String id, boolean includeAllRelationships) throws AtlanException
      Retrieves a CassandraView 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 CassandraView to retrieve, either its GUID or its full qualifiedName
      includeAllRelationships - if true, all the asset's relationships will also be retrieved; if false, no relationships will be retrieved
      Returns:
      the requested full CassandraView, optionally complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the CassandraView does not exist or the provided GUID is not a CassandraView
    • get Link icon

      public static CassandraView get(AtlanClient client, String id, Collection<AtlanField> attributes) throws AtlanException
      Retrieves a CassandraView by one of its identifiers, with only the requested attributes (and relationships).
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the asset
      id - of the CassandraView to retrieve, either its GUID or its full qualifiedName
      attributes - to retrieve for the CassandraView, including any relationships
      Returns:
      the requested CassandraView, with only its minimal information and the requested attributes (and relationships)
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the CassandraView does not exist or the provided GUID is not a CassandraView
    • get Link icon

      public static CassandraView get(AtlanClient client, String id, Collection<AtlanField> attributes, Collection<AtlanField> attributesOnRelated) throws AtlanException
      Retrieves a CassandraView by one of its identifiers, with only the requested attributes (and relationships).
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the asset
      id - of the CassandraView to retrieve, either its GUID or its full qualifiedName
      attributes - to retrieve for the CassandraView, including any relationships
      attributesOnRelated - to retrieve on each relationship retrieved for the CassandraView
      Returns:
      the requested CassandraView, with only its minimal information and the requested attributes (and relationships)
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the CassandraView does not exist or the provided GUID is not a CassandraView
    • restore Link icon

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

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

      public CassandraView.CassandraViewBuilder<?,?> trimToRequired() throws InvalidRequestException
      Builds the minimal object necessary to apply an update to a CassandraView, from a potentially more-complete CassandraView object.
      Overrides:
      trimToRequired in class Asset
      Returns:
      the minimal object necessary to update the CassandraView, as a builder
      Throws:
      InvalidRequestException - if any of the minimal set of required properties for CassandraView are not found in the initial object
    • removeDescription Link icon

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

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

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

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

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

      public static CassandraView updateAnnouncement(AtlanClient client, String qualifiedName, AtlanAnnouncementType type, String title, String message) throws AtlanException
      Update the announcement on a CassandraView.
      Parameters:
      client - connectivity to the Atlan tenant on which to update the CassandraView's announcement
      qualifiedName - of the CassandraView
      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 Link icon

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

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

      @Deprecated public static CassandraView appendTerms(AtlanClient client, String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Link additional terms to the CassandraView, without replacing existing terms linked to the CassandraView. Note: this operation must make two API calls — one to retrieve the CassandraView'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 CassandraView
      qualifiedName - for the CassandraView
      terms - the list of terms to append to the CassandraView
      Returns:
      the CassandraView that was updated (note that it will NOT contain details of the appended terms)
      Throws:
      AtlanException - on any API problems
    • removeTerms Link icon

      @Deprecated public static CassandraView removeTerms(AtlanClient client, String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Remove terms from a CassandraView, without replacing all existing terms linked to the CassandraView. Note: this operation must make two API calls — one to retrieve the CassandraView'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 CassandraView
      qualifiedName - for the CassandraView
      terms - the list of terms to remove from the CassandraView, which must be referenced by GUID
      Returns:
      the CassandraView that was updated (note that it will NOT contain details of the resulting terms)
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags Link icon

      @Deprecated public static CassandraView appendAtlanTags(AtlanClient client, String qualifiedName, List<String> atlanTagNames) throws AtlanException
      Add Atlan tags to a CassandraView, without replacing existing Atlan tags linked to the CassandraView. Note: this operation must make two API calls — one to retrieve the CassandraView'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 CassandraView
      qualifiedName - of the CassandraView
      atlanTagNames - human-readable names of the Atlan tags to add
      Returns:
      the updated CassandraView
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags Link icon

      @Deprecated public static CassandraView appendAtlanTags(AtlanClient client, String qualifiedName, List<String> atlanTagNames, boolean propagate, boolean removePropagationsOnDelete, boolean restrictLineagePropagation) throws AtlanException
      Add Atlan tags to a CassandraView, without replacing existing Atlan tags linked to the CassandraView. Note: this operation must make two API calls — one to retrieve the CassandraView'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 CassandraView
      qualifiedName - of the CassandraView
      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 CassandraView
      Throws:
      AtlanException - on any API problems
    • removeAtlanTag Link icon

      @Deprecated public static void removeAtlanTag(AtlanClient client, String qualifiedName, String atlanTagName) throws AtlanException
      Remove an Atlan tag from a CassandraView.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove an Atlan tag from a CassandraView
      qualifiedName - of the CassandraView
      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 CassandraView
    • _internal Link icon

      public static CassandraView.CassandraViewBuilder<?,?> _internal()
    • toBuilder Link icon

      public CassandraView.CassandraViewBuilder<?,?> toBuilder()
      Overrides:
      toBuilder in class Reference
    • getCassandraColumns Link icon

      public SortedSet<ICassandraColumn> getCassandraColumns()
      Individual columns contained in the view.
      Specified by:
      getCassandraColumns in interface ICassandraView
    • getCassandraKeyspace Link icon

      public ICassandraKeyspace getCassandraKeyspace()
      Keyspace containing the view.
      Specified by:
      getCassandraKeyspace in interface ICassandraView
    • getCassandraKeyspaceName Link icon

      public String getCassandraKeyspaceName()
      Name of the keyspace for the Cassandra asset.
      Specified by:
      getCassandraKeyspaceName in interface ICassandra
      Specified by:
      getCassandraKeyspaceName in interface ICassandraView
    • getCassandraTableName Link icon

      public String getCassandraTableName()
      Name of the table for the Cassandra asset.
      Specified by:
      getCassandraTableName in interface ICassandra
      Specified by:
      getCassandraTableName in interface ICassandraView
    • getCassandraTableQualifiedName Link icon

      public String getCassandraTableQualifiedName()
      Unique name of table for Cassandra asset
      Specified by:
      getCassandraTableQualifiedName in interface ICassandra
      Specified by:
      getCassandraTableQualifiedName in interface ICassandraView
    • getCassandraViewBloomFilterFPChance Link icon

      public Double getCassandraViewBloomFilterFPChance()
      False positive chance for the Bloom filter in the CassandraView.
      Specified by:
      getCassandraViewBloomFilterFPChance in interface ICassandraView
    • getCassandraViewCRCCheckChance Link icon

      public Double getCassandraViewCRCCheckChance()
      CRC check chance for the CassandraView.
      Specified by:
      getCassandraViewCRCCheckChance in interface ICassandraView
    • getCassandraViewCaching Link icon

      public Map<String,String> getCassandraViewCaching()
      Caching configuration in the CassandraView.
      Specified by:
      getCassandraViewCaching in interface ICassandraView
    • getCassandraViewComment Link icon

      public String getCassandraViewComment()
      Comment describing the CassandraView.
      Specified by:
      getCassandraViewComment in interface ICassandraView
    • getCassandraViewCompaction Link icon

      public Map<String,String> getCassandraViewCompaction()
      Compaction for the CassandraView.
      Specified by:
      getCassandraViewCompaction in interface ICassandraView
    • getCassandraViewDCLocalReadRepairChance Link icon

      public Double getCassandraViewDCLocalReadRepairChance()
      DC-local read repair chance for the CassandraView.
      Specified by:
      getCassandraViewDCLocalReadRepairChance in interface ICassandraView
    • getCassandraViewDefaultTTL Link icon

      public Long getCassandraViewDefaultTTL()
      Default time-to-live (TTL) for the CassandraView.
      Specified by:
      getCassandraViewDefaultTTL in interface ICassandraView
    • getCassandraViewGCGraceSeconds Link icon

      public Long getCassandraViewGCGraceSeconds()
      Grace period for garbage collection in the CassandraView.
      Specified by:
      getCassandraViewGCGraceSeconds in interface ICassandraView
    • getCassandraViewIncludeAllColumns Link icon

      public Boolean getCassandraViewIncludeAllColumns()
      Whether to include all columns in the CassandraView.
      Specified by:
      getCassandraViewIncludeAllColumns in interface ICassandraView
    • getCassandraViewMaxIndexInterval Link icon

      public Long getCassandraViewMaxIndexInterval()
      Maximum index interval for the CassandraView.
      Specified by:
      getCassandraViewMaxIndexInterval in interface ICassandraView
    • getCassandraViewMembtableFlushPeriodInMS Link icon

      public Long getCassandraViewMembtableFlushPeriodInMS()
      Memtable flush period (in milliseconds) for the CassandraView.
      Specified by:
      getCassandraViewMembtableFlushPeriodInMS in interface ICassandraView
    • getCassandraViewMinIndexInterval Link icon

      public Long getCassandraViewMinIndexInterval()
      Minimum index interval for the CassandraView.
      Specified by:
      getCassandraViewMinIndexInterval in interface ICassandraView
    • getCassandraViewName Link icon

      public String getCassandraViewName()
      Name of view for Cassandra asset
      Specified by:
      getCassandraViewName in interface ICassandra
      Specified by:
      getCassandraViewName in interface ICassandraView
    • getCassandraViewQualifiedName Link icon

      public String getCassandraViewQualifiedName()
      Unique name of view for Cassandra asset
      Specified by:
      getCassandraViewQualifiedName in interface ICassandra
      Specified by:
      getCassandraViewQualifiedName in interface ICassandraView
    • getCassandraViewQuery Link icon

      public String getCassandraViewQuery()
      Query used in the CassandraView.
      Specified by:
      getCassandraViewQuery in interface ICassandraView
    • getCassandraViewReadRepairInterval Link icon

      public Long getCassandraViewReadRepairInterval()
      Read repair interval for the CassandraView.
      Specified by:
      getCassandraViewReadRepairInterval in interface ICassandraView
    • getCassandraViewSpeculativeRetry Link icon

      public String getCassandraViewSpeculativeRetry()
      SpeculativeRetry setting for the CassandraView.
      Specified by:
      getCassandraViewSpeculativeRetry in interface ICassandraView
    • getCassandraViewTableId Link icon

      public String getCassandraViewTableId()
      ID of the base table in the CassandraView.
      Specified by:
      getCassandraViewTableId in interface ICassandraView
    • getCassandraViewWhereClause Link icon

      public String getCassandraViewWhereClause()
      Where clause used for the CassandraView query.
      Specified by:
      getCassandraViewWhereClause in interface ICassandraView
    • getInputToAirflowTasks Link icon

      public SortedSet<IAirflowTask> getInputToAirflowTasks()
      Tasks to which this asset provides input.
      Specified by:
      getInputToAirflowTasks in interface ICassandra
      Specified by:
      getInputToAirflowTasks in interface ICassandraView
      Specified by:
      getInputToAirflowTasks in interface ICatalog
      Specified by:
      getInputToAirflowTasks in interface INoSQL
    • getInputToProcesses Link icon

      public SortedSet<ILineageProcess> getInputToProcesses()
      Processes to which this asset provides input.
      Specified by:
      getInputToProcesses in interface ICassandra
      Specified by:
      getInputToProcesses in interface ICassandraView
      Specified by:
      getInputToProcesses in interface ICatalog
      Specified by:
      getInputToProcesses in interface INoSQL
    • getInputToSparkJobs Link icon

      public SortedSet<ISparkJob> getInputToSparkJobs()
      TBC
      Specified by:
      getInputToSparkJobs in interface ICassandra
      Specified by:
      getInputToSparkJobs in interface ICassandraView
      Specified by:
      getInputToSparkJobs in interface ICatalog
      Specified by:
      getInputToSparkJobs in interface INoSQL
    • getModelImplementedAttributes Link icon

      public SortedSet<IModelAttribute> getModelImplementedAttributes()
      Attributes implemented by this asset.
      Specified by:
      getModelImplementedAttributes in interface ICassandra
      Specified by:
      getModelImplementedAttributes in interface ICassandraView
      Specified by:
      getModelImplementedAttributes in interface ICatalog
      Specified by:
      getModelImplementedAttributes in interface INoSQL
    • getModelImplementedEntities Link icon

      public SortedSet<IModelEntity> getModelImplementedEntities()
      Entities implemented by this asset.
      Specified by:
      getModelImplementedEntities in interface ICassandra
      Specified by:
      getModelImplementedEntities in interface ICassandraView
      Specified by:
      getModelImplementedEntities in interface ICatalog
      Specified by:
      getModelImplementedEntities in interface INoSQL
    • getNoSQLSchemaDefinition Link icon

      public String getNoSQLSchemaDefinition()
      Represents attributes for describing the key schema for the table and indexes.
      Specified by:
      getNoSQLSchemaDefinition in interface ICassandra
      Specified by:
      getNoSQLSchemaDefinition in interface ICassandraView
      Specified by:
      getNoSQLSchemaDefinition in interface INoSQL
    • getOutputFromAirflowTasks Link icon

      public SortedSet<IAirflowTask> getOutputFromAirflowTasks()
      Tasks from which this asset is output.
      Specified by:
      getOutputFromAirflowTasks in interface ICassandra
      Specified by:
      getOutputFromAirflowTasks in interface ICassandraView
      Specified by:
      getOutputFromAirflowTasks in interface ICatalog
      Specified by:
      getOutputFromAirflowTasks in interface INoSQL
    • getOutputFromProcesses Link icon

      public SortedSet<ILineageProcess> getOutputFromProcesses()
      Processes from which this asset is produced as output.
      Specified by:
      getOutputFromProcesses in interface ICassandra
      Specified by:
      getOutputFromProcesses in interface ICassandraView
      Specified by:
      getOutputFromProcesses in interface ICatalog
      Specified by:
      getOutputFromProcesses in interface INoSQL
    • getOutputFromSparkJobs Link icon

      public SortedSet<ISparkJob> getOutputFromSparkJobs()
      TBC
      Specified by:
      getOutputFromSparkJobs in interface ICassandra
      Specified by:
      getOutputFromSparkJobs in interface ICassandraView
      Specified by:
      getOutputFromSparkJobs in interface ICatalog
      Specified by:
      getOutputFromSparkJobs in interface INoSQL
    • equals Link icon

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

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

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

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

      public String getTypeName()
      Fixed typeName for CassandraViews.
      Specified by:
      getTypeName in interface AuditDetail
      Specified by:
      getTypeName in interface IAsset
      Specified by:
      getTypeName in interface ICassandra
      Specified by:
      getTypeName in interface ICassandraView
      Specified by:
      getTypeName in interface ICatalog
      Specified by:
      getTypeName in interface INoSQL
      Specified by:
      getTypeName in interface IReferenceable
      Overrides:
      getTypeName in class Reference