1 19 20 package org.netbeans.modules.j2ee.genericserver; 21 22 import java.io.File ; 23 import java.io.InputStream ; 24 import javax.enterprise.deploy.model.DeployableObject ; 25 import javax.enterprise.deploy.shared.DConfigBeanVersionType ; 26 import javax.enterprise.deploy.shared.ModuleType ; 27 import javax.enterprise.deploy.spi.DeploymentConfiguration ; 28 import javax.enterprise.deploy.spi.DeploymentManager ; 29 import javax.enterprise.deploy.spi.Target ; 30 import javax.enterprise.deploy.spi.TargetModuleID ; 31 import javax.enterprise.deploy.spi.exceptions.DConfigBeanVersionUnsupportedException ; 32 import javax.enterprise.deploy.spi.exceptions.InvalidModuleException ; 33 import javax.enterprise.deploy.spi.exceptions.TargetException ; 34 import javax.enterprise.deploy.spi.status.ProgressObject ; 35 36 37 41 public class GSDeploymentManager implements DeploymentManager { 42 43 public ProgressObject distribute(Target [] target, File file, File file2) throws IllegalStateException { 44 return null; 45 } 46 47 public DeploymentConfiguration createConfiguration(DeployableObject deployableObject) throws InvalidModuleException { 48 return null; 49 } 50 51 public ProgressObject redeploy(TargetModuleID [] targetModuleID, InputStream inputStream, InputStream inputStream2) throws UnsupportedOperationException , IllegalStateException { 52 return null; 53 } 54 55 public ProgressObject distribute(Target [] target, InputStream inputStream, InputStream inputStream2) throws IllegalStateException { 56 return null; 57 } 58 59 public ProgressObject undeploy(TargetModuleID [] targetModuleID) throws IllegalStateException { 60 return null; 61 } 62 63 public ProgressObject stop(TargetModuleID [] targetModuleID) throws IllegalStateException { 64 return null; 65 } 66 67 public ProgressObject start(TargetModuleID [] targetModuleID) throws IllegalStateException { 68 return null; 69 } 70 71 public void setLocale(java.util.Locale locale) throws UnsupportedOperationException { 72 } 73 74 public boolean isLocaleSupported(java.util.Locale locale) { 75 return false; 76 } 77 78 public TargetModuleID [] getAvailableModules(ModuleType moduleType, Target [] target) throws TargetException , IllegalStateException { 79 return null; 80 } 81 82 public TargetModuleID [] getNonRunningModules(ModuleType moduleType, Target [] target) throws TargetException , IllegalStateException { 83 return null; 84 } 85 86 public TargetModuleID [] getRunningModules(ModuleType moduleType, Target [] target) throws TargetException , IllegalStateException { 87 return null; 88 } 89 90 public ProgressObject redeploy(TargetModuleID [] targetModuleID, File file, File file2) throws UnsupportedOperationException , IllegalStateException { 91 return null; 92 } 93 94 public void setDConfigBeanVersion(DConfigBeanVersionType dConfigBeanVersionType) throws DConfigBeanVersionUnsupportedException { 95 } 96 97 public boolean isDConfigBeanVersionSupported(DConfigBeanVersionType dConfigBeanVersionType) { 98 return false; 99 } 100 101 public void release() { 102 } 103 104 public boolean isRedeploySupported() { 105 return false; 106 } 107 108 public java.util.Locale getCurrentLocale() { 109 return null; 110 } 111 112 public DConfigBeanVersionType getDConfigBeanVersion() { 113 return null; 114 } 115 116 public java.util.Locale getDefaultLocale() { 117 return null; 118 } 119 120 public java.util.Locale [] getSupportedLocales() { 121 return null; 122 } 123 124 public Target [] getTargets() throws IllegalStateException { 125 return null; 126 } 127 128 public ProgressObject distribute(Target [] target, ModuleType moduleType, InputStream inputStream, InputStream inputStream0) throws IllegalStateException { 129 return null; 130 } 131 132 } 133 | Popular Tags |