com.alogic.blob.context.XmlOutter 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.context;
import com.alogic.blob.core.BlobManager;
import com.alogic.blob.local.LocalBlobManager;
import com.anysoft.context.XMLResource;
/**
* XML外置配置实现
*
* @author duanyy
* @since 1.6.3.28
*/
public class XmlOutter extends XMLResource{
@Override
public String getObjectName() {
return "blob";
}
@Override
public String getDefaultClass() {
return LocalBlobManager.class.getName();
}
@Override
public String getDefaultXrc() {
return "java:///com/alogic/blob/context/blob.default.xml#com.alogic.blob.context.XmlOutter";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy