Class GlossaryTerm
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.metadata.MetadataBase
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.metadata.GlossaryTerm
-
public class GlossaryTerm extends MetadataBase
Glossary term contains the properties and guid for a term entity retrieved from the metadata repository.
-
-
Constructor Summary
Constructors Constructor Description GlossaryTerm()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Get description of the term.StringgetName()Get name of the term.StringgetSummary()Get summary of the term.voidsetDescription(String description)Set description of the term.voidsetName(String name)Set name of the term bean.voidsetSummary(String summary)Set summary of the term bean.-
Methods inherited from class org.odpi.openmetadata.accessservices.analyticsmodeling.metadata.MetadataBase
getGuid, setGuid
-
-
-
-
Method Detail
-
getName
public String getName()
Get name of the term.- Returns:
- name of the term.
-
setName
public void setName(String name)
Set name of the term bean.- Parameters:
name- to set.
-
getDescription
public String getDescription()
Get description of the term.- Returns:
- description of the term.
-
setDescription
public void setDescription(String description)
Set description of the term.- Parameters:
description- to set.
-
getSummary
public String getSummary()
Get summary of the term.- Returns:
- summary of the term.
-
setSummary
public void setSummary(String summary)
Set summary of the term bean.- Parameters:
summary- to set.
-
-