Skip to content
Snippets Groups Projects
Commit e939346a authored by juanf's avatar juanf
Browse files

Merge branch 'master' of git@sissource.ethz.ch:sispub/openbis.git

parents 77c89003 2de79bbf
No related branches found
No related tags found
No related merge requests found
...@@ -255,12 +255,18 @@ public class ApplicationServerApiLogger extends AbstractServerLogger implements ...@@ -255,12 +255,18 @@ public class ApplicationServerApiLogger extends AbstractServerLogger implements
super(sessionManager, context); super(sessionManager, context);
} }
/**
* This version is a dummy and should not be used. See {@link ApplicationServerApi}.
*/
@Override @Override
public int getMajorVersion() public int getMajorVersion()
{ {
return 3; return 3;
} }
/**
* This version is a dummy and should not be used. See {@link ApplicationServerApi}.
*/
@Override @Override
public int getMinorVersion() public int getMinorVersion()
{ {
......
...@@ -208,6 +208,8 @@ default-dropbox.storage-processor = ch.systemsx.cisd.etlserver.DefaultStoragePro ...@@ -208,6 +208,8 @@ default-dropbox.storage-processor = ch.systemsx.cisd.etlserver.DefaultStoragePro
# imaging-database.kind = prod # imaging-database.kind = prod
# imaging-database.owner = # imaging-database.owner =
# imaging-database.password = # imaging-database.password =
# imaging-database.adminUser =
# imaging-database.adminPassword =
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# Proteomics database (optional, only used if proteomics technology switched on) # Proteomics database (optional, only used if proteomics technology switched on)
......
...@@ -12,6 +12,10 @@ ...@@ -12,6 +12,10 @@
# Owner of the imaging database. Default value is an empty string (i.e. the user starting up DSS). # Owner of the imaging database. Default value is an empty string (i.e. the user starting up DSS).
# imaging-database.password # imaging-database.password
# Password of the owner of the imaging database. Default value is an empty string. # Password of the owner of the imaging database. Default value is an empty string.
# imaging-database.adminUser
# Admin user of the database. Default value is an empty string (i.e. the default admin user 'postgres').
# imaging-database.adminPassword
# Password of the admin user. Default value is an empty string.
# #
version-holder-class = ch.systemsx.cisd.openbis.dss.etl.ImagingDatabaseVersionHolder version-holder-class = ch.systemsx.cisd.openbis.dss.etl.ImagingDatabaseVersionHolder
databaseEngineCode = postgresql databaseEngineCode = postgresql
...@@ -21,4 +25,5 @@ databaseKind = ${imaging-database.kind:prod} ...@@ -21,4 +25,5 @@ databaseKind = ${imaging-database.kind:prod}
scriptFolder = ${screening-sql-root-folder:}sql/imaging scriptFolder = ${screening-sql-root-folder:}sql/imaging
owner = ${imaging-database.owner:} owner = ${imaging-database.owner:}
password = ${imaging-database.password:} password = ${imaging-database.password:}
adminUser = ${imaging-database.adminUser:}
adminPassword = ${imaging-database.adminPassword:}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment