1 23 24 package com.sun.enterprise.server.ondemand; 25 26 27 34 public class ServiceGroupBuilder { 35 36 39 public ServiceGroup buildServiceGroup(OnDemandServer server) { 40 ServiceGroup main = new MainServiceGroup(); 41 main.addServiceGroup(new EjbServiceGroup()); 42 main.addServiceGroup(new WebServiceGroup()); 43 main.addServiceGroup(new ResourcesServiceGroup()); 44 return main; 45 } 46 47 } 48 | Popular Tags |