Uses of Class
org.apache.maven.continuum.model.system.Installation

Packages that use Installation
org.apache.continuum.builder.distributed.manager   
org.apache.continuum.dao   
org.apache.continuum.installation   
org.apache.continuum.profile   
org.apache.continuum.web.action.admin   
org.apache.maven.continuum.installation   
org.apache.maven.continuum.model.project   
org.apache.maven.continuum.model.system   
org.apache.maven.continuum.profile   
org.apache.maven.continuum.web.action.admin   
 

Uses of Installation in org.apache.continuum.builder.distributed.manager
 

Methods in org.apache.continuum.builder.distributed.manager that return types with arguments of type Installation
 List<Installation> DefaultDistributedBuildManager.getAvailableInstallations(String buildAgentUrl)
           
 List<Installation> DistributedBuildManager.getAvailableInstallations(String buildAgentUrl)
           
 

Uses of Installation in org.apache.continuum.dao
 

Methods in org.apache.continuum.dao that return Installation
 Installation InstallationDaoImpl.addInstallation(Installation installation)
           
 Installation InstallationDao.addInstallation(Installation installation)
           
 Installation InstallationDaoImpl.getInstallation(int installationId)
           
 Installation InstallationDao.getInstallation(int installationId)
           
 Installation InstallationDaoImpl.getInstallation(String installationName)
           
 Installation InstallationDao.getInstallation(String installationName)
           
 

Methods in org.apache.continuum.dao that return types with arguments of type Installation
 List<Installation> InstallationDaoImpl.getAllInstallations()
           
 List<Installation> InstallationDao.getAllInstallations()
           
 

Methods in org.apache.continuum.dao with parameters of type Installation
 Installation InstallationDaoImpl.addInstallation(Installation installation)
           
 Installation InstallationDao.addInstallation(Installation installation)
           
 void InstallationDaoImpl.removeInstallation(Installation installation)
           
 void InstallationDao.removeInstallation(Installation installation)
           
 void InstallationDaoImpl.updateInstallation(Installation installation)
           
 void InstallationDao.updateInstallation(Installation installation)
           
 

Uses of Installation in org.apache.continuum.installation
 

Methods in org.apache.continuum.installation that return Installation
 Installation DefaultInstallationService.add(Installation installation)
           
 Installation DefaultInstallationService.add(Installation installation, boolean automaticProfile)
           
 Installation DefaultInstallationService.getInstallation(int installationId)
           
 Installation DefaultInstallationService.getInstallation(String installationName)
           
 

Methods in org.apache.continuum.installation that return types with arguments of type Installation
 List<Installation> DefaultInstallationService.getAllInstallations()
           
 

Methods in org.apache.continuum.installation with parameters of type Installation
 Installation DefaultInstallationService.add(Installation installation)
           
 Installation DefaultInstallationService.add(Installation installation, boolean automaticProfile)
           
 void DefaultInstallationService.delete(Installation installation)
           
 List<String> DefaultInstallationService.getJdkInformations(Installation installation)
          TODO replace with calling getExecutorConfiguratorVersion
 void DefaultInstallationService.update(Installation installation)
           
 

Uses of Installation in org.apache.continuum.profile
 

Methods in org.apache.continuum.profile with parameters of type Installation
 void DefaultProfileService.addEnvVarInProfile(Profile profile, Installation envVar)
           
 void DefaultProfileService.addInstallationInProfile(Profile profile, Installation installation)
           
 void DefaultProfileService.removeInstallationFromProfile(Profile profile, Installation installation)
           
 void DefaultProfileService.setBuilderInProfile(Profile profile, Installation builder)
           
 void DefaultProfileService.setJdkInProfile(Profile profile, Installation jdk)
           
 

Uses of Installation in org.apache.continuum.web.action.admin
 

Methods in org.apache.continuum.web.action.admin that return types with arguments of type Installation
 List<Installation> BuildAgentAction.getInstallations()
           
 

Method parameters in org.apache.continuum.web.action.admin with type arguments of type Installation
 void BuildAgentAction.setInstallations(List<Installation> installations)
           
 

Uses of Installation in org.apache.maven.continuum.installation
 

