From 820621b8f07945bb24bdac180e13fbed13da3144 Mon Sep 17 00:00:00 2001 From: Kevin Roast Date: Wed, 20 Dec 2006 10:03:44 +0000 Subject: [PATCH] . Merge horrors fixed . Code compile issue fixed git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4669 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .classpath | 42 +++++++++---------- .../java/org/alfresco/web/api/APIService.java | 5 +++ 2 files changed, 26 insertions(+), 21 deletions(-) diff --git a/.classpath b/.classpath index 6dea81a1fc..23e0ed9aa8 100644 --- a/.classpath +++ b/.classpath @@ -1,21 +1,21 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/source/java/org/alfresco/web/api/APIService.java b/source/java/org/alfresco/web/api/APIService.java index ab962215b7..77f0788d18 100644 --- a/source/java/org/alfresco/web/api/APIService.java +++ b/source/java/org/alfresco/web/api/APIService.java @@ -18,6 +18,8 @@ package org.alfresco.web.api; import java.io.IOException; +import javax.servlet.ServletContext; + /** * API Service * @@ -57,4 +59,7 @@ public interface APIService public void execute(APIRequest req, APIResponse res) throws IOException; + public String getName(); + + public void init(ServletContext sc); }