Fix to interfaces required to be public by hibernate persistance util lib 'javassist' (alternative to CGLIB used by default in JBoss4.2.X)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6671 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2007-09-04 09:22:42 +00:00
parent ebffc09089
commit bfb1cba3b6
3 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ import org.alfresco.service.cmr.repository.ContentData;
* Interface for the generic idea of a file. * Interface for the generic idea of a file.
* @author britt * @author britt
*/ */
interface FileNode extends AVMNode public interface FileNode extends AVMNode
{ {
/** /**
* Set the ContentData for this file. * Set the ContentData for this file.

View File

@@ -5,6 +5,6 @@ package org.alfresco.repo.avm;
* Interface for PlainDirectoryNodes. * Interface for PlainDirectoryNodes.
* @author britt * @author britt
*/ */
interface PlainDirectoryNode extends DirectoryNode public interface PlainDirectoryNode extends DirectoryNode
{ {
} }

View File

@@ -6,7 +6,7 @@ import org.alfresco.service.cmr.repository.ContentData;
* Interface for Plain file nodes. * Interface for Plain file nodes.
* @author britt * @author britt
*/ */
interface PlainFileNode extends FileNode public interface PlainFileNode extends FileNode
{ {
/** /**
* Set the encoding of this file. * Set the encoding of this file.