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