* @version $Rev: 508724 $ $Date: 2007-02-17 16:01:26 +0800 (Sat, 17 Feb 2007) $
*/
public class ClientConfigurer implements ModuleConfigurer {
public DeploymentConfiguration createConfiguration(DeployableObject deployable) {
if (ModuleType.EAR.equals(deployable.getType())) {
return new EARConfiguration(deployable);
} else {
return null;
}
}