Skip to content
Snippets Groups Projects
Commit 65a4f9d0 authored by felmer's avatar felmer
Browse files

add BuildAndEnvironmentInfo.class from the project calling the jar target

revert adding method getBuildAndApplicationInfo()

SVN: 13423
parent dfddabb3
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,6 @@ import javax.servlet.http.HttpSession;
import org.apache.log4j.Logger;
import ch.systemsx.cisd.base.utilities.AbstractBuildAndEnvironmentInfo;
import ch.systemsx.cisd.common.exceptions.UserFailureException;
import ch.systemsx.cisd.common.logging.LogCategory;
import ch.systemsx.cisd.common.logging.LogFactory;
......@@ -251,15 +250,6 @@ public abstract class AbstractClientService implements IClientService
/** Returns the {@link IServer} implementation for this client service. */
protected abstract IServer getServer();
/**
* Returns the appropriate build and environment info. This method should be overridden in
* subclasses of custom openBIS projects.
*/
protected AbstractBuildAndEnvironmentInfo getBuildAndApplicationInfo()
{
return BuildAndEnvironmentInfo.INSTANCE;
}
//
// IClientService
//
......@@ -267,7 +257,7 @@ public abstract class AbstractClientService implements IClientService
public final ApplicationInfo getApplicationInfo()
{
final ApplicationInfo applicationInfo = new ApplicationInfo();
applicationInfo.setVersion(getBuildAndApplicationInfo().getFullVersion());
applicationInfo.setVersion(BuildAndEnvironmentInfo.INSTANCE.getFullVersion());
applicationInfo.setCIFEXURL(cifexURL);
applicationInfo.setCifexRecipient(cifexRecipient);
return applicationInfo;
......
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