mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.4-BUG-FIX to HEAD
39015: Upgrade of truezip to 7.5.5 see ALF-14247 39361: Added truezip-swing jar. It seems that Truezip needs Swing :( git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@39832 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
package org.alfresco.repo.module.tool;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import org.alfresco.service.cmr.module.ModuleDetails;
|
||||
|
||||
import de.schlichtherle.truezip.file.TFile;
|
||||
|
||||
/**
|
||||
* Performs various actions on a war file or exploded war directory
|
||||
*
|
||||
@@ -20,21 +20,21 @@ public interface WarHelper
|
||||
* @param installingModuleDetails
|
||||
* @return ModuleDetails
|
||||
*/
|
||||
public ModuleDetails getModuleDetailsOrAlias(File war, ModuleDetails installingModuleDetails);
|
||||
public ModuleDetails getModuleDetailsOrAlias(TFile war, ModuleDetails installingModuleDetails);
|
||||
|
||||
/**
|
||||
* Checks the dependencies of this module
|
||||
* @param war
|
||||
* @param installingModuleDetails
|
||||
*/
|
||||
public void checkModuleDependencies(File war, ModuleDetails installingModuleDetails);
|
||||
public void checkModuleDependencies(TFile war, ModuleDetails installingModuleDetails);
|
||||
|
||||
/**
|
||||
* Checks to see if the module is compatible with the version of Alfresco.
|
||||
*
|
||||
* @param war a valid war file or exploded directory from a war
|
||||
*/
|
||||
public void checkCompatibleVersion(File war, ModuleDetails installingModuleDetails);
|
||||
public void checkCompatibleVersion(TFile war, ModuleDetails installingModuleDetails);
|
||||
|
||||
/**
|
||||
* This checks to see if the module that is being installed is compatible with the war.
|
||||
@@ -43,6 +43,6 @@ public interface WarHelper
|
||||
* @param war a valid war file or exploded directory from a war
|
||||
* @param installingModuleDetails
|
||||
*/
|
||||
public void checkCompatibleEdition(File war, ModuleDetails installingModuleDetails);
|
||||
public void checkCompatibleEdition(TFile war, ModuleDetails installingModuleDetails);
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user