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/HEAD/root@126401 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jamal Kaabi-Mofrad
2016-05-10 10:44:09 +00:00
parent 381c83facf
commit 4808aaef45
4 changed files with 139 additions and 81 deletions

View File

@@ -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;
}