use of com.sun.enterprise.deployment.io.runtime.WLSWebServicesDeploymentDescriptorFile in project Payara by payara.
the class WebServicesArchivist method getConfigurationDDFiles.
/**
* @return the list of the DeploymentDescriptorFile responsible for
* handling the configuration deployment descriptors
*/
public List<ConfigurationDeploymentDescriptorFile> getConfigurationDDFiles(RootDeploymentDescriptor descriptor) {
if (confDDFiles == null) {
confDDFiles = new ArrayList<ConfigurationDeploymentDescriptorFile>();
confDDFiles.add(new WLSWebServicesDeploymentDescriptorFile(descriptor));
}
return confDDFiles;
}
Aggregations