This is an automated email from the ASF dual-hosted git repository. gk pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/turbine-core.git
commit e8e520f83f8e14d43a84cb26be525addd72e1249 Author: Georg Kallidis <[email protected]> AuthorDate: Thu Jul 6 13:59:29 2023 +0200 Add unused get/setServiceObject to ServiceManager --- .../org/apache/turbine/services/ServiceManager.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/java/org/apache/turbine/services/ServiceManager.java b/src/java/org/apache/turbine/services/ServiceManager.java index 06483c66..9d5a736e 100644 --- a/src/java/org/apache/turbine/services/ServiceManager.java +++ b/src/java/org/apache/turbine/services/ServiceManager.java @@ -67,4 +67,22 @@ public interface ServiceManager extends ServiceBroker * @param applicationRoot application root */ void setApplicationRoot(String applicationRoot); + + /** + * Set an application specific service object + * that can be used by application specific + * services. + * + * @param name name of service object + * @param value value of service object + */ + public void setServiceObject(String name, Object value); + + /** + * Get an application specific service object. + * + * @param name the name of the service object + * @return Object application specific service object + */ + public Object getServiceObject(String name); }
