Package com.comsol.api.database.result
Interface DatabaseConfigurationResult
-
- All Superinterfaces:
DatabaseApiValue
- All Known Subinterfaces:
GetDatabaseConfigurationResult,QueryDatabaseConfigurationResult
public interface DatabaseConfigurationResult extends DatabaseApiValue
Base interface for results returned when reading and querying data values for database configurations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringdatabaseAlias()Returns an alias set for the configured Model Manager database.DatabaseConfigurationKeydatabaseConfigurationKey()Returns the identifying key of the database configuration.DatabaseKeydatabaseKey()Returns the identifying key of the configured Model Manager database.java.lang.Stringlabel()Returns the label of the configuration.
-
-
-
Method Detail
-
databaseConfigurationKey
DatabaseConfigurationKey databaseConfigurationKey()
Returns the identifying key of the database configuration.- Returns:
- The identifying key of the database configuration.
-
label
java.lang.String label()
Returns the label of the configuration.- Returns:
- The label of the configuration.
-
databaseKey
DatabaseKey databaseKey()
Returns the identifying key of the configured Model Manager database. Returns null if the configuration has never been used to connect to the database.- Returns:
- The identifying key of the configured Model Manager database, or null if the configuration has never been used to connect to the database.
-
databaseAlias
java.lang.String databaseAlias()
Returns an alias set for the configured Model Manager database. Returns null if an alias has not been set for the database.- Returns:
- An alias set for the configured Model Manager database, or null if an alias has not been set for the database.
-
-