1 9 package org.jboss.portal.server.kernel; 10 11 17 public class NullService extends BaseService 18 { 19 20 public void registered(Context ctx) 21 { 22 super.registered(ctx); 23 } 24 25 public void addDependsOnMe(ServiceImplementation impl) 26 { 27 } 28 29 public void removeDependsOnMe(ServiceImplementation impl) 30 { 31 } 32 33 public void addIDependOn(ServiceImplementation impl) 34 { 35 } 36 37 public void removeIDependOn(ServiceImplementation impl) 38 { 39 } 40 41 public void create() throws Exception 42 { 43 } 44 45 public void start() throws Exception 46 { 47 } 48 49 public void stop() 50 { 51 } 52 53 public void destroy() 54 { 55 } 56 } 57 | Popular Tags |