1 package org.jboss.enterprise.deploy.spi; 2 3 import java.io.InputStream ; 4 import java.io.OutputStream ; 5 import javax.enterprise.deploy.model.*; 6 import javax.enterprise.deploy.spi.*; 7 import javax.enterprise.deploy.spi.DeploymentConfiguration ; 8 import javax.enterprise.deploy.spi.exceptions.BeanNotFoundException ; 9 import javax.enterprise.deploy.spi.exceptions.ConfigurationException ; 10 11 18 public class JBoss30DeploymentConfiguration implements DeploymentConfiguration 19 { 20 21 28 public DConfigBeanRoot getDConfigBeanRoot(DDBeanRoot bean) throws ConfigurationException 29 { 30 return null; 31 } 32 33 34 39 public DeployableObject getDeployableObject() 40 { 41 return null; 42 } 43 44 45 51 public void removeDConfigBean(DConfigBeanRoot bean) throws BeanNotFoundException { } 52 53 54 60 public void restore(InputStream inputArchive) throws ConfigurationException { } 61 62 63 72 public DConfigBeanRoot restoreDConfigBean(InputStream inputArchive, DDBeanRoot bean) throws ConfigurationException 73 { 74 return null; 75 } 76 77 78 84 public void save(OutputStream outputArchive) throws ConfigurationException { } 85 86 87 95 public void saveDConfigBean(OutputStream outputArchive, DConfigBeanRoot bean) throws ConfigurationException { } 96 } 97 98 | Popular Tags |