Class AnalyticsMetadata
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.Referenceable
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.SchemaElement
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.SchemaAttribute
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.model.AnalyticsMetadata
-
- Direct Known Subclasses:
MetadataContainer
,MetadataItem
public abstract class AnalyticsMetadata extends SchemaAttribute
Base class for analytics metadata provides common attributes.
-
-
Field Summary
-
Fields inherited from class org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.SchemaAttribute
elementPosition, nativeJavaClass
-
Fields inherited from class org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.SchemaElement
description, displayName
-
Fields inherited from class org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.Referenceable
additionalProperties, guid, qualifiedName
-
-
Constructor Summary
Constructors Constructor Description AnalyticsMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addSourceGuid(java.lang.String guid)
void
addSourceId(java.lang.String id)
boolean
equals(java.lang.Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.java.lang.String
getIdentifier()
Getter method for attribute identifierjava.util.List<java.lang.String>
getSourceGuid()
Get GUID list the element is connected to.java.util.List<java.lang.String>
getSourceId()
java.lang.String
getType()
Get type of the metadata.int
hashCode()
Return a number that represents the contents of this object.void
setIdentifier(java.lang.String identifier)
Setter method for attribute identifiervoid
setSourceGuid(java.util.List<java.lang.String> sourceGuid)
Set GUID list the element is connected to.void
setSourceId(java.util.List<java.lang.String> sourceId)
void
setType(java.lang.String type)
Set type of the metadata.-
Methods inherited from class org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.SchemaAttribute
cloneSchemaElement, getElementPosition, getNativeJavaClass, setElementPosition, setNativeJavaClass, toString
-
Methods inherited from class org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.SchemaElement
getDescription, getDisplayName, setDescription, setDisplayName
-
Methods inherited from class org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization.beans.Referenceable
getAdditionalProperties, getGuid, getQualifiedName, setAdditionalProperties, setGuid, setQualifiedName
-
-
-
-
Method Detail
-
getType
public java.lang.String getType()
Get type of the metadata.- Returns:
- the type
-
setType
public void setType(java.lang.String type)
Set type of the metadata.- Parameters:
type
- the type to set
-
getIdentifier
public java.lang.String getIdentifier()
Getter method for attribute identifier- Returns:
- the identifier
-
setIdentifier
public void setIdentifier(java.lang.String identifier)
Setter method for attribute identifier- Parameters:
identifier
- the identifier to set
-
getSourceGuid
public java.util.List<java.lang.String> getSourceGuid()
Get GUID list the element is connected to.- Returns:
- the sourceGuid
-
setSourceGuid
public void setSourceGuid(java.util.List<java.lang.String> sourceGuid)
Set GUID list the element is connected to.- Parameters:
sourceGuid
- the sourceGuid to set
-
getSourceId
public java.util.List<java.lang.String> getSourceId()
- Returns:
- the sourceId
-
setSourceId
public void setSourceId(java.util.List<java.lang.String> sourceId)
- Parameters:
sourceId
- the sourceId to set
-
addSourceGuid
public void addSourceGuid(java.lang.String guid)
-
addSourceId
public void addSourceId(java.lang.String id)
-
equals
public boolean equals(java.lang.Object objectToCompare)
Description copied from class:SchemaAttribute
Compare the values of the supplied object with those stored in the current object.- Overrides:
equals
in classSchemaAttribute
- Parameters:
objectToCompare
- supplied object- Returns:
- boolean result of comparison
-
hashCode
public int hashCode()
Return a number that represents the contents of this object.- Overrides:
hashCode
in classSchemaAttribute
- Returns:
- int
-
-