mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged HEAD (5.2) to 5.2.N (5.2.1)
126401 jkaabimofrad: Merged FILE-FOLDER-API (5.2.0) to HEAD (5.2) 121206 jvonka: FileFolder API - NodeApiTest - minor updates around 'expected' checks - pre-work (eg. before implementing "move" and also hiding "sys" namespace aspects/props, etc) RA-638, RA-683 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@126746 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -28,14 +28,14 @@ public class ContentInfo
|
||||
{
|
||||
private String mimeType;
|
||||
private String mimeTypeName;
|
||||
private long sizeInBytes;
|
||||
private Long sizeInBytes;
|
||||
private String encoding;
|
||||
|
||||
public ContentInfo()
|
||||
{
|
||||
}
|
||||
|
||||
public ContentInfo( String mimeType, String mimeTypeName, long sizeInBytes, String encoding)
|
||||
public ContentInfo(String mimeType, String mimeTypeName, Long sizeInBytes, String encoding)
|
||||
{
|
||||
this.mimeType = mimeType;
|
||||
this.mimeTypeName = mimeTypeName;
|
||||
@@ -55,7 +55,7 @@ public class ContentInfo
|
||||
return mimeTypeName;
|
||||
}
|
||||
|
||||
public long getSizeInBytes() {
|
||||
public Long getSizeInBytes() {
|
||||
return sizeInBytes;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user