1 23 24 package com.sun.enterprise.server.ondemand; 25 26 import com.sun.enterprise.server.ondemand.entry.*; 27 import com.sun.enterprise.config.ConfigException; 28 29 30 40 public class MainServiceGroup extends ServiceGroup { 41 42 public void start(EntryContext context) 44 throws ServiceGroupException { 45 super.startChildren(context); 46 } 47 48 public void stop(EntryContext context) 50 throws ServiceGroupException { 51 super.stopChildren(context); 52 } 53 54 public void abort(EntryContext context) { 56 super.abortChildren(context); 57 } 58 59 public boolean analyseEntryContext(EntryContext context) { 61 return true; 62 } 63 64 } 65 | Popular Tags |