Uses of Interface
org.abstracthorizon.extend.server.deployment.Module

Packages that use Module
org.abstracthorizon.extend.repository.maven   
org.abstracthorizon.extend.server.deployment   
org.abstracthorizon.extend.server.deployment.danube   
org.abstracthorizon.extend.server.deployment.support   
org.abstracthorizon.extend.server.deployment.tomcat   
org.abstracthorizon.extend.server.dynamic   
org.abstracthorizon.extend.server.dynamic.secondstage   
org.abstracthorizon.extend.support.spring.deployment   
org.abstracthorizon.extend.support.spring.service   
org.abstracthorizon.spring.server.deployment.jetty   
 

Uses of Module in org.abstracthorizon.extend.repository.maven
 

Methods in org.abstracthorizon.extend.repository.maven that return Module
 Module MavenRepoModuleLoader.load(URI uri)
          Loads a file from maven style repository
 Module MavenRepoModuleLoader.loadAndDeploy(Artifact artifact, Set<Artifact> excludes)
           
 Module MavenRepoModuleLoader.loadAs(URI uri, ModuleId moduleId)
          Loads a file from maven style repository
 

Methods in org.abstracthorizon.extend.repository.maven with parameters of type Module
 void MavenRepoModuleLoader.processDependencies(POM pom, Module module, Set<Artifact> excludes)
           
 

Uses of Module in org.abstracthorizon.extend.server.deployment
 

Fields in org.abstracthorizon.extend.server.deployment with type parameters of type Module
protected  DeploymentManagerImpl.DeployedModules<ModuleId,Module> DeploymentManagerImpl.deployedModules
          Map of deployed modules
static Set<Module> ModuleUtil.EMPTY_SET
          Empty set
 

Methods in org.abstracthorizon.extend.server.deployment that return Module
 Module DeploymentManagerImpl.load(URI uri)
          Loads module from given URI.
 Module ModuleLoader.load(URI uri)
          Loads module from given URI.
 Module DeploymentManager.loadAndDeploy(URI uri)
          This method loads module and deploys it before returning it to the caller.
 Module DeploymentManagerImpl.loadAndDeploy(URI uri)
          Utility method that loads and deploys module in one go.
 Module DeploymentManagerImpl.loadAs(URI uri, ModuleId moduleId)
          Loads module from given URI.
 Module ModuleLoader.loadAs(URI uri, ModuleId moduleId)
          Loads module from given URI.
 

Methods in org.abstracthorizon.extend.server.deployment that return types with arguments of type Module
 Set<Module> Module.getDependOnThis()
          Returns a set of modules that depend on this module.
 Set<Module> Module.getDependsOn()
          Returns a set of modules this module depends on.
 EnhancedMap<ModuleId,Module> DeploymentManager.getDeployedModules()
          Returns map of deployed modules.
 EnhancedMap<ModuleId,Module> DeploymentManagerImpl.getDeployedModules()
          Returns map of deployed modules.
 

Methods in org.abstracthorizon.extend.server.deployment with parameters of type Module
 void DeploymentManager.create(Module module)
          Calls create() method.
 void DeploymentManagerImpl.create(Module module)
          Calls create() method.
 void DeploymentManager.deploy(ModuleId moduleId, Module module)
          Deploys given module.
 void DeploymentManagerImpl.deploy(ModuleId moduleId, Module module)
          Deploys given module.
 void DeploymentManager.destroy(Module module)
          Calls destroy() method.
 void DeploymentManagerImpl.destroy(Module module)
          Calls destroy() method.
 Set<ModuleId> DeploymentManagerImpl.findAliases(Module module)
          Returns all aliases module is known under
protected static String DeploymentManagerImpl.getUnsatisfiedDependenciesAsAList(Module module)
           
 boolean DeploymentManagerImpl.isDeployed(Module module)
          Checks if module is deployed.
 void DeploymentManager.redeploy(Module module)
          Re-deploys given module.
 void DeploymentManagerImpl.redeploy(Module module)
          Re-deploys given module.
 void DeploymentManager.start(Module module)
          Calls start() method.
 void DeploymentManagerImpl.start(Module module)
          Calls start() method.
 void DeploymentManager.stop(Module module)
          Calls stop() method.
 void DeploymentManagerImpl.stop(Module module)
          Calls stop() method.
 void DeploymentManager.undeploy(Module module)
          Undeploys given module.
 void DeploymentManagerImpl.undeploy(Module module)
          Undeploys given module.
 

Uses of Module in org.abstracthorizon.extend.server.deployment.danube
 

Classes in org.abstracthorizon.extend.server.deployment.danube that implement Module
 class DanubeWebApplicationContext
          Module that represents Danube web application.
 

Fields in org.abstracthorizon.extend.server.deployment.danube declared as Module
protected  Module ThreadContextHandler.module
          Module this thread is executing under
 

