Package org.jboss.deployment.spi.configurations

Examples of org.jboss.deployment.spi.configurations.WarConfiguration


    */
   public DeploymentConfiguration createConfiguration(DeployableObject obj) throws InvalidModuleException
   {
      // do some stuff to figure out what kind of config to return.
      if (obj.getType().equals(ModuleType.WAR))
         return new WarConfiguration(obj);

      throw new InvalidModuleException("CreateConfiguration: Module type not yet supported");
   }
View Full Code Here


    */
   public DeploymentConfiguration createConfiguration(DeployableObject obj) throws InvalidModuleException
   {
      // do some stuff to figure out what kind of config to return.
      if (obj.getType().equals(ModuleType.WAR))
         return new WarConfiguration(obj);

      throw new InvalidModuleException("CreateConfiguration: Module type not yet supported");
   }
View Full Code Here

TOP

Related Classes of org.jboss.deployment.spi.configurations.WarConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.