1 22 package org.jboss.deployment.spi; 23 24 import java.io.InputStream ; 25 import java.io.OutputStream ; 26 27 import javax.enterprise.deploy.model.DDBeanRoot ; 28 import javax.enterprise.deploy.model.DeployableObject ; 29 import javax.enterprise.deploy.spi.DConfigBeanRoot ; 30 import javax.enterprise.deploy.spi.DeploymentConfiguration ; 31 import javax.enterprise.deploy.spi.exceptions.BeanNotFoundException ; 32 import javax.enterprise.deploy.spi.exceptions.ConfigurationException ; 33 34 42 public class DeploymentConfigurationImpl implements DeploymentConfiguration 43 { 44 49 public DeployableObject getDeployableObject() 50 { 51 return null; } 53 54 62 public DConfigBeanRoot getDConfigBeanRoot(DDBeanRoot bean) throws ConfigurationException 63 { 64 return null; } 66 67 74 public void removeDConfigBean(DConfigBeanRoot bean) throws BeanNotFoundException 75 { 76 } 78 79 88 public DConfigBeanRoot restoreDConfigBean(InputStream input, DDBeanRoot bean) throws ConfigurationException 89 { 90 return null; } 92 93 101 public void saveDConfigBean(OutputStream output, DConfigBeanRoot bean) throws ConfigurationException 102 { 103 } 105 106 113 public void restore(InputStream input) throws ConfigurationException 114 { 115 } 117 118 125 public void save(OutputStream output) throws ConfigurationException 126 { 127 } 129 } 130 | Popular Tags |