com.alogic.blob.resource.ResourceBlobInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alogic-blob Show documentation
Show all versions of alogic-blob Show documentation
BLOB(binary large object),二进制大对象存储框架
package com.alogic.blob.resource;
import com.alogic.blob.core.BlobInfo;
/**
* 基于Resource的BlobInfo
*
* @author duanyy
* @since 1.6.4.7
*
* @version 1.6.4.18 [duanyy 20151218]
* - 增加自动图标集
*/
public class ResourceBlobInfo extends BlobInfo.Default{
protected String path;
public ResourceBlobInfo(String pId, String pContentType, String pMd5,
long pLength,String pPath) {
super(pId, pContentType, pMd5, pLength);
path = pPath;
}
public String getPath(){
return path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy