mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
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:
@@ -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.
|
||||||
|
@@ -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
|
||||||
{
|
{
|
||||||
}
|
}
|
@@ -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.
|
||||||
|
Reference in New Issue
Block a user