[DS-2078] Adopted Christian Scheible's code.

This commit is contained in:
Mark H. Wood
2014-09-05 10:58:30 -04:00
parent 82c0664587
commit ccc4838006

View File

@@ -0,0 +1,32 @@
/**
* The contents of this file are subject to the license and copyright
* detailed in the LICENSE and NOTICE files at the root of the source
* tree and available online at
*
* http://www.dspace.org/license/
*/
package org.dspace.utils;
import org.dspace.app.util.AbstractDSpaceWebapp;
/**
* An MBean to identify this web application.
*
* @author Christian Scheible <christian.scheible@uni-konstanz.de>
*/
public class DSpaceWebapp
extends AbstractDSpaceWebapp
{
public DSpaceWebapp()
{
super("OAI");
}
@Override
public boolean isUI()
{
return false;
}
}