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:
Ancuta Morarasu
2016-05-11 11:02:45 +00:00
parent 92dbce46aa
commit d559c54151
4 changed files with 138 additions and 80 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;
}