protected PortalInstaller getHandler() {
return PortalInstallerFactory.getAppServerHandler(installationDirectory);
}
protected InstallationConfig createInstallationConfig() throws ArtifactNotFoundException, ArtifactResolutionException {
InstallationConfig config = new InstallationConfig();
config.setInstallationDirectory(installationDirectory);
config.setPortalContextPath(portalContext);
config.setPortalApplication(getPortalApplication());
config.setPortletApplications(getPortletApplications());
config.setEndorsedDependencies(getEndorsedDependencies());
config.setSharedDependencies(getSharedDependencies());
config.setServerConfig(getServerConfig());
return config;
}