Constructors in org.abstracthorizon.extend.server.deployment.danube with parameters of type Module
ThreadContextHandler(org.abstracthorizon.danube.connection.ConnectionHandler handler, Module module)
          Constructor
 

Uses of Module in org.abstracthorizon.extend.server.deployment.support
 

Classes in org.abstracthorizon.extend.server.deployment.support that implement Module
 class AbstractModule
          Jar file module
 class DeploymentDirectoryModule
          This module scans given URL for changes and then deploys/undeploys/redeploys modules added/removed/changed to it.
 class DirectoryModule
          This module represents a directory.
 class JarModule
          Jar file module
 class ProvisionalModule
          This class is used as a placeholder for a module that is to be deployed in near future.
 class UnknownLoaderModule
          This represents module of an URL that doesn't have known module loader
 

Fields in org.abstracthorizon.extend.server.deployment.support declared as Module
protected  Module ModuleClassLoader.context
          Context this class loader depends on
 

Fields in org.abstracthorizon.extend.server.deployment.support with type parameters of type Module
protected  Set<Module> AbstractModule.dependOnThis
          List of modules depending on this module
protected  LinkedHashSet<Module> DeploymentDirectoryModule.dependOnThis
          List of modules that depend on this
protected  LinkedHashSet<Module> ProvisionalModule.dependOnThis
          List of modules that depend on this module
protected  Set<Module> AbstractModule.dependsOn
          List of modules this module depends on
 

Methods in org.abstracthorizon.extend.server.deployment.support that return Module
 Module ModuleClassLoader.getModule()
          Returns module this class loader belongs to
 Module DirectoryModuleLoader.load(URI uri)
          Creates DirectoryModule and returns it.
 Module DeploymentDirectoryModuleLoader.load(URI uri)
          Obtains bean named "DirectoryModule" (DeploymentDirectoryModule) from the application context, sets location and name and returns it.
 Module BulkDeploy.load(URI uri)
          Loads all modules from given URI.
 Module JarModuleLoader.load(URI uri)
          Loads Jar as a module
 Module DirectoryModuleLoader.loadAs(URI uri, ModuleId moduleId)
          Creates DirectoryModule and returns it.
 Module DeploymentDirectoryModuleLoader.loadAs(URI uri, ModuleId moduleId)
          Obtains bean named "DirectoryModule" (DeploymentDirectoryModule) from the application context, sets location and name and returns it.
 Module BulkDeploy.loadAs(URI uri, ModuleId moduleId)
          This method is not supported here.
 Module JarModuleLoader.loadAs(URI uri, ModuleId moduleId)
          Loads Jar as a module
 

Methods in org.abstracthorizon.extend.server.deployment.support that return types with arguments of type Module
protected  Set<Module> ModuleClassLoader.collectAllModules()
           
 Set<Module> AbstractModule.getDependOnThis()
          Returns a set of modules that depend on this
 Set<Module> DeploymentDirectoryModule.getDependOnThis()
          Returns set of modules that depend on this.
 Set<Module> ProvisionalModule.getDependOnThis()
          Returns a list of modules that depend on this module
 Set<Module> UnknownLoaderModule.getDependOnThis()
          Returns an empty set
 Set<Module> AbstractModule.getDependsOn()
          Returns a set of modules this module depends on
 Set<Module> DeploymentDirectoryModule.getDependsOn()
          Returns an empty set.
 Set<Module> ProvisionalModule.getDependsOn()
          Returns an empty set
 Set<Module> UnknownLoaderModule.getDependsOn()
          Returns an empty set
 

Methods in org.abstracthorizon.extend.server.deployment.support with parameters of type Module
 void RedeployURLScanner.addURL(URL url, Module module)
          Adds new URL to be scanned for changes
protected  void ModuleClassLoader.collectAllModules(Module module, Set<Module> modules)
           
 

Method parameters in org.abstracthorizon.extend.server.deployment.support with type arguments of type Module
protected  void ModuleClassLoader.collectAllModules(Module module, Set<Module> modules)
           
 

Constructors in org.abstracthorizon.extend.server.deployment.support with parameters of type Module
ModuleClassLoader(ClassLoader parent, Module context)
          Constructor
 

Uses of Module in org.abstracthorizon.extend.server.deployment.tomcat
 

Classes in org.abstracthorizon.extend.server.deployment.tomcat that implement Module
 class TomcatWebApplicationContext
           Module that represents a war module deployed with tomcat.
 

Uses of Module in org.abstracthorizon.extend.server.dynamic
 

Fields in org.abstracthorizon.extend.server.dynamic with type parameters of type Module
protected  EnhancedMap<ModuleId,Module> Bootstrap.DeploymentManagerStub.deployedModules
           
 

Methods in org.abstracthorizon.extend.server.dynamic that return Module
 Module Bootstrap.DeploymentManagerStub.load(URI uri)
           
 Module Bootstrap.DeploymentManagerStub.loadAndDeploy(URI uri)
           
 Module Bootstrap.DeploymentManagerStub.loadAs(URI uri, ModuleId moduleId)
           
 