Methods in org.apache.maven.continuum.installation that return Installation
 Installation InstallationService.add(Installation installation)
           
 Installation InstallationService.add(Installation installation, boolean automaticProfile)
           
 Installation InstallationService.getInstallation(int installationId)
           
 Installation InstallationService.getInstallation(String installationName)
           
 

Methods in org.apache.maven.continuum.installation that return types with arguments of type Installation
 List<Installation> InstallationService.getAllInstallations()
           
 

Methods in org.apache.maven.continuum.installation with parameters of type Installation
 Installation InstallationService.add(Installation installation)
           
 Installation InstallationService.add(Installation installation, boolean automaticProfile)
           
 void InstallationService.delete(Installation installation)
           
 List<String> InstallationService.getJdkInformations(Installation installation)
           
 void InstallationService.update(Installation installation)
           
 

Uses of Installation in org.apache.maven.continuum.model.project
 

Methods in org.apache.maven.continuum.model.project that return types with arguments of type Installation
 List<Installation> ContinuumDatabase.getInstallations()
          Method getInstallations.
 

Methods in org.apache.maven.continuum.model.project with parameters of type Installation
 void ContinuumDatabase.addInstallation(Installation installation)
          Method addInstallation.
 void ContinuumDatabase.removeInstallation(Installation installation)
          Method removeInstallation.
 

Method parameters in org.apache.maven.continuum.model.project with type arguments of type Installation
 void ContinuumDatabase.setInstallations(List<Installation> installations)
          Set the installations field.
 

Uses of Installation in org.apache.maven.continuum.model.system
 

Methods in org.apache.maven.continuum.model.system that return Installation
 Installation Profile.getBuilder()
          Get the builder field.
 Installation Profile.getJdk()
          Get the jdk field.
 

Methods in org.apache.maven.continuum.model.system that return types with arguments of type Installation
 List<Installation> Profile.getEnvironmentVariables()
          Method getEnvironmentVariables.
 

Methods in org.apache.maven.continuum.model.system with parameters of type Installation
 void Profile.addEnvironmentVariable(Installation installation)
          Method addEnvironmentVariable.
 void Profile.removeEnvironmentVariable(Installation installation)
          Method removeEnvironmentVariable.
 void Profile.setBuilder(Installation builder)
          Set the builder field.
 void Profile.setJdk(Installation jdk)
          Set the jdk field.
 

Method parameters in org.apache.maven.continuum.model.system with type arguments of type Installation
 void Profile.setEnvironmentVariables(List<Installation> environmentVariables)
          Set the environmentVariables field.
 

Uses of Installation in org.apache.maven.continuum.profile
 

Methods in org.apache.maven.continuum.profile with parameters of type Installation
 void ProfileService.addEnvVarInProfile(Profile profile, Installation envVar)
           
 void ProfileService.addInstallationInProfile(Profile profile, Installation installation)
           
 void ProfileService.removeInstallationFromProfile(Profile profile, Installation installation)
           
 void ProfileService.setBuilderInProfile(Profile profile, Installation builder)
           
 void ProfileService.setJdkInProfile(Profile profile, Installation jdk)
           
 

Uses of Installation in org.apache.maven.continuum.web.action.admin
 

Methods in org.apache.maven.continuum.web.action.admin that return Installation
 Installation InstallationAction.getInstallation()
           
 

Methods in org.apache.maven.continuum.web.action.admin that return types with arguments of type Installation
 List<Installation> ProfileAction.getAllInstallations()
           
 List<Installation> InstallationAction.getInstallations()
           
 List<Installation> ProfileAction.getProfileInstallations()
           
 

Methods in org.apache.maven.continuum.web.action.admin with parameters of type Installation
 void InstallationAction.setInstallation(Installation installation)
           
 

Method parameters in org.apache.maven.continuum.web.action.admin with type arguments of type Installation
 void ProfileAction.setAllInstallations(List<Installation> allInstallations)
           
 void InstallationAction.setInstallations(List<Installation> installations)
           
 void ProfileAction.setProfileInstallations(List<Installation> profileInstallations)
           
 



Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.