Copyright 2003-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Method from javax.enterprise.deploy.spi.MockDeploymentManager Detail: |
public DeploymentConfiguration createConfiguration(DeployableObject dObj) throws InvalidModuleException {
return null;
}
|
public ProgressObject distribute(Target[] targetList,
File moduleArchive,
File deploymentPlan) throws IllegalStateException {
return null;
}
|
public ProgressObject distribute(Target[] targetList,
InputStream moduleArchive,
InputStream deploymentPlan) throws IllegalStateException {
return null;
}
|
public TargetModuleID[] getAvailableModules(ModuleType moduleType,
Target[] targetList) throws TargetException, IllegalStateException {
return new TargetModuleID[0];
}
|
public Locale getCurrentLocale() {
return null;
}
|
public DConfigBeanVersionType getDConfigBeanVersion() {
return null;
}
|
public Locale getDefaultLocale() {
return null;
}
|
public TargetModuleID[] getNonRunningModules(ModuleType moduleType,
Target[] targetList) throws TargetException, IllegalStateException {
return new TargetModuleID[0];
}
|
public TargetModuleID[] getRunningModules(ModuleType moduleType,
Target[] targetList) throws TargetException, IllegalStateException {
return new TargetModuleID[0];
}
|
public Locale[] getSupportedLocales() {
return new Locale[0];
}
|
public Target[] getTargets() throws IllegalStateException {
return new Target[0];
}
|
public boolean isDConfigBeanVersionSupported(DConfigBeanVersionType version) {
return false;
}
|
public boolean isLocaleSupported(Locale locale) {
return false;
}
|
public boolean isRedeploySupported() {
return false;
}
|
public ProgressObject redeploy(TargetModuleID[] moduleIDList,
File moduleArchive,
File deploymentPlan) throws UnsupportedOperationException, IllegalStateException {
return null;
}
|
public ProgressObject redeploy(TargetModuleID[] moduleIDList,
InputStream moduleArchive,
InputStream deploymentPlan) throws UnsupportedOperationException, IllegalStateException {
return null;
}
|
public void release() {
}
|
public void setDConfigBeanVersion(DConfigBeanVersionType version) throws DConfigBeanVersionUnsupportedException {
}
|
public void setLocale(Locale locale) throws UnsupportedOperationException {
}
|
public ProgressObject start(TargetModuleID[] moduleIDList) throws IllegalStateException {
return null;
}
|
public ProgressObject stop(TargetModuleID[] moduleIDList) throws IllegalStateException {
return null;
}
|
public ProgressObject undeploy(TargetModuleID[] moduleIDList) throws IllegalStateException {
return null;
}
|