Methods in org.abstracthorizon.extend.server.dynamic that return types with arguments of type Module
 EnhancedMap<ModuleId,Module> Bootstrap.DeploymentManagerStub.getDeployedModules()
           
 

Methods in org.abstracthorizon.extend.server.dynamic with parameters of type Module
 void Bootstrap.DeploymentManagerStub.create(Module module)
           
 void Bootstrap.DeploymentManagerStub.deploy(ModuleId moduleId, Module module)
           
static void Bootstrap.deploy(URI uri, Module module, DeploymentManager deploymentManager)
           
 void Bootstrap.DeploymentManagerStub.destroy(Module module)
           
 void Bootstrap.DeploymentManagerStub.redeploy(Module module)
           
 void Bootstrap.DeploymentManagerStub.start(Module module)
           
 void Bootstrap.DeploymentManagerStub.stop(Module module)
           
 void Bootstrap.DeploymentManagerStub.undeploy(Module module)
           
 

Uses of Module in org.abstracthorizon.extend.server.dynamic.secondstage
 

Classes in org.abstracthorizon.extend.server.dynamic.secondstage that implement Module
static class Bootstrap.BootstrapModule
           
 

Fields in org.abstracthorizon.extend.server.dynamic.secondstage with type parameters of type Module
protected  HashSet<Module> Bootstrap.BootstrapModule.dependOnThis
           
protected  HashSet<Module> Bootstrap.BootstrapModule.dependsOn
           
protected  EnhancedMap<ModuleId,Module> Bootstrap.DeploymentManagerStub.deployedModules
           
 

Methods in org.abstracthorizon.extend.server.dynamic.secondstage that return Module
 Module Bootstrap.DeploymentManagerStub.load(URI uri)
           
 Module Bootstrap.DeploymentManagerStub.loadAndDeploy(URI uri)
           
 Module Bootstrap.DeploymentManagerStub.loadAs(URI uri, ModuleId moduleId)
           
 

Methods in org.abstracthorizon.extend.server.dynamic.secondstage that return types with arguments of type Module
 Set<Module> Bootstrap.BootstrapModule.getDependOnThis()
           
 Set<Module> Bootstrap.BootstrapModule.getDependsOn()
           
 EnhancedMap<ModuleId,Module> Bootstrap.DeploymentManagerStub.getDeployedModules()
           
 

Methods in org.abstracthorizon.extend.server.dynamic.secondstage with parameters of type Module
 void Bootstrap.DeploymentManagerStub.create(Module module)
           
 void Bootstrap.DeploymentManagerStub.deploy(ModuleId moduleId, Module module)
           
 void Bootstrap.DeploymentManagerStub.destroy(Module module)
           
 void Bootstrap.DeploymentManagerStub.redeploy(Module module)
           
 void Bootstrap.DeploymentManagerStub.start(Module module)
           
 void Bootstrap.DeploymentManagerStub.stop(Module module)
           
 void Bootstrap.DeploymentManagerStub.undeploy(Module module)
           
 

Uses of Module in org.abstracthorizon.extend.support.spring.deployment
 

Classes in org.abstracthorizon.extend.support.spring.deployment that implement Module
 class AbstractApplicationContextModule
          This class is base class for spring application context modules.
 

Fields in org.abstracthorizon.extend.support.spring.deployment with type parameters of type Module
protected  LinkedHashSet<Module> AbstractApplicationContextModule.dependOnThis
          List of modules that depend on this module
protected  LinkedHashSet<Module> AbstractApplicationContextModule.dependsOn
          List of modules this module depends on
 

Methods in org.abstracthorizon.extend.support.spring.deployment that return types with arguments of type Module
 Set<Module> AbstractApplicationContextModule.getDependOnThis()
          Returns set of modules that depend on this module.
 Set<Module> AbstractApplicationContextModule.getDependsOn()
          Returns set of modules this module depends on.
 

Uses of Module in org.abstracthorizon.extend.support.spring.service
 

Classes in org.abstracthorizon.extend.support.spring.service that implement Module
 class ServiceApplicationContextModule
          Module that represents a service.
 

Methods in org.abstracthorizon.extend.support.spring.service that return Module
 Module ServiceModuleLoader.load(URI uri)
          Creates ServiceApplicationContextModule and initialises it.
 Module ServiceModuleLoader.loadAs(URI uri, ModuleId moduleId)
          Creates ServiceApplicationContextModule and initialises it.
 

Uses of Module in org.abstracthorizon.spring.server.deployment.jetty
 

Classes in org.abstracthorizon.spring.server.deployment.jetty that implement Module
 class JettyWebApplicationContext
           Module that represents a war module deployed with Jetty.
 



Copyright © 2005-2009 Abstract Horizon. All Rights Reserved.