Web Framework loads model files from Stores

- first pass implementation
- all model files are loaded from Stores
- added configuration file (web-framework-model-context.xml) which maintains three stores (classpath, local and remote)
- remove model file system from request context
- updated caching so that it wraps Store objects
- added a simple LocalFileSystemStore that mounts against a provided local path (i.e. d:/web-framework)
- updated Store interface and implementations (RepoStore, ClassPathStore, RemoteStore, LocalFileSystemStore) to include removeDocument method


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@9441 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Michael Uzqu
2008-06-11 04:56:42 +00:00
parent c9c8e7d148
commit 3c254e6850

View File

@@ -579,6 +579,17 @@ public class RepoStore implements Store, TenantDeployer
writer.putContent(content);
}
/* (non-Javadoc)
* @see org.alfresco.web.scripts.Store#removeDocument(java.lang.String)
*/
public boolean removeDocument(String documentPath)
throws IOException
{
// TODO: Implement remove for Repository Store
return false;
}
/* (non-Javadoc)
* @see org.alfresco.web.scripts.Store#getTemplateLoader()
*/