Class DatabaseSchemaRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.dataengine.rest.DataEngineOMASAPIRequestBody
-
- org.odpi.openmetadata.accessservices.dataengine.rest.DatabaseSchemaRequestBody
-
- All Implemented Interfaces:
Serializable
public class DatabaseSchemaRequestBody extends DataEngineOMASAPIRequestBody
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DatabaseSchemaRequestBody()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetDatabaseQualifiedName()Return the database qualified name to which the database schema will be linked, if it existsDatabaseSchemagetDatabaseSchema()Return the database schema beanbooleangetIncomplete()Return if the database schema is incompleteinthashCode()voidsetDatabaseQualifiedName(String databaseQualifiedName)Set up the database qualified name to which the database schema will be linked, if it existsvoidsetDatabaseSchema(DatabaseSchema databaseSchema)Set up the database schema beanvoidsetIncomplete(boolean incomplete)Sets if the database schema is incomplete or notStringtoString()-
Methods inherited from class org.odpi.openmetadata.accessservices.dataengine.rest.DataEngineOMASAPIRequestBody
getExternalSourceName, setExternalSourceName
-
-
-
-
Method Detail
-
getDatabaseSchema
public DatabaseSchema getDatabaseSchema()
Return the database schema bean- Returns:
- the database schema
-
getIncomplete
public boolean getIncomplete()
Return if the database schema is incomplete- Returns:
- boolean - if the database schema is incomplete
-
getDatabaseQualifiedName
public String getDatabaseQualifiedName()
Return the database qualified name to which the database schema will be linked, if it exists- Returns:
- the database qualified name
-
setDatabaseSchema
public void setDatabaseSchema(DatabaseSchema databaseSchema)
Set up the database schema bean- Parameters:
databaseSchema- the database schema
-
setIncomplete
public void setIncomplete(boolean incomplete)
Sets if the database schema is incomplete or not- Parameters:
incomplete- determines if the database schema is an incomplete asset
-
setDatabaseQualifiedName
public void setDatabaseQualifiedName(String databaseQualifiedName)
Set up the database qualified name to which the database schema will be linked, if it exists- Parameters:
databaseQualifiedName- the database qualified name
-
equals
public boolean equals(Object o)
- Overrides:
equalsin classDataEngineOMASAPIRequestBody
-
canEqual
protected boolean canEqual(Object other)
- Overrides:
canEqualin classDataEngineOMASAPIRequestBody
-
hashCode
public int hashCode()
- Overrides:
hashCodein classDataEngineOMASAPIRequestBody
-
toString
public String toString()
- Overrides:
toStringin classDataEngineOMASAPIRequestBody
-
-