. 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
This commit is contained in:
Kevin Roast
2006-12-20 10:03:44 +00:00
parent 257568270d
commit 820621b8f0
2 changed files with 26 additions and 21 deletions

View File

@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="source/java"/>
<classpathentry kind="src" path="config"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="/Repository"/>
<classpathentry kind="src" path="/Core"/>
<classpathentry combineaccessrules="false" kind="src" path="/Remote API"/>
<classpathentry kind="lib" path="/3rd Party/lib/commons/commons-httpclient-3.0.jar"/>
<classpathentry kind="lib" path="/3rd Party/lib/commons/commons-jxpath-1.2.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/3rd Party"/>
<classpathentry kind="lib" path="/3rd Party/lib/xercesImpl-2.8.0.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/Jndi-Client"/>
<classpathentry kind="lib" path="/3rd Party/lib/bsf-2.4.0.jar"/>
<classpathentry kind="lib" path="/3rd Party/lib/fop/xmlgraphics-commons-1.0.jar"/>
<classpathentry kind="lib" path="/3rd Party/lib/fop/fop-0.92beta.jar"/>
<classpathentry kind="lib" path="/3rd Party/lib/fop/avalon-framework-4.2.0.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/MBean"/>
<classpathentry kind="lib" path="/3rd Party/lib/chiba-1.3.0.jar"/>
<classpathentry kind="output" path="build/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="source/java"/>
<classpathentry kind="src" path="config"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="/Repository"/>
<classpathentry kind="src" path="/Core"/>
<classpathentry combineaccessrules="false" kind="src" path="/Remote API"/>
<classpathentry kind="lib" path="/3rd Party/lib/commons/commons-httpclient-3.0.jar"/>
<classpathentry kind="lib" path="/3rd Party/lib/commons/commons-jxpath-1.2.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/3rd Party"/>
<classpathentry kind="lib" path="/3rd Party/lib/xercesImpl-2.8.0.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/Jndi-Client"/>
<classpathentry kind="lib" path="/3rd Party/lib/bsf-2.4.0.jar"/>
<classpathentry kind="lib" path="/3rd Party/lib/fop/xmlgraphics-commons-1.0.jar"/>
<classpathentry kind="lib" path="/3rd Party/lib/fop/fop-0.92beta.jar"/>
<classpathentry kind="lib" path="/3rd Party/lib/fop/avalon-framework-4.2.0.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/MBean"/>
<classpathentry kind="lib" path="/3rd Party/lib/chiba-1.3.0.jar"/>
<classpathentry kind="output" path="build/classes"/>
</classpath>

View File

@@ -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);
}