1 19 20 package org.netbeans.modules.j2ee.genericserver; 21 22 import java.io.File ; 23 import javax.enterprise.deploy.model.DDBean ; 24 import javax.enterprise.deploy.model.DeployableObject ; 25 import javax.enterprise.deploy.spi.DeploymentConfiguration ; 26 import javax.enterprise.deploy.spi.exceptions.ConfigurationException ; 27 import org.netbeans.modules.j2ee.deployment.common.api.OriginalCMPMapping; 28 import org.netbeans.modules.j2ee.deployment.plugins.api.ConfigurationSupport; 29 30 34 public class GSConfigurationSupport extends ConfigurationSupport { 35 36 public void setMappingInfo(DeploymentConfiguration config, OriginalCMPMapping[] mappings) { 37 } 39 40 public void ensureResourceDefined(DeploymentConfiguration config, DDBean bean) { 41 } 43 44 public String getWebContextRoot(DeploymentConfiguration config, DeployableObject deplObj) 45 throws ConfigurationException { 46 return null; } 48 49 public void setWebContextRoot(DeploymentConfiguration config, DeployableObject deplObj, 50 String contextRoot) throws ConfigurationException { 51 } 53 54 public void initConfiguration(DeploymentConfiguration config, File [] files, File resourceDir, 55 boolean keepUpdated) throws ConfigurationException { 56 } 58 59 public void disposeConfiguration(DeploymentConfiguration config) { 60 } 62 63 public void updateResourceDir(DeploymentConfiguration config, File resourceDir) { 64 } 66 } 67 | Popular Tags |