Class ResponseContainerDatabase
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.model.ResponseContainer
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.model.ResponseContainerDatabase
-
public class ResponseContainerDatabase extends ResponseContainer
Response container for database.
The container has following attributes:
name - database name.
guid - unique identifier to access database metdata.
type - of the database, vendor.
version - database version.
The type of the container is 'database'.
-
-
Field Summary
Fields Modifier and Type Field Description static StringTYPE_DATABASE
-
Constructor Summary
Constructors Constructor Description ResponseContainerDatabase()Constructor defines 'database' type
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDbName()Get database name.StringgetDbType()Get type defining vendor.StringgetDbVersion()Get version of the database.StringgetGUID()Get global unique identifier of the database.voidsetDbName(String value)Set database name.voidsetDbType(String value)Set type defining vendor.voidsetDbVersion(String value)Set version of the database.voidsetGUID(String value)Set global unique identifier of the database.-
Methods inherited from class org.odpi.openmetadata.accessservices.analyticsmodeling.model.ResponseContainer
getId, getType, setId
-
-
-
-
Field Detail
-
TYPE_DATABASE
public static final String TYPE_DATABASE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDbName
public String getDbName()
Get database name.- Returns:
- database name.
-
setDbName
public void setDbName(String value)
Set database name.- Parameters:
value- database name.
-
getGUID
public String getGUID()
Get global unique identifier of the database.- Returns:
- global unique identifier of the database.
-
setGUID
public void setGUID(String value)
Set global unique identifier of the database.- Parameters:
value- of the global unique identifier.
-
getDbType
public String getDbType()
Get type defining vendor.- Returns:
- vendor of database.
-
setDbType
public void setDbType(String value)
Set type defining vendor.- Parameters:
value- database vendor.
-
getDbVersion
public String getDbVersion()
Get version of the database.- Returns:
- string version.
-
setDbVersion
public void setDbVersion(String value)
Set version of the database.- Parameters:
value- of database version.
-
-