Forgot to make the matchers Serializable.

Build fix.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4535 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-12-06 19:23:38 +00:00
parent 6e7b8ad98e
commit 769fe808fc

View File

@@ -3,6 +3,7 @@
*/
package org.alfresco.repo.avm.util;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
@@ -12,8 +13,10 @@ import org.alfresco.util.NameMatcher;
* NameMatcher that matches a list of extensions (case insensitively).
* @author britt
*/
public class FileExtensionNameMatcher implements NameMatcher
public class FileExtensionNameMatcher implements NameMatcher, Serializable
{
private static final long serialVersionUID = -1498029477935181998L;
/**
* The extensions to match.
*/