mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 15:03:18 +00:00
29 lines
591 B
Java
29 lines
591 B
Java
/**
|
|
* 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 Bram Luyten (bram at atmire dot com)
|
|
*/
|
|
public class DSpaceWebapp
|
|
extends AbstractDSpaceWebapp {
|
|
public DSpaceWebapp() {
|
|
super("REST");
|
|
}
|
|
|
|
@Override
|
|
public boolean isUI() {
|
|
return false;
|
|
}
|
|
}
|