mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
First cut of Facebook integration:
1) Web Script framework extensions for supporting the development of Alfresco based Facebook applications 2) Sample Document Library Facebook application 3) FormData enhancements for supporting request args retrieval for multipart/form-data encoding 4) Sort order added to Search Javascript API Note: Stuff needs commenting, tidy up, but at least it's in SVN. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7259 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -76,7 +76,7 @@ public class WebScriptServlet extends HttpServlet
|
||||
String authenticatorId = getInitParameter("authenticator");
|
||||
if (authenticatorId == null || authenticatorId.length() == 0)
|
||||
{
|
||||
authenticatorId = "webscripts.authenticator.webclient";
|
||||
authenticatorId = getDefaultAuthenticator();
|
||||
}
|
||||
Object bean = context.getBean(authenticatorId);
|
||||
if (bean == null || !(bean instanceof WebScriptServletAuthenticator))
|
||||
@@ -88,6 +88,9 @@ public class WebScriptServlet extends HttpServlet
|
||||
// retrieve host server configuration
|
||||
Config config = configService.getConfig("Server");
|
||||
serverConfig = (ServerConfigElement)config.getConfigElement(ServerConfigElement.CONFIG_ELEMENT_ID);
|
||||
|
||||
// servlet specific initialisation
|
||||
initServlet(context);
|
||||
}
|
||||
|
||||
|
||||
@@ -106,4 +109,21 @@ public class WebScriptServlet extends HttpServlet
|
||||
runtime.executeScript();
|
||||
}
|
||||
|
||||
/**
|
||||
* Servlet specific initialisation
|
||||
*
|
||||
* @param context
|
||||
*/
|
||||
protected void initServlet(ApplicationContext context)
|
||||
{
|
||||
// NOOP
|
||||
}
|
||||
|
||||
/**
|
||||
* @return default authenticator (bean name)
|
||||
*/
|
||||
protected String getDefaultAuthenticator()
|
||||
{
|
||||
return "webscripts.authenticator.webclient";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user