Class Database
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.model.response.Database
-
public class Database extends Object
Database contains the properties and guid for a database.
-
-
Constructor Summary
Constructors Constructor Description Database()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetGuid()Get GUID of the database.StringgetName()Get name of the database.StringgetType()Get type of the database.StringgetVersion()Get version of the database.voidsetGuid(String guid)Set GUID of the database.voidsetName(String name)Set name of the database.voidsetType(String type)Set type of the database.voidsetVersion(String version)Set version of the database.
-
-
-
Method Detail
-
getGuid
public String getGuid()
Get GUID of the database.- Returns:
- GUID of the database.
-
setGuid
public void setGuid(String guid)
Set GUID of the database.- Parameters:
guid- to set.
-
getName
public String getName()
Get name of the database.- Returns:
- name of the database.
-
setName
public void setName(String name)
Set name of the database.- Parameters:
name- to set.
-
getType
public String getType()
Get type of the database.- Returns:
- type of the database.
-
setType
public void setType(String type)
Set type of the database.- Parameters:
type- to set.
-
getVersion
public String getVersion()
Get version of the database.- Returns:
- version of the database.
-
setVersion
public void setVersion(String version)
Set version of the database.- Parameters:
version- to set.
-
-