/** * 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.app.util; /** * MBean type for discovering DSpace web applications. * * @author mwood */ public interface DSpaceWebappMXBean { /** Is this webapp a user interface? False if machine interface such as SWORD. */ public boolean isUI(); /** What kind of webapp? XMLUI, OAI, etc. */ public String getKind(); /** What is the base URL of this application? */ public String getURL(); /** When did this application start? */ public String getStarted(); }