128129130131132133134
/** * @return if exists the DeploymentDescriptorFile responsible for * handling the configuration deployment descriptors */ public DeploymentDescriptorFile getConfigurationDDFile() { return new EjbRuntimeDDFile(); }
9899100101102103104
return new GFEjbRuntimeDDFile(); } @Override public DeploymentDescriptorFile getSunCounterPartConfigurationDDFile(RootDeploymentDescriptor descriptor) { return new EjbRuntimeDDFile(); }
130131132133134135136
/** * @return if exists the DeploymentDescriptorFile responsible for * handling the Sun configuration deployment descriptors */ public DeploymentDescriptorFile getSunConfigurationDDFile() { return new EjbRuntimeDDFile(); }
104105106107108109110111112113114
}; } @Override public DeploymentDescriptorFile getSunConfigurationDDFile(RootDeploymentDescriptor descriptor) { return new EjbRuntimeDDFile() { public String getDeploymentDescriptorPath() { return DescriptorConstants.S1AS_EJB_IN_WAR_ENTRY; } }; }