donaldp 2002/11/07 21:05:56 Modified: fortress/src/java/org/apache/excalibur/fortress/container DefaultContainer.java Log: Readd the making public of ServiceManager because someone is likely using that Revision Changes Path 1.10 +12 -1 jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/container/DefaultContainer.java Index: DefaultContainer.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/container/DefaultContainer.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- DefaultContainer.java 8 Nov 2002 03:30:52 -0000 1.9 +++ DefaultContainer.java 8 Nov 2002 05:05:56 -0000 1.10 @@ -53,6 +53,7 @@ import org.apache.avalon.framework.configuration.Configuration; import org.apache.avalon.framework.configuration.ConfigurationException; import org.apache.avalon.framework.configuration.DefaultConfiguration; +import org.apache.avalon.framework.service.ServiceManager; /** * This is the default container, and it marks the default markup for @@ -178,5 +179,15 @@ temp.makeReadOnly(); return temp; + } + + /** + * Return the ServiceManager that exposes all the services in container. + * + * @return the ServiceManager that exposes all the services in container. + */ + public ServiceManager getServiceManager() + { + return super.getServiceManager(); } }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>