Class Schema
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.analyticsmodeling.model.response.Schema
-
public class Schema extends Object
Schema contains the properties and guid for a database schema.
-
-
Constructor Summary
Constructors Constructor Description Schema()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCatalog()Get name of the database catalog.StringgetSchema()Get schema name of the database.StringgetSchemaType()Get type of the database schema.voidsetCatalog(String value)Set name of the database catalog.voidsetSchema(String value)Set schema name of the database.voidsetSchemaType(String value)Set type of the database schema.
-
-
-
Method Detail
-
getCatalog
public String getCatalog()
Get name of the database catalog.- Returns:
- name of the database catalog.
-
setCatalog
public void setCatalog(String value)
Set name of the database catalog.- Parameters:
value- to set.
-
getSchema
public String getSchema()
Get schema name of the database.- Returns:
- schema name of the database.
-
setSchema
public void setSchema(String value)
Set schema name of the database.- Parameters:
value- to set.
-
getSchemaType
public String getSchemaType()
Get type of the database schema.- Returns:
- type of the database schema.
-
setSchemaType
public void setSchemaType(String value)
Set type of the database schema.- Parameters:
value- to set.
-
-