mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
[DS-2078] Adopted Christian Scheible's code.
This commit is contained in:
32
dspace-oai/src/main/java/org/dspace/utils/DSpaceWebapp.java
Normal file
32
dspace-oai/src/main/java/org/dspace/utils/DSpaceWebapp.java
Normal 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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user