mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5081 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
79 lines
2.0 KiB
Java
79 lines
2.0 KiB
Java
/*
|
|
* Copyright (C) 2005 Alfresco, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
package org.alfresco.service.cmr.module;
|
|
|
|
import org.alfresco.util.VersionNumber;
|
|
|
|
/**
|
|
* Module details, contains the details of an installed alfresco module.
|
|
*
|
|
* @author Roy Wetherall
|
|
* @since 2.0
|
|
*/
|
|
public interface ModuleDetails
|
|
{
|
|
/**
|
|
* Indicates whether the details exists or not
|
|
*
|
|
* @return true if it exists, false otherwise
|
|
*/
|
|
boolean exists();
|
|
|
|
/**
|
|
* Get the id of the module
|
|
*
|
|
* @return module id
|
|
*/
|
|
String getId();
|
|
|
|
/**
|
|
* Get the version number of the module
|
|
*
|
|
* @return module version number
|
|
*/
|
|
VersionNumber getVersionNumber();
|
|
|
|
/**
|
|
* Get the title of the module
|
|
*
|
|
* @return module title
|
|
*/
|
|
String getTitle();
|
|
|
|
/**
|
|
* Get the description of the module
|
|
*
|
|
* @return module description
|
|
*/
|
|
String getDescription();
|
|
|
|
/**
|
|
* Get the modules install date
|
|
*
|
|
* @return module install date
|
|
*/
|
|
String getInstalledDate();
|
|
|
|
/**
|
|
* Get the modules install state
|
|
*
|
|
* @return the modules install state
|
|
*/
|
|
ModuleInstallState getInstallState();
|
|
}
|