2024-10-14 12:14:01 +03:00
|
|
|
package _VisualDVM.Passes.All;
|
2024-10-16 00:40:45 +03:00
|
|
|
import Common.CommonConstants;
|
2025-03-13 14:36:02 +03:00
|
|
|
import Common.Utils.Utils_;
|
2024-10-09 22:01:19 +03:00
|
|
|
import _VisualDVM.Constants;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-14 12:14:01 +03:00
|
|
|
import _VisualDVM.Passes.ProcessPass;
|
2025-03-13 17:11:05 +03:00
|
|
|
import _VisualDVM.Passes.Repository.DownloadRepositoryPass;
|
2024-10-14 15:19:13 +03:00
|
|
|
import _VisualDVM.Utils;
|
2023-09-17 22:13:42 +03:00
|
|
|
import org.apache.commons.io.FileUtils;
|
|
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.nio.file.Paths;
|
2025-03-13 17:11:05 +03:00
|
|
|
public class DownloadSapforRepository extends DownloadRepositoryPass {
|
2025-02-15 23:30:48 +03:00
|
|
|
@Override
|
2023-09-17 22:13:42 +03:00
|
|
|
protected boolean canStart(Object... args) throws Exception {
|
2025-03-13 17:11:05 +03:00
|
|
|
return super.canStart(Constants.SAPFOR_REPOSITORY, "SAPFOR");
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
@Override
|
2025-03-13 17:11:05 +03:00
|
|
|
protected boolean hasSubmodules() {
|
|
|
|
|
return true;
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|