Short term fixes to repo/AVM filesystems and a few other bits affected by the Alfresco JLAN cluster changes.

Hard code a standalone state cache into the repo/AVM filesystems.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28775 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gary Spencer
2011-07-04 10:55:51 +00:00
parent 8ae8c29a76
commit f8f02a9f95
8 changed files with 110 additions and 13 deletions

View File

@@ -18,6 +18,7 @@
*/
package org.alfresco.filesys.alfresco;
import org.alfresco.filesys.config.ServerConfigurationBean;
import org.alfresco.jlan.server.core.DeviceContext;
import org.alfresco.jlan.server.core.DeviceContextException;
import org.alfresco.jlan.server.filesys.DiskInterface;
@@ -33,7 +34,8 @@ public interface ExtendedDiskInterface extends DiskInterface
*
* @param context
* the device context
* @param serverConfig ServerConfigurationBean
* @exception DeviceContextException
*/
public void registerContext(DeviceContext ctx) throws DeviceContextException;
public void registerContext(DeviceContext ctx, ServerConfigurationBean serverConfig) throws DeviceContextException;
}