Interface RepositorySettings
-
public interface RepositorySettingsAn object of type RepositorySettings should be used to fill up the information required to connect to a data source for repository initialization usingRepositorySource.- Since:
- MicroStrategy Web 7.5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDatabaseType()Returns the database type set.java.lang.StringgetDSN()Returns the Data Source Name.java.lang.StringgetLogin()Returns the Login setjava.lang.StringgetMDTablePrefix()Returns the Metadata Table Prefix.java.lang.StringgetMDTempTablePrefix()Returns the Metadata Temp Table Prefix.java.lang.StringgetODBCSettings()Returns the ODBC Settings.voidsetDatabaseType(int databaseType)Sets the database type.voidsetDSN(java.lang.String DSN)Sets the Data Source Name.voidsetLogin(java.lang.String l)Sets the Login..voidsetMDTablePrefix(java.lang.String MDTablePrefix)Sets the Metadata Table Prefix.voidsetMDTempTablePrefix(java.lang.String MDTablePrefix)Sets the Metadata Temp Table Prefix.voidsetODBCSettings(java.lang.String ODBCParams)Sets the ODBC Settings.voidsetPassword(java.lang.String p)Sets the Password
-
-
-
Method Detail
-
setDSN
void setDSN(java.lang.String DSN)
Sets the Data Source Name.- Parameters:
DSN- The data source name to be set.
-
getDSN
java.lang.String getDSN()
Returns the Data Source Name.- Returns:
- The data source name set.
-
setMDTablePrefix
void setMDTablePrefix(java.lang.String MDTablePrefix)
Sets the Metadata Table Prefix.- Parameters:
MDTablePrefix- The Metadata Table Prefix to be set.- Since:
- MicroStrategy Web 7.5.2
-
getMDTablePrefix
java.lang.String getMDTablePrefix()
Returns the Metadata Table Prefix.- Returns:
- The Metadata Table Prefix set.
- Since:
- MicroStrategy Web 7.5.2
-
setMDTempTablePrefix
void setMDTempTablePrefix(java.lang.String MDTablePrefix)
Sets the Metadata Temp Table Prefix.- Parameters:
MDTablePrefix- The Metadata Temp Table Prefix to be set.- Since:
- MicroStrategy Web 7.5.2
-
getMDTempTablePrefix
java.lang.String getMDTempTablePrefix()
Returns the Metadata Temp Table Prefix.- Returns:
- The Metadata Temp Table Prefix set.
- Since:
- MicroStrategy Web 7.5.2
-
setODBCSettings
void setODBCSettings(java.lang.String ODBCParams)
Sets the ODBC Settings. If connecting to data source requires any ODBC Settings, then only this is needed.- Parameters:
ODBCParams- The ODBC Settings.
-
getODBCSettings
java.lang.String getODBCSettings()
Returns the ODBC Settings.- Returns:
- The ODBC settings set.
-
setLogin
void setLogin(java.lang.String l)
Sets the Login..- Parameters:
l- The login for the data source.
-
getLogin
java.lang.String getLogin()
Returns the Login set- Returns:
- The login set.
-
setPassword
void setPassword(java.lang.String p)
Sets the Password- Parameters:
p- The password for the data source.
-
setDatabaseType
void setDatabaseType(int databaseType)
Sets the database type. This should be a value from the enumerationEnumDSSXMLDatabaseType.- Parameters:
databaseType- The database type.
-
getDatabaseType
int getDatabaseType()
Returns the database type set. This will be a value from the enumerationEnumDSSXMLDatabaseType.- Returns:
- The databasetype set.
-